mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
12 lines
292 B
C#
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();
|
|
}
|
|
}
|