mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
13 lines
289 B
C#
13 lines
289 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);
|
|
}
|
|
}
|