Files
ersatztv/ErsatzTV.FFmpeg/Format/PixelFormatYuva420P.cs
T
Jason DoveandGitHub 9a4f772f53 fix image subtitle scaling (#949)
* properly scale image-based subtitles for nvidia and software

* fix vaapi image subtitle scaling

* fix qsv image subtitle scaling

* update changelog
2022-09-04 14:25:05 -05:00

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;
}