Files
ersatztv/ErsatzTV.FFmpeg/Format/PixelFormatNv15.cs
T
d855e4f20d Add initial support for Rockchip Media Process Platform (rkmpp) hardware acceleration (#2418)
* 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>
2025-09-16 00:51:56 +00:00

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