summaryrefslogtreecommitdiff
path: root/avconv_opt.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2015-10-13 14:11:35 +0200
committerAnton Khirnov <anton@khirnov.net>2015-10-16 20:01:37 +0200
commitfb472e1a11a4e0caed2c3c91da01ea8e35d9e3f8 (patch)
tree5ddb316f55a9f62ffd64357c0db583a7fe8398a2 /avconv_opt.c
parentdc923bc23b3efd949d0bf67ff1abdb95059e5843 (diff)
avconv: add support for Intel QSV-accelerated transcoding
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'avconv_opt.c')
-rw-r--r--avconv_opt.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/avconv_opt.c b/avconv_opt.c
index 3819993709..8fe53e6168 100644
--- a/avconv_opt.c
+++ b/avconv_opt.c
@@ -65,6 +65,9 @@ const HWAccel hwaccels[] = {
#if CONFIG_VDA
{ "vda", vda_init, HWACCEL_VDA, AV_PIX_FMT_VDA },
#endif
+#if CONFIG_LIBMFX
+ { "qsv", qsv_init, HWACCEL_QSV, AV_PIX_FMT_QSV },
+#endif
{ 0 },
};