diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2011-01-27 03:56:14 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-28 03:15:35 +0100 |
commit | 1d20121b2e32aa01692ed79997e9423d8856422b (patch) | |
tree | 5a3e349fb985fad652965a7b7d2fd79762118189 /libavcodec/vaapi_vc1.c | |
parent | 66355be3c3eb8e797589058b0773f773a8c2231e (diff) | |
download | ffmpeg-1d20121b2e32aa01692ed79997e9423d8856422b.tar.gz |
Add ff_ to AVHWAccel decoders
That unbreaks compilation of vaapi and dxva2
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit d1b6f33bf2ce56f013a1c5a013a19671c0f30ea0)
Diffstat (limited to 'libavcodec/vaapi_vc1.c')
-rw-r--r-- | libavcodec/vaapi_vc1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vaapi_vc1.c b/libavcodec/vaapi_vc1.c index 2c24042ab5..d7bae009dc 100644 --- a/libavcodec/vaapi_vc1.c +++ b/libavcodec/vaapi_vc1.c @@ -326,7 +326,7 @@ static int vaapi_vc1_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, } #if CONFIG_WMV3_VAAPI_HWACCEL -AVHWAccel wmv3_vaapi_hwaccel = { +AVHWAccel ff_wmv3_vaapi_hwaccel = { .name = "wmv3_vaapi", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_WMV3, @@ -339,7 +339,7 @@ AVHWAccel wmv3_vaapi_hwaccel = { }; #endif -AVHWAccel vc1_vaapi_hwaccel = { +AVHWAccel ff_vc1_vaapi_hwaccel = { .name = "vc1_vaapi", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_VC1, |