mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-01-19 13:06:44 +00:00
27fc3eaa28
Former-commit-id: b854d5b43b
18 lines
416 B
C#
18 lines
416 B
C#
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(System.IO.Stream pipe);
|
|
Task SerializeAsync(System.IO.Stream pipe, CancellationToken token);
|
|
}
|
|
}
|