28 lines
801 B
C#
28 lines
801 B
C#
using ErsatzTV.FFmpeg.Format;
|
|
|
|
namespace ErsatzTV.FFmpeg.Decoder.Qsv;
|
|
|
|
public class DecoderHevcQsv : DecoderBase
|
|
{
|
|
public override string Name => "hevc_qsv";
|
|
|
|
protected override FrameDataLocation OutputFrameDataLocation => FrameDataLocation.Hardware;
|
|
|
|
public override FrameState NextState(FrameState currentState)
|
|
{
|
|
FrameState nextState = base.NextState(currentState);
|
|
|
|
return currentState.PixelFormat.Match(
|
|
pixelFormat =>
|
|
{
|
|
if (pixelFormat.BitDepth == 10)
|
|
{
|
|
return nextState with { PixelFormat = new PixelFormatP010() };
|
|
}
|
|
|
|
return nextState with { PixelFormat = new PixelFormatNv12(pixelFormat.Name) };
|
|
},
|
|
() => nextState);
|
|
}
|
|
}
|