diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-11-03 19:21:00 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-11-23 11:55:53 +0100 |
commit | 7671dd7cd7d51bbd637cc46d8f104a141bc355ea (patch) | |
tree | 894b4ff07c05f8cb2d7b2f266335b3c3fe9f8d56 /avconv_opt.c | |
parent | 07fd0a22192805d56c635eb294dc26b0a54ae325 (diff) | |
download | ffmpeg-7671dd7cd7d51bbd637cc46d8f104a141bc355ea.tar.gz |
avconv: add support for VDPAU decoding
Diffstat (limited to 'avconv_opt.c')
-rw-r--r-- | avconv_opt.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/avconv_opt.c b/avconv_opt.c index cbd8370eba..da8c6e7574 100644 --- a/avconv_opt.c +++ b/avconv_opt.c @@ -54,6 +54,9 @@ } const HWAccel hwaccels[] = { +#if HAVE_VDPAU_X11 + { "vdpau", vdpau_init, HWACCEL_VDPAU, AV_PIX_FMT_VDPAU }, +#endif { 0 }, }; |