fix videotoolbox acceleration with new transcoder (#658)

* fix videotoolbox acceleration with new transcoder

* cleanup
This commit is contained in:
Jason Dove
2022-02-26 18:45:05 -06:00
committed by GitHub
parent 70c37df596
commit 696b29c9e9
6 changed files with 23 additions and 22 deletions
@@ -0,0 +1,8 @@
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>();
}