diff mpegaudiodec.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 231daf8387b1
children 4d10df33e823
line wrap: on
line diff
--- a/mpegaudiodec.c	Sat May 05 11:14:03 2007 +0000
+++ b/mpegaudiodec.c	Sat May 05 12:18:14 2007 +0000
@@ -1729,7 +1729,7 @@
         g->sb_hybrid[s_index+2]=
         g->sb_hybrid[s_index+3]= 0;
         while(code){
-            const static int idxtab[16]={3,3,2,2,1,1,1,1,0,0,0,0,0,0,0,0};
+            static const int idxtab[16]={3,3,2,2,1,1,1,1,0,0,0,0,0,0,0,0};
             int v;
             int pos= s_index+idxtab[code];
             code ^= 8>>idxtab[code];