Files
ersatztv/ErsatzTV.FFmpeg/Decoder/DecoderVideoToolbox.cs
T
Jason DoveandGitHub 696b29c9e9 fix videotoolbox acceleration with new transcoder (#658)
* fix videotoolbox acceleration with new transcoder

* cleanup
2022-02-26 18:45:05 -06:00

9 lines
340 B
C#

namespace ErsatzTV.FFmpeg.Decoder;
public class DecoderVideoToolbox : DecoderBase
{
protected override FrameDataLocation OutputFrameDataLocation => FrameDataLocation.Software;
public override string Name => "implicit_videotoolbox";
public override IList<string> InputOptions(InputFile inputFile) => Array.Empty<string>();
}