comparison amr.c @ 1242:996ce2a68147 libavformat

Fix some "'static' is not at beginning of declaration" warnings.
author diego
date Tue, 08 Aug 2006 10:24:26 +0000
parents d18cc9a1fd02
children 7474cc6383d4
comparison
equal deleted inserted replaced
1241:11fbe0326131 1242:996ce2a68147
133 { 133 {
134 AVCodecContext *enc = s->streams[0]->codec; 134 AVCodecContext *enc = s->streams[0]->codec;
135 135
136 if (enc->codec_id == CODEC_ID_AMR_NB) 136 if (enc->codec_id == CODEC_ID_AMR_NB)
137 { 137 {
138 const static uint8_t packed_size[16] = {12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0}; 138 static const uint8_t packed_size[16] = {12, 13, 15, 17, 19, 20, 26, 31, 5, 0, 0, 0, 0, 0, 0, 0};
139 uint8_t toc, q, ft; 139 uint8_t toc, q, ft;
140 int read; 140 int read;
141 int size; 141 int size;
142 142
143 if (url_feof(&s->pb)) 143 if (url_feof(&s->pb))