FFMpegCore/FFMpegCore/FFMPEG/Pipes/IVideoFrame.cs
Максим Багрянцев 12faf7482d Replaced IInputPipe interface with System.IO.Stream
Former-commit-id: 4f51c3d32f
2020-04-27 19:35:53 +03:00

17 lines
370 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace FFMpegCore.FFMPEG.Pipes
{
public interface IVideoFrame
{
int Width { get; }
int Height { get; }
string Format { get; }
void Serialize(System.IO.Stream pipe);
Task SerializeAsync(System.IO.Stream pipe);
}
}