mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
944 B
27 lines
944 B
using ErsatzTV.FFmpeg.Format; |
|
|
|
namespace ErsatzTV.FFmpeg.Decoder; |
|
|
|
public class DecoderRkmpp : DecoderBase |
|
{ |
|
protected override FrameDataLocation OutputFrameDataLocation => FrameDataLocation.Software; |
|
|
|
public override string Name => "implicit_rkmpp"; |
|
public override string[] InputOptions(InputFile inputFile) => Array.Empty<string>(); |
|
|
|
/* |
|
public override string[] InputOptions(InputFile inputFile) => |
|
new[] { "-hwaccel_output_format", "drm_prime" }; |
|
*/ |
|
|
|
public override FrameState NextState(FrameState currentState) |
|
{ |
|
FrameState nextState = base.NextState(currentState); |
|
|
|
return currentState.PixelFormat.Match( |
|
pixelFormat => pixelFormat.BitDepth == 8 |
|
? nextState with { PixelFormat = new PixelFormatNv12(pixelFormat.Name) } |
|
: nextState with { PixelFormat = new PixelFormatNv15(pixelFormat.Name) }, |
|
() => nextState); |
|
} |
|
} |