9 lines
325 B
C#
9 lines
325 B
C#
namespace ErsatzTV.FFmpeg.Decoder;
|
|
|
|
public class DecoderImplicit : DecoderBase
|
|
{
|
|
protected override FrameDataLocation OutputFrameDataLocation => FrameDataLocation.Software;
|
|
public override string Name => string.Empty;
|
|
public override IList<string> InputOptions(InputFile inputFile) => Array.Empty<string>();
|
|
}
|