diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-01-13 14:25:58 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-06-21 19:53:37 +0200 |
commit | 59e7361cc791e5103be1712dc59a2055f118d0da (patch) | |
tree | f94952dc2d601d9d9f46cc5d2c895932b2f9beac /libavutil/hwcontext.c | |
parent | 6f19bbcf8532d018d8d6d82e000738d0ac2385c9 (diff) | |
download | ffmpeg-streaming-59e7361cc791e5103be1712dc59a2055f118d0da.zip ffmpeg-streaming-59e7361cc791e5103be1712dc59a2055f118d0da.tar.gz |
hwcontext: add a QSV implementation
Diffstat (limited to 'libavutil/hwcontext.c')
-rw-r--r-- | libavutil/hwcontext.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/hwcontext.c b/libavutil/hwcontext.c index 3028b67..96b316a 100644 --- a/libavutil/hwcontext.c +++ b/libavutil/hwcontext.c @@ -35,6 +35,9 @@ static const HWContextType *hw_table[] = { #if CONFIG_DXVA2 &ff_hwcontext_type_dxva2, #endif +#if CONFIG_LIBMFX + &ff_hwcontext_type_qsv, +#endif #if CONFIG_VAAPI &ff_hwcontext_type_vaapi, #endif |