]> git.sesse.net Git - ffmpeg/commitdiff
simplify
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 7 Apr 2007 21:30:19 +0000 (21:30 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 7 Apr 2007 21:30:19 +0000 (21:30 +0000)
Originally committed as revision 8655 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/adpcm.c

index 085d1a149c79b27364a2581c271aab09c2763672..d24acbc14560b584bfcccce07bad169b7ad26dc6 100644 (file)
@@ -1332,10 +1332,8 @@ static int adpcm_decode_frame(AVCodecContext *avctx,
             table[0][i] = get_sbits(&gb, 16);
 
         /* Initialize the previous sample.  */
-        for (ch = 0; ch < 2; ch++) {
-            prev[ch][0] = get_sbits(&gb, 16);
-            prev[ch][1] = get_sbits(&gb, 16);
-        }
+        for (i = 0; i < 4; i++)
+            prev[0][i] = get_sbits(&gb, 16);
 
         if (samplecnt >= (samples_end - samples) /  (st + 1)) {
             av_log(avctx, AV_LOG_ERROR, "allocated output buffer is too small\n");