diff options
author | RĂ©mi Denis-Courmont <remi@remlab.net> | 2014-03-25 20:19:58 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-31 17:52:42 +0200 |
commit | 654c7446a806c5dc8ec7800874c49a4c1ba2ce80 (patch) | |
tree | 347a86e52a3223409e2e9689466b7fc3804ce14d /libavcodec | |
parent | 33259118155764ce27a3433894659dda1d148b5f (diff) | |
download | ffmpeg-654c7446a806c5dc8ec7800874c49a4c1ba2ce80.tar.gz |
vc1dec: improve hwaccel #ifdefs
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vc1dec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index f8340eec99..e6bbe58aff 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -6122,13 +6122,13 @@ static const AVProfile profiles[] = { }; static const enum AVPixelFormat vc1_hwaccel_pixfmt_list_420[] = { -#if CONFIG_DXVA2 +#if CONFIG_VC1_DXVA2_HWACCEL AV_PIX_FMT_DXVA2_VLD, #endif -#if CONFIG_VAAPI +#if CONFIG_VC1_VAAPI_HWACCEL AV_PIX_FMT_VAAPI_VLD, #endif -#if CONFIG_VDPAU +#if CONFIG_VC1_VDPAU_HWACCEL AV_PIX_FMT_VDPAU, #endif AV_PIX_FMT_YUV420P, |