diff adpcm.c @ 9874:ee966d1064a2 libavcodec

Fix indentation after last commit.
author cehoyos
date Sat, 20 Jun 2009 13:10:17 +0000
parents 88c0a9c62987
children 681cf949c1cf
line wrap: on
line diff
--- a/adpcm.c	Sat Jun 20 13:07:21 2009 +0000
+++ b/adpcm.c	Sat Jun 20 13:10:17 2009 +0000
@@ -648,12 +648,12 @@
                     *dst++ = buf[0][i] | (buf[1][i] << 4);
             }
         } else
-        for (n *= avctx->channels; n>0; n--) {
-            int nibble;
-            nibble  = adpcm_yamaha_compress_sample(&c->status[ 0], *samples++);
-            nibble |= adpcm_yamaha_compress_sample(&c->status[st], *samples++) << 4;
-            *dst++ = nibble;
-        }
+            for (n *= avctx->channels; n>0; n--) {
+                int nibble;
+                nibble  = adpcm_yamaha_compress_sample(&c->status[ 0], *samples++);
+                nibble |= adpcm_yamaha_compress_sample(&c->status[st], *samples++) << 4;
+                *dst++ = nibble;
+            }
         break;
     default:
         return -1;