* adjust nvidia capabilities logic * fallback to software encoding for 10-bit h264 * cleanup * more tweaks
9 lines
220 B
C#
9 lines
220 B
C#
namespace ErsatzTV.FFmpeg.Format;
|
|
|
|
public class PixelFormatYuv420P : IPixelFormat
|
|
{
|
|
public string Name => PixelFormat.YUV420P;
|
|
public string FFmpegName => FFmpegFormat.YUV420P;
|
|
public int BitDepth => 8;
|
|
}
|