|
|
|
@ -1,5 +1,5 @@ |
|
|
|
|
/*
|
|
|
|
|
* Intel MediaSDK QSV based MPEG-2, VC-1, VP8 and MJPEG decoders |
|
|
|
|
* Intel MediaSDK QSV based MPEG-2, VC-1, VP8, MJPEG and VP9 decoders |
|
|
|
|
* |
|
|
|
|
* copyright (c) 2015 Anton Khirnov |
|
|
|
|
* |
|
|
|
@ -60,8 +60,8 @@ static av_cold int qsv_decode_close(AVCodecContext *avctx) |
|
|
|
|
{ |
|
|
|
|
QSVOtherContext *s = avctx->priv_data; |
|
|
|
|
|
|
|
|
|
#if CONFIG_VP8_QSV_DECODER |
|
|
|
|
if (avctx->codec_id == AV_CODEC_ID_VP8) |
|
|
|
|
#if CONFIG_VP8_QSV_DECODER || CONFIG_VP9_QSV_DECODER |
|
|
|
|
if (avctx->codec_id == AV_CODEC_ID_VP8 || avctx->codec_id == AV_CODEC_ID_VP9) |
|
|
|
|
av_freep(&s->qsv.load_plugins); |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
@ -90,6 +90,17 @@ static av_cold int qsv_decode_init(AVCodecContext *avctx) |
|
|
|
|
} |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#if CONFIG_VP9_QSV_DECODER |
|
|
|
|
if (avctx->codec_id == AV_CODEC_ID_VP9) { |
|
|
|
|
static const char *uid_vp9dec_hw = "a922394d8d87452f878c51f2fc9b4131"; |
|
|
|
|
|
|
|
|
|
av_freep(&s->qsv.load_plugins); |
|
|
|
|
s->qsv.load_plugins = av_strdup(uid_vp9dec_hw); |
|
|
|
|
if (!s->qsv.load_plugins) |
|
|
|
|
return AVERROR(ENOMEM); |
|
|
|
|
} |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
s->qsv.orig_pix_fmt = AV_PIX_FMT_NV12; |
|
|
|
|
s->packet_fifo = av_fifo_alloc(sizeof(AVPacket)); |
|
|
|
|
if (!s->packet_fifo) { |
|
|
|
@ -282,3 +293,32 @@ AVCodec ff_mjpeg_qsv_decoder = { |
|
|
|
|
AV_PIX_FMT_NONE }, |
|
|
|
|
}; |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#if CONFIG_VP9_QSV_DECODER |
|
|
|
|
static const AVClass vp9_qsv_class = { |
|
|
|
|
.class_name = "vp9_qsv", |
|
|
|
|
.item_name = av_default_item_name, |
|
|
|
|
.option = options, |
|
|
|
|
.version = LIBAVUTIL_VERSION_INT, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
AVCodec ff_vp9_qsv_decoder = { |
|
|
|
|
.name = "vp9_qsv", |
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("VP9 video (Intel Quick Sync Video acceleration)"), |
|
|
|
|
.priv_data_size = sizeof(QSVOtherContext), |
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO, |
|
|
|
|
.id = AV_CODEC_ID_VP9, |
|
|
|
|
.init = qsv_decode_init, |
|
|
|
|
.decode = qsv_decode_frame, |
|
|
|
|
.flush = qsv_decode_flush, |
|
|
|
|
.close = qsv_decode_close, |
|
|
|
|
.capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1 | AV_CODEC_CAP_AVOID_PROBING | AV_CODEC_CAP_HYBRID, |
|
|
|
|
.priv_class = &vp9_qsv_class, |
|
|
|
|
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_NV12, |
|
|
|
|
AV_PIX_FMT_P010, |
|
|
|
|
AV_PIX_FMT_QSV, |
|
|
|
|
AV_PIX_FMT_NONE }, |
|
|
|
|
.hw_configs = ff_qsv_hw_configs, |
|
|
|
|
.wrapper_name = "qsv", |
|
|
|
|
}; |
|
|
|
|
#endif |
|
|
|
|