comparison mpegvideo.c @ 8859:bb358e5acde4 libavcodec

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¡Ç
author diego
date Sat, 14 Feb 2009 18:51:17 +0000
parents 9cd28fb52745
children f8042554d4c8
comparison
equal deleted inserted replaced
8858:0ec48cdc3348 8859:bb358e5acde4
52 static void dct_unquantize_h263_intra_c(MpegEncContext *s, 52 static void dct_unquantize_h263_intra_c(MpegEncContext *s,
53 DCTELEM *block, int n, int qscale); 53 DCTELEM *block, int n, int qscale);
54 static void dct_unquantize_h263_inter_c(MpegEncContext *s, 54 static void dct_unquantize_h263_inter_c(MpegEncContext *s,
55 DCTELEM *block, int n, int qscale); 55 DCTELEM *block, int n, int qscale);
56 56
57 int XVMC_field_start(MpegEncContext*s, AVCodecContext *avctx); 57 int ff_xvmc_field_start(MpegEncContext*s, AVCodecContext *avctx);
58 void XVMC_field_end(MpegEncContext *s); 58 void ff_xvmc_field_end(MpegEncContext *s);
59 void ff_xvmc_decode_mb(MpegEncContext *s); 59 void ff_xvmc_decode_mb(MpegEncContext *s);
60 60
61 61
62 /* enable all paranoid tests for rounding, overflows, etc... */ 62 /* enable all paranoid tests for rounding, overflows, etc... */
63 //#define PARANOID 63 //#define PARANOID