* adjust nvidia capabilities logic * fallback to software encoding for 10-bit h264 * cleanup * more tweaks
11 lines
278 B
C#
11 lines
278 B
C#
namespace ErsatzTV.FFmpeg.Format;
|
|
|
|
public class PixelFormatYuvJ420P : IPixelFormat
|
|
{
|
|
public string Name => PixelFormat.YUVJ420P;
|
|
|
|
// always convert this to yuv420p in filter chains
|
|
public string FFmpegName => FFmpegFormat.YUV420P;
|
|
public int BitDepth => 8;
|
|
}
|