diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-14 18:51:17 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-14 18:51:17 +0000 |
commit | ed92bedb63e8e439620d25072e2af4b6e525378e (patch) | |
tree | c3962e3291e23ca985ffdad27b8a796bb2b75c6f /libavcodec | |
parent | f0a902ad8213eb547b01f2bbd5e9ac4126673973 (diff) | |
download | ffmpeg-ed92bedb63e8e439620d25072e2af4b6e525378e.tar.gz |
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’
Originally committed as revision 17258 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mpegvideo.c | 4 |
1 files 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); |