diff adpcm.c @ 5550:a0b2065d5df1 libavcodec

Cosmetics, indentation.
author banan
date Sun, 19 Aug 2007 20:34:27 +0000
parents b97f9b97e454
children 74e4be2d2f22
line wrap: on
line diff
--- a/adpcm.c	Sun Aug 19 20:31:53 2007 +0000
+++ b/adpcm.c	Sun Aug 19 20:34:27 2007 +0000
@@ -543,10 +543,10 @@
                     put_bits(&pb, 4, buf[1][i]);
             }
         } else {
-        for (i=1; i<avctx->frame_size; i++) {
-            put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels*i]) & 0xF);
-            if (avctx->channels == 2)
-                put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[1], samples[2*i+1]) & 0xF);
+            for (i=1; i<avctx->frame_size; i++) {
+                put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels*i]) & 0xF);
+                if (avctx->channels == 2)
+                    put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[1], samples[2*i+1]) & 0xF);
             }
         }
         flush_put_bits(&pb);