mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
17 lines
370 B
C#
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);
|
|
}
|
|
}
|