FFMpegCore/FFMpegCore/FFMpeg/Pipes/IPipeSource.cs
Malte Rosenbjerg 39dd390e81 Renaming
2020-05-24 19:17:14 +02:00

14 lines
340 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace FFMpegCore.Pipes
{
/// <summary>
/// Interface for ffmpeg pipe source data IO
/// </summary>
public interface IPipeSource
{
string GetFormat();
Task CopyAsync(System.IO.Stream outputStream, CancellationToken cancellationToken);
}
}