* 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
9 lines
306 B
C#
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) => [];
|
|
}
|