summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorIvan Kalvachev <ikalvachev@gmail.com>2009-02-14 18:25:41 +0000
committerIvan Kalvachev <ikalvachev@gmail.com>2009-02-14 18:25:41 +0000
commit78f9a8783067ee09db8d432a3d9248dfb7bb15ee (patch)
tree0ded0052eff389681339913954103545b35b99e1 /libavcodec/mpegvideo.c
parentc1a5aa2953ed30c7aa1097b3f6419e3e6225e88d (diff)
use ff_xvmc for function names instead of XVMC_
Originally committed as revision 17254 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index b88cea3c13..ce1c496896 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -56,7 +56,7 @@ static void dct_unquantize_h263_inter_c(MpegEncContext *s,
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 @@ void MPV_decode_mb_internal(MpegEncContext *s, DCTELEM block[12][64],
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