# HG changeset patch # User diego # Date 1234637477 0 # Node ID bb358e5acde4d6b5dc07790b8a3209fc445f7fb7 # Parent 0ec48cdc334866ed663a631bfb3adc378b82098b Rename some forward declarations that were missed, fixes the warnings: libavcodec/mpegvideo.o libavcodec/mpegvideo.c libavcodec/mpegvideo.c: In function ¡ÆMPV_frame_start¡Ç: libavcodec/mpegvideo.c:944: warning: implicit declaration of function ¡Æff_xvmc_field_start¡Ç libavcodec/mpegvideo.c: In function ¡ÆMPV_frame_end¡Ç: libavcodec/mpegvideo.c:957: warning: implicit declaration of function ¡Æff_xvmc_field_end¡Ç diff -r 0ec48cdc3348 -r bb358e5acde4 mpegvideo.c --- a/mpegvideo.c Sat Feb 14 18:47:00 2009 +0000 +++ b/mpegvideo.c Sat Feb 14 18:51:17 2009 +0000 @@ -54,8 +54,8 @@ static void dct_unquantize_h263_inter_c(MpegEncContext *s, DCTELEM *block, int n, int qscale); -int XVMC_field_start(MpegEncContext*s, AVCodecContext *avctx); -void XVMC_field_end(MpegEncContext *s); +int ff_xvmc_field_start(MpegEncContext*s, AVCodecContext *avctx); +void ff_xvmc_field_end(MpegEncContext *s); void ff_xvmc_decode_mb(MpegEncContext *s);