FFMpegCore/FFMpegCore/FFMPEG/Pipes/IVideoFrame.cs
Максим Багрянцев 6f8c7915f8 Added some summaries
2020-04-27 19:46:58 +03:00

20 lines
441 B
C#

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