[FFmpeg-cvslog] r19238 - trunk/libavcodec/adpcm.c

cehoyos subversion
Sat Jun 20 15:10:17 CEST 2009


Author: cehoyos
Date: Sat Jun 20 15:10:17 2009
New Revision: 19238

Log:
Fix indentation after last commit.

Modified:
   trunk/libavcodec/adpcm.c

Modified: trunk/libavcodec/adpcm.c
==============================================================================
--- trunk/libavcodec/adpcm.c	Sat Jun 20 15:07:21 2009	(r19237)
+++ trunk/libavcodec/adpcm.c	Sat Jun 20 15:10:17 2009	(r19238)
@@ -648,12 +648,12 @@ static int adpcm_encode_frame(AVCodecCon
                     *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;



More information about the ffmpeg-cvslog mailing list