Files
ersatztv/ErsatzTV.FFmpeg/Format/PixelFormatYuva420P10Le.cs
T
Jason DoveandGitHub ea008776b1 more nvidia 10-bit fixes (#2426)
* fix playback with invalid ffmpeg profile

* fix 10 bit output with nvidia and graphics engine
2025-09-16 14:44:22 +00:00

9 lines
234 B
C#

namespace ErsatzTV.FFmpeg.Format;
public class PixelFormatYuva420P10Le : IPixelFormat
{
public string Name => PixelFormat.YUVA420P10LE;
public string FFmpegName => FFmpegFormat.YUVA420P10;
public int BitDepth => 10;
}