11 lines
244 B
C#
11 lines
244 B
C#
namespace ErsatzTV.FFmpeg.Format;
|
|
|
|
public class PixelFormatCuda(string name, int bitDepth = 8) : IPixelFormat
|
|
{
|
|
public string Name { get; } = name;
|
|
|
|
public string FFmpegName => "cuda";
|
|
|
|
public int BitDepth { get; } = bitDepth;
|
|
}
|