* fix playback with invalid ffmpeg profile * fix 10 bit output with nvidia and graphics engine
9 lines
234 B
C#
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;
|
|
}
|