diff mpegvideo.c @ 8857:9cd28fb52745 libavcodec

Fix compilation: XVMC_ --> ff_xvmc prefix for xvmc functions.
author diego
date Sat, 14 Feb 2009 18:46:32 +0000
parents 6ce8ebfc9d86
children bb358e5acde4
line wrap: on
line diff
--- a/mpegvideo.c	Sat Feb 14 18:45:44 2009 +0000
+++ b/mpegvideo.c	Sat Feb 14 18:46:32 2009 +0000
@@ -941,7 +941,7 @@
 
 #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 @@
 #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)