Files
ersatztv/ErsatzTV.FFmpeg/Format/PixelFormatVaapi.cs
T

11 lines
246 B
C#

namespace ErsatzTV.FFmpeg.Format;
public class PixelFormatVaapi(string name, int bitDepth = 8) : IPixelFormat
{
public string Name { get; } = name;
public string FFmpegName => "vaapi";
public int BitDepth { get; } = bitDepth;
}