FFMpegCore/FFMpegCore/FFMpeg/Pipes/IPipeDataReader.cs
2020-05-11 00:34:17 +02:00

12 lines
292 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace FFMpegCore.Pipes
{
public interface IPipeDataReader
{
void ReadData(System.IO.Stream stream);
Task ReadDataAsync(System.IO.Stream stream, CancellationToken token);
string GetFormat();
}
}