mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
15 lines
333 B
C#
15 lines
333 B
C#
using FFMpegCore.FFMPEG.Argument;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFMpegCore.FFMPEG.Pipes
|
|
{
|
|
public interface IPipeSource
|
|
{
|
|
string GetFormat();
|
|
void FlushData(IInputPipe pipe);
|
|
Task FlushDataAsync(IInputPipe pipe);
|
|
}
|
|
}
|