diff options
author | James Almer <jamrial@gmail.com> | 2016-09-28 15:12:29 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-09-28 15:13:10 -0300 |
commit | 13dd5edb88c9ecfc1d01899f5b36453051e02d98 (patch) | |
tree | e445ad1a6982fdd1c4b60c7b1e917eb21718299a /libavutil/hwcontext.c | |
parent | d6573275a71554cef25a78e462e688f58d585423 (diff) | |
download | ffmpeg-13dd5edb88c9ecfc1d01899f5b36453051e02d98.tar.gz |
avutil/hwcontext: use CONFIG_QSV instead of CONFIG_LIBMFX for qsv
See "[FFmpeg-devel] [PATCH] hwcontext: add a QSV implementation"
Suggested-by: nablet developer <sdk@nablet.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/hwcontext.c')
-rw-r--r-- | libavutil/hwcontext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/hwcontext.c b/libavutil/hwcontext.c index 8af7afa5ce..be1d73e82f 100644 --- a/libavutil/hwcontext.c +++ b/libavutil/hwcontext.c @@ -35,7 +35,7 @@ static const HWContextType *hw_table[] = { #if CONFIG_DXVA2 &ff_hwcontext_type_dxva2, #endif -#if CONFIG_LIBMFX +#if CONFIG_QSV &ff_hwcontext_type_qsv, #endif #if CONFIG_VAAPI |