Commit d9ddac25 authored by Michael Niedermayer's avatar Michael Niedermayer

general purpose vars should be int

Originally committed as revision 8652 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 20f75707
......@@ -1348,7 +1348,7 @@ static int adpcm_decode_frame(AVCodecContext *avctx,
/* Read in every sample for this channel. */
for (i = 0; i < samplecnt / 14; i++) {
uint8_t index = get_bits (&gb, 4) & 7;
int index = get_bits (&gb, 4) & 7;
unsigned int exp = get_bits (&gb, 4);
int factor1 = table[ch][index * 2];
int factor2 = table[ch][index * 2 + 1];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment