comparison dca.c @ 4908:777f250df232 libavcodec

Fix multiple "¡Æinline/static¡Ç is not at beginning of declaration" warnings.
author diego
date Sat, 05 May 2007 12:18:14 +0000
parents e153b9ff47d3
children 696cda281304
comparison
equal deleted inserted replaced
4907:2eac08efc196 4908:777f250df232
85 static BitAlloc dca_smpl_bitalloc[11]; ///< samples VLCs 85 static BitAlloc dca_smpl_bitalloc[11]; ///< samples VLCs
86 86
87 /** Pre-calculated cosine modulation coefs for the QMF */ 87 /** Pre-calculated cosine modulation coefs for the QMF */
88 static float cos_mod[544]; 88 static float cos_mod[544];
89 89
90 static int av_always_inline get_bitalloc(GetBitContext *gb, BitAlloc *ba, int idx) 90 static av_always_inline int get_bitalloc(GetBitContext *gb, BitAlloc *ba, int idx)
91 { 91 {
92 return get_vlc2(gb, ba->vlc[idx].table, ba->vlc[idx].bits, ba->wrap) + ba->offset; 92 return get_vlc2(gb, ba->vlc[idx].table, ba->vlc[idx].bits, ba->wrap) + ba->offset;
93 } 93 }
94 94
95 typedef struct { 95 typedef struct {