comparison msmpeg4.c @ 10750:a0925d1d3f7b libavcodec

Remove unnecessary forward declaration for msmpeg4_memsetw().
author diego
date Wed, 30 Dec 2009 13:48:03 +0000
parents 95f3daa991a2
children 74e8feb81c6d
comparison
equal deleted inserted replaced
10749:5cca4b6c459d 10750:a0925d1d3f7b
60 static uint32_t v2_dc_lum_table[512][2]; 60 static uint32_t v2_dc_lum_table[512][2];
61 static uint32_t v2_dc_chroma_table[512][2]; 61 static uint32_t v2_dc_chroma_table[512][2];
62 62
63 static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr); 63 static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr);
64 static void init_h263_dc_for_msmpeg4(void); 64 static void init_h263_dc_for_msmpeg4(void);
65 static inline void msmpeg4_memsetw(short *tab, int val, int n);
66 #if CONFIG_ENCODERS 65 #if CONFIG_ENCODERS
67 static void msmpeg4v2_encode_motion(MpegEncContext * s, int val); 66 static void msmpeg4v2_encode_motion(MpegEncContext * s, int val);
68 static int get_size_of_code(MpegEncContext * s, RLTable *rl, int last, int run, int level, int intra); 67 static int get_size_of_code(MpegEncContext * s, RLTable *rl, int last, int run, int level, int intra);
69 #endif //CONFIG_ENCODERS 68 #endif //CONFIG_ENCODERS
70 static int msmpeg4v12_decode_mb(MpegEncContext *s, DCTELEM block[6][64]); 69 static int msmpeg4v12_decode_mb(MpegEncContext *s, DCTELEM block[6][64]);