* lots of qsv fixes * update changelog * fix qsv mpeg2 * vaapi fixes * update changelog * upgrade mudblazor * fix bug with undefined input colorspace
9 lines
193 B
C#
9 lines
193 B
C#
namespace ErsatzTV.FFmpeg.Format;
|
|
|
|
public class PixelFormatP010 : IPixelFormat
|
|
{
|
|
public string Name => "p010le";
|
|
public string FFmpegName => "p010";
|
|
public int BitDepth => 10;
|
|
}
|