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/mimic.c | |
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/mimic.c')
-rw-r--r-- | libavcodec/mimic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mimic.c b/libavcodec/mimic.c index e30b682e69..a6ab090e2d 100644 --- a/libavcodec/mimic.c +++ b/libavcodec/mimic.c @@ -121,7 +121,7 @@ static av_cold int mimic_decode_init(AVCodecContext *avctx) return 0; } -const static int8_t vlcdec_lookup[9][64] = { +static const int8_t vlcdec_lookup[9][64] = { { 0, }, { -1, 1, }, { -3, 3, -2, 2, }, |