* adjust nvidia capabilities logic * fallback to software encoding for 10-bit h264 * cleanup * more tweaks
12 lines
246 B
C#
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;
|
|
}
|