Mercurial > libavcodec.hg
diff 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 |
line wrap: on
line diff
--- a/dca.c Sat May 05 11:14:03 2007 +0000 +++ b/dca.c Sat May 05 12:18:14 2007 +0000 @@ -87,7 +87,7 @@ /** Pre-calculated cosine modulation coefs for the QMF */ static float cos_mod[544]; -static int av_always_inline get_bitalloc(GetBitContext *gb, BitAlloc *ba, int idx) +static av_always_inline int get_bitalloc(GetBitContext *gb, BitAlloc *ba, int idx) { return get_vlc2(gb, ba->vlc[idx].table, ba->vlc[idx].bits, ba->wrap) + ba->offset; }
