Files
ersatztv/ErsatzTV.FFmpeg/HardwareAccelerationMode.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

16 lines
227 B
C#

namespace ErsatzTV.FFmpeg;
public enum HardwareAccelerationMode
{
None = 0,
Qsv = 1,
Nvenc = 2,
Vaapi = 3,
VideoToolbox = 4,
Amf = 5,
OpenCL = 6,
Vulkan = 7,
V4l2m2m = 8,
Rkmpp = 9
}