adpcm_swf: Use correct sample offsets when using trellis.
authorJustin Ruggles <justin.ruggles@gmail.com>
Mon, 20 Aug 2012 16:18:58 +0000 (12:18 -0400)
committerJustin Ruggles <justin.ruggles@gmail.com>
Wed, 22 Aug 2012 16:43:51 +0000 (12:43 -0400)
Fixes invalid reads when encoding mono streams when trellis is used.

libavcodec/adpcmenc.c

index 038dbf1..843b32f 100644 (file)
@@ -615,10 +615,11 @@ static int adpcm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
 
         if (avctx->trellis > 0) {
             FF_ALLOC_OR_GOTO(avctx, buf, 2 * n, error);
-            adpcm_compress_trellis(avctx, samples + 2, buf, &c->status[0], n);
+            adpcm_compress_trellis(avctx, samples + avctx->channels, buf,
+                                   &c->status[0], n);
             if (avctx->channels == 2)
-                adpcm_compress_trellis(avctx, samples + 3, buf + n,
-                                       &c->status[1], n);
+                adpcm_compress_trellis(avctx, samples + avctx->channels + 1,
+                                       buf + n, &c->status[1], n);
             for (i = 0; i < n; i++) {
                 put_bits(&pb, 4, buf[i]);
                 if (avctx->channels == 2)