* upgrade sdk * fix warnings in ersatztv.ffmpeg * fix warnings in ersatztv.core * fix warnings in ersatztv.infrastructure * fix warnings in ersatztv.application * disable analysis for migrations projects * fix warnings in ersatztv.scanner * fix warnings in ersatztv * upgrade project framework * update github actions and dockerfiles
9 lines
335 B
C#
9 lines
335 B
C#
namespace ErsatzTV.FFmpeg.Decoder;
|
|
|
|
public class DecoderVideoToolbox : DecoderBase
|
|
{
|
|
protected override FrameDataLocation OutputFrameDataLocation => FrameDataLocation.Software;
|
|
public override string Name => "implicit_videotoolbox";
|
|
public override string[] InputOptions(InputFile inputFile) => Array.Empty<string>();
|
|
}
|