From ed92bedb63e8e439620d25072e2af4b6e525378e Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 14 Feb 2009 18:51:17 +0000 Subject: [PATCH] =?UTF-8?q?Rename=20some=20forward=20declarations=20that?= =?UTF-8?q?=20were=20missed,=20fixes=20the=20warnings:=20libavcodec/mpegvi?= =?UTF-8?q?deo.o=20libavcodec/mpegvideo.c=20libavcodec/mpegvideo.c:=20In?= =?UTF-8?q?=20function=20=E2=80=98MPV=5Fframe=5Fstart=E2=80=99:=20libavcod?= =?UTF-8?q?ec/mpegvideo.c:944:=20warning:=20implicit=20declaration=20of=20?= =?UTF-8?q?function=20=E2=80=98ff=5Fxvmc=5Ffield=5Fstart=E2=80=99=20libavc?= =?UTF-8?q?odec/mpegvideo.c:=20In=20function=20=E2=80=98MPV=5Fframe=5Fend?= =?UTF-8?q?=E2=80=99:=20libavcodec/mpegvideo.c:957:=20warning:=20implicit?= =?UTF-8?q?=20declaration=20of=20function=20=E2=80=98ff=5Fxvmc=5Ffield=5Fe?= =?UTF-8?q?nd=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 17258 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegvideo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 138ac8d1d1..660b7990ef 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -54,8 +54,8 @@ static void dct_unquantize_h263_intra_c(MpegEncContext *s, 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);