comparison mimic.c @ 8954:409d20e15da8 libavcodec

cosmetics: 'const static' --> 'static const' to avoid warnings of the type "'static' is not at beginning of declaration" with -Wextra.
author diego
date Tue, 17 Feb 2009 12:03:10 +0000
parents 800444234375
children 54bc8a2727b0
comparison
equal deleted inserted replaced
8953:5e70bdb97d0c 8954:409d20e15da8
119 ff_init_scantable(ctx->dsp.idct_permutation, &ctx->scantable, col_zag); 119 ff_init_scantable(ctx->dsp.idct_permutation, &ctx->scantable, col_zag);
120 120
121 return 0; 121 return 0;
122 } 122 }
123 123
124 const static int8_t vlcdec_lookup[9][64] = { 124 static const int8_t vlcdec_lookup[9][64] = {
125 { 0, }, 125 { 0, },
126 { -1, 1, }, 126 { -1, 1, },
127 { -3, 3, -2, 2, }, 127 { -3, 3, -2, 2, },
128 { -7, 7, -6, 6, -5, 5, -4, 4, }, 128 { -7, 7, -6, 6, -5, 5, -4, 4, },
129 { -15, 15, -14, 14, -13, 13, -12, 12, 129 { -15, 15, -14, 14, -13, 13, -12, 12,