* properly scale image-based subtitles for nvidia and software * fix vaapi image subtitle scaling * fix qsv image subtitle scaling * update changelog
9 lines
223 B
C#
9 lines
223 B
C#
namespace ErsatzTV.FFmpeg.Format;
|
|
|
|
public class PixelFormatYuva420P : IPixelFormat
|
|
{
|
|
public string Name => PixelFormat.YUVA420P;
|
|
public string FFmpegName => FFmpegFormat.YUVA420P;
|
|
public int BitDepth => 8;
|
|
}
|