* adjust nvidia capabilities logic * fallback to software encoding for 10-bit h264 * cleanup * more tweaks
9 lines
154 B
C#
9 lines
154 B
C#
namespace ErsatzTV.FFmpeg.Format;
|
|
|
|
public interface IPixelFormat
|
|
{
|
|
string Name { get; }
|
|
string FFmpegName { get; }
|
|
int BitDepth { get; }
|
|
}
|