Files
ersatztv/ErsatzTV.FFmpeg/Decoder/Cuvid/DecoderImplicitCuda.cs
T
Jason DoveandGitHub c18be5559b fix delete old segments (#1536)
* code cleanup

* ignore errors deleting old hls segments
2024-01-04 10:42:04 -06:00

15 lines
400 B
C#

namespace ErsatzTV.FFmpeg.Decoder.Cuvid;
public class DecoderImplicitCuda : DecoderBase
{
protected override FrameDataLocation OutputFrameDataLocation => FrameDataLocation.Hardware;
public override string Name => string.Empty;
public override string[] InputOptions(InputFile inputFile) =>
new[]
{
"-hwaccel_output_format",
"cuda"
};
}