Files
ersatztv/ErsatzTV.FFmpeg/Decoder/DecoderV4l2m2m.cs
T
Jason DoveandGitHub 307b9dadd2 partial v4l2m2m accel support (#2416)
* start to add v4l2m2m accel

* add v4l2m2m pipeline

* add encoders

* fix decoders and encoders

* output software frames from decoders

* more buffers

* hide v4l2m2m from ui
2025-09-14 11:48:24 +00:00

9 lines
306 B
C#

namespace ErsatzTV.FFmpeg.Decoder;
public class DecoderV4l2m2m : DecoderBase
{
protected override FrameDataLocation OutputFrameDataLocation => FrameDataLocation.Software;
public override string Name => "implicit_v4l2m2m";
public override string[] InputOptions(InputFile inputFile) => [];
}