diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-14 18:46:32 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-14 18:46:32 +0000 |
commit | a002da797c8fc61c6975d2fa42b58568dee21e77 (patch) | |
tree | 12cb9dabc5976ec56294a144f7e7d67f3633c4e1 /libavcodec | |
parent | 4742762f5d86fca487d906e6d8c54abbe5fee175 (diff) | |
download | ffmpeg-a002da797c8fc61c6975d2fa42b58568dee21e77.tar.gz |
Fix compilation: XVMC_ --> ff_xvmc prefix for xvmc functions.
Originally committed as revision 17256 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mpegvideo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index ce1c496896..138ac8d1d1 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -941,7 +941,7 @@ alloc: #if CONFIG_MPEG_XVMC_DECODER if(s->avctx->xvmc_acceleration) - return XVMC_field_start(s, avctx); + return ff_xvmc_field_start(s, avctx); #endif return 0; } @@ -954,7 +954,7 @@ void MPV_frame_end(MpegEncContext *s) #if CONFIG_MPEG_XVMC_DECODER //just to make sure that all data is rendered. if(s->avctx->xvmc_acceleration){ - XVMC_field_end(s); + ff_xvmc_field_end(s); }else #endif if(!(s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU) |