diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-07-29 09:51:51 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-07-29 09:51:51 +0000 |
commit | fe3608d577be9d67fffe666c4e5967a11a491db2 (patch) | |
tree | d0f88dac6fe5f45490d3b836125c863f11555e19 /libavcodec/vaapi_vc1.c | |
parent | d46c84ea31f3e8d4c5d2bc5a13386ddfafa68324 (diff) | |
download | ffmpeg-fe3608d577be9d67fffe666c4e5967a11a491db2.tar.gz |
Do not check for CONFIG_VC1_VAAPI_HWACCEL, the file is only
compiled if that condition is true.
Originally committed as revision 19531 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vaapi_vc1.c')
-rw-r--r-- | libavcodec/vaapi_vc1.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/vaapi_vc1.c b/libavcodec/vaapi_vc1.c index e467360b82..eae3c160fc 100644 --- a/libavcodec/vaapi_vc1.c +++ b/libavcodec/vaapi_vc1.c @@ -340,7 +340,6 @@ AVHWAccel wmv3_vaapi_hwaccel = { }; #endif -#if CONFIG_VC1_VAAPI_HWACCEL AVHWAccel vc1_vaapi_hwaccel = { .name = "vc1_vaapi", .type = CODEC_TYPE_VIDEO, @@ -352,4 +351,3 @@ AVHWAccel vc1_vaapi_hwaccel = { .decode_slice = vaapi_vc1_decode_slice, .priv_data_size = 0, }; -#endif |