Files
ersatztv/ErsatzTV.FFmpeg/Format/PixelFormatNv12.cs
T
Jason DoveandGitHub 3204da8e43 adjust nvidia capabilities (#864)
* adjust nvidia capabilities logic

* fallback to software encoding for 10-bit h264

* cleanup

* more tweaks
2022-06-17 10:50:36 -05:00

12 lines
246 B
C#

namespace ErsatzTV.FFmpeg.Format;
public class PixelFormatNv12 : IPixelFormat
{
public PixelFormatNv12(string name) => Name = name;
public string Name { get; }
public string FFmpegName => "nv12";
public int BitDepth => 8;
}