* 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
14 lines
399 B
C#
14 lines
399 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"
|
|
};
|
|
}
|