Files
ersatztv/ErsatzTV.FFmpeg/Format/PixelFormatYuv444P10Le.cs
T
2023-03-01 19:56:14 -06:00

9 lines
228 B
C#

namespace ErsatzTV.FFmpeg.Format;
public class PixelFormatYuv444P10Le : IPixelFormat
{
public string Name => PixelFormat.YUV444P10LE;
public string FFmpegName => FFmpegFormat.P010LE;
public int BitDepth => 10;
}