diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-12-03 15:55:21 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-12-07 15:46:57 +0100 |
commit | 624aa8ab221cf34693f9a8c5ab67219cf560f2bb (patch) | |
tree | fdf40792ef2ad3b24908cfadf24fc255421a938a /libavcodec/qsvdec_h2645.c | |
parent | c833c2034f4ee77fe2ee3470f3f5f84415673b3b (diff) | |
download | ffmpeg-624aa8ab221cf34693f9a8c5ab67219cf560f2bb.tar.gz |
build: Add missing Makefile entries and ifdefs for QSV hwaccels
Diffstat (limited to 'libavcodec/qsvdec_h2645.c')
-rw-r--r-- | libavcodec/qsvdec_h2645.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libavcodec/qsvdec_h2645.c b/libavcodec/qsvdec_h2645.c index a26f1505e5..34b12cb0db 100644 --- a/libavcodec/qsvdec_h2645.c +++ b/libavcodec/qsvdec_h2645.c @@ -228,14 +228,16 @@ static void qsv_decode_flush(AVCodecContext *avctx) #define OFFSET(x) offsetof(QSVH2645Context, x) #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM -#if CONFIG_HEVC_QSV_DECODER +#if CONFIG_HEVC_QSV_HWACCEL AVHWAccel ff_hevc_qsv_hwaccel = { .name = "hevc_qsv", .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_HEVC, .pix_fmt = AV_PIX_FMT_QSV, }; +#endif +#if CONFIG_HEVC_QSV_DECODER static const AVOption hevc_options[] = { { "async_depth", "Internal parallelization depth, the higher the value the higher the latency.", OFFSET(qsv.async_depth), AV_OPT_TYPE_INT, { .i64 = ASYNC_DEPTH_DEFAULT }, 0, INT_MAX, VD }, @@ -275,14 +277,16 @@ AVCodec ff_hevc_qsv_decoder = { }; #endif -#if CONFIG_H264_QSV_DECODER +#if CONFIG_H264_QSV_HWACCEL AVHWAccel ff_h264_qsv_hwaccel = { .name = "h264_qsv", .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_H264, .pix_fmt = AV_PIX_FMT_QSV, }; +#endif +#if CONFIG_H264_QSV_DECODER static const AVOption options[] = { { "async_depth", "Internal parallelization depth, the higher the value the higher the latency.", OFFSET(qsv.async_depth), AV_OPT_TYPE_INT, { .i64 = ASYNC_DEPTH_DEFAULT }, 0, INT_MAX, VD }, { NULL }, |