[FFmpeg-cvslog] r17258 - trunk/libavcodec/mpegvideo.c

diego subversion
Sat Feb 14 19:51:17 CET 2009


Author: diego
Date: Sat Feb 14 19:51:17 2009
New Revision: 17258

Log:
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?

Modified:
   trunk/libavcodec/mpegvideo.c

Modified: trunk/libavcodec/mpegvideo.c
==============================================================================
--- trunk/libavcodec/mpegvideo.c	Sat Feb 14 19:47:00 2009	(r17257)
+++ trunk/libavcodec/mpegvideo.c	Sat Feb 14 19:51:17 2009	(r17258)
@@ -54,8 +54,8 @@ static void dct_unquantize_h263_intra_c(
 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);
 
 




More information about the ffmpeg-cvslog mailing list