* add LIBVA_DRIVER_NAME env var * add vaapi device name * add FFREPORT env var * fixes
9 lines
231 B
C#
9 lines
231 B
C#
namespace ErsatzTV.FFmpeg.Decoder.Qsv;
|
|
|
|
public class DecoderVc1Qsv : DecoderBase
|
|
{
|
|
public override string Name => "vc1_qsv";
|
|
|
|
protected override FrameDataLocation OutputFrameDataLocation => FrameDataLocation.Hardware;
|
|
}
|