diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-08-08 10:24:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-08 10:24:26 +0000 |
commit | ed4e20ac7fb83bddf4c9a1fc65f30821dcbc7935 (patch) | |
tree | b781b2f8b6f760de57a6de022ab31d383ddeb892 /libavformat/amr.c | |
parent | a2fd60437d0c7cf21a9365024efaa764bddaf3ab (diff) | |
download | ffmpeg-ed4e20ac7fb83bddf4c9a1fc65f30821dcbc7935.tar.gz |
Fix some "'static' is not at beginning of declaration" warnings.
Originally committed as revision 5956 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/amr.c')
-rw-r--r-- | libavformat/amr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/amr.c b/libavformat/amr.c index ee0ea47f1b..bac9fbe44f 100644 --- a/libavformat/amr.c +++ b/libavformat/amr.c @@ -135,7 +135,7 @@ static int amr_read_packet(AVFormatContext *s, if (enc->codec_id == CODEC_ID_AMR_NB) { - const static uint8_t packed_size[16] = {12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0}; + static const uint8_t packed_size[16] = {12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0}; uint8_t toc, q, ft; int read; int size; |