Files
ersatztv/ErsatzTV.FFmpeg/Format/IPixelFormat.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

9 lines
154 B
C#

namespace ErsatzTV.FFmpeg.Format;
public interface IPixelFormat
{
string Name { get; }
string FFmpegName { get; }
int BitDepth { get; }
}