comparison mpeg12.c @ 9662:34be4ff86302 libavcodec

Add a forward declaration of mpeg1_decode_block_intra to fix compilation broken by r18859 for e.g. all gcc 4 compilers.
author reimar
date Sun, 17 May 2009 09:09:07 +0000
parents 6d75bcdeaa30
children 017967b3067f
comparison
equal deleted inserted replaced
9661:1fe22274393a 9662:34be4ff86302
47 #define MBINCR_VLC_BITS 9 47 #define MBINCR_VLC_BITS 9
48 #define MB_PAT_VLC_BITS 9 48 #define MB_PAT_VLC_BITS 9
49 #define MB_PTYPE_VLC_BITS 6 49 #define MB_PTYPE_VLC_BITS 6
50 #define MB_BTYPE_VLC_BITS 6 50 #define MB_BTYPE_VLC_BITS 6
51 51
52 static inline int mpeg1_decode_block_intra(MpegEncContext *s,
53 DCTELEM *block,
54 int n);
52 static inline int mpeg1_decode_block_inter(MpegEncContext *s, 55 static inline int mpeg1_decode_block_inter(MpegEncContext *s,
53 DCTELEM *block, 56 DCTELEM *block,
54 int n); 57 int n);
55 static inline int mpeg1_fast_decode_block_inter(MpegEncContext *s, DCTELEM *block, int n); 58 static inline int mpeg1_fast_decode_block_inter(MpegEncContext *s, DCTELEM *block, int n);
56 static inline int mpeg2_decode_block_non_intra(MpegEncContext *s, 59 static inline int mpeg2_decode_block_non_intra(MpegEncContext *s,