FFMpegCore/FFMpegCore/FFMpeg/Pipes/IVideoFrame.cs
Malte Rosenbjerg 33878ab605 Cleanup in using directives
Former-commit-id: 6c3129d417
2021-05-15 11:17:12 +02:00

19 lines
413 B
C#

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