diff mpegvideo.c @ 8855:6ce8ebfc9d86 libavcodec

use ff_xvmc for function names instead of XVMC_
author iive
date Sat, 14 Feb 2009 18:25:41 +0000
parents 3eaabd9c4371
children 9cd28fb52745
line wrap: on
line diff
--- a/mpegvideo.c	Sat Feb 14 18:15:59 2009 +0000
+++ b/mpegvideo.c	Sat Feb 14 18:25:41 2009 +0000
@@ -56,7 +56,7 @@
 
 int  XVMC_field_start(MpegEncContext*s, AVCodecContext *avctx);
 void XVMC_field_end(MpegEncContext *s);
-void XVMC_decode_mb(MpegEncContext *s);
+void ff_xvmc_decode_mb(MpegEncContext *s);
 
 
 /* enable all paranoid tests for rounding, overflows, etc... */
@@ -1738,7 +1738,7 @@
     const int mb_xy = s->mb_y * s->mb_stride + s->mb_x;
 #if CONFIG_MPEG_XVMC_DECODER
     if(s->avctx->xvmc_acceleration){
-        XVMC_decode_mb(s);//xvmc uses pblocks
+        ff_xvmc_decode_mb(s);//xvmc uses pblocks
         return;
     }
 #endif