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