diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-17 12:03:10 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-17 12:03:10 +0000 |
commit | 1bf6e565dde17ac5603565c2d719005d91d6f5bd (patch) | |
tree | d55a90d0adc9cf673af2e5884a7e5548e5ff8a61 /libavcodec/mpc8data.h | |
parent | bf6d9818063e3a5c85e4bdce14310c6f9cc3f4de (diff) | |
download | ffmpeg-1bf6e565dde17ac5603565c2d719005d91d6f5bd.tar.gz |
cosmetics: 'const static' --> 'static const' to avoid warnings of the type
"'static' is not at beginning of declaration" with -Wextra.
Originally committed as revision 17391 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpc8data.h')
-rw-r--r-- | libavcodec/mpc8data.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpc8data.h b/libavcodec/mpc8data.h index d6fbc1afb3..22c2be43bf 100644 --- a/libavcodec/mpc8data.h +++ b/libavcodec/mpc8data.h @@ -77,7 +77,7 @@ static const uint32_t mpc8_cnk[16][32] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 17, 153, 969, 4845, 20349, 74613, 245157, 735471, 2042975, 5311735, 13037895, 30421755, 67863915, 145422675, 300540195} }; -const static uint8_t mpc8_cnk_len[16][33] = +static const uint8_t mpc8_cnk_len[16][33] = { {0, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6}, {0, 0, 2, 3, 4, 4, 5, 5, 6, 6, 6, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0}, @@ -98,7 +98,7 @@ const static uint8_t mpc8_cnk_len[16][33] = }; -const static uint32_t mpc8_cnk_lost[16][33] = +static const uint32_t mpc8_cnk_lost[16][33] = { {0, 0, 1, 0, 3, 2, 1, 0, 7, 6, 5, 4, 3, 2, 1, 0, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 31}, {0, 0, 1, 2, 6, 1, 11, 4, 28, 19, 9, 62, 50, 37, 23, 8, 120, 103, 85, 66, 46, 25, 3, 236, 212, 187, 161, 134, 106, 77, 47, 16, 0}, |