* Add Rockchip Media Process Platform (rkmpp) acceleration * remove fourcc stuff; it's exclusive to videotoolbox * update changelog --------- Co-authored-by: Jason Dove <1695733+jasongdove@users.noreply.github.com>
12 lines
246 B
C#
12 lines
246 B
C#
namespace ErsatzTV.FFmpeg.Format;
|
|
|
|
public class PixelFormatNv15 : IPixelFormat
|
|
{
|
|
public PixelFormatNv15(string name) => Name = name;
|
|
|
|
public string Name { get; }
|
|
|
|
public string FFmpegName => "nv15";
|
|
public int BitDepth => 8;
|
|
}
|