]> git.sesse.net Git - ffmpeg/commitdiff
general purpose vars should be int
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 7 Apr 2007 21:19:36 +0000 (21:19 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 7 Apr 2007 21:19:36 +0000 (21:19 +0000)
Originally committed as revision 8652 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/adpcm.c

index 3ba941e8fc1e3312707ee03471c18359ad0704a3..efe12b573e75b3fabd7e3f1cb17a19fbfe443cdc 100644 (file)
@@ -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];