atrac3dec: cosmetics: indentation
authorAurelien Jacobs <aurel@gnuage.org>
Thu, 2 Oct 2008 21:17:33 +0000 (21:17 +0000)
committerAurelien Jacobs <aurel@gnuage.org>
Thu, 2 Oct 2008 21:17:33 +0000 (21:17 +0000)
Originally committed as revision 15530 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/atrac3.c

index 9a9f8ae..7c6ba58 100644 (file)
@@ -799,9 +799,9 @@ static int decodeFrame(ATRAC3Context *q, const uint8_t* databuf)
         if (databuf == q->decoded_bytes_buffer) {
             uint8_t *ptr2 = q->decoded_bytes_buffer+q->bytes_per_frame-1;
             ptr1 = q->decoded_bytes_buffer;
-        for (i = 0; i < (q->bytes_per_frame/2); i++, ptr1++, ptr2--) {
-            FFSWAP(uint8_t,*ptr1,*ptr2);
-        }
+            for (i = 0; i < (q->bytes_per_frame/2); i++, ptr1++, ptr2--) {
+                FFSWAP(uint8_t,*ptr1,*ptr2);
+            }
         } else {
             const uint8_t *ptr2 = databuf+q->bytes_per_frame-1;
             for (i = 0; i < q->bytes_per_frame; i++)