FFMpegCore/FFMpegCore/FFMPEG/Pipes/IPipeDataReader.cs
2020-04-28 22:34:04 +03:00

14 lines
317 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace FFMpegCore.FFMPEG.Pipes
{
public interface IPipeDataReader
{
void ReadData(System.IO.Stream stream);
Task ReadDataAsync(System.IO.Stream stream);
string GetFormat();
}
}