[FFmpeg-cvslog] r20156 - trunk/libavcodec/vorbis_dec.c

superdump subversion
Sat Oct 3 16:59:40 CEST 2009


Author: superdump
Date: Sat Oct  3 16:59:40 2009
New Revision: 20156

Log:
Reindent after channel layout commit from yesterday

Modified:
   trunk/libavcodec/vorbis_dec.c

Modified: trunk/libavcodec/vorbis_dec.c
==============================================================================
--- trunk/libavcodec/vorbis_dec.c	Sat Oct  3 12:01:23 2009	(r20155)
+++ trunk/libavcodec/vorbis_dec.c	Sat Oct  3 16:59:40 2009	(r20156)
@@ -1649,8 +1649,8 @@ static int vorbis_decode_frame(AVCodecCo
     AV_DEBUG("parsed %d bytes %d bits, returned %d samples (*ch*bits) \n", get_bits_count(gb)/8, get_bits_count(gb)%8, len);
 
     if (vc->audio_channels > 6) {
-    for (i = 0; i < vc->audio_channels; i++)
-        channel_ptrs[i] = vc->channel_floors + i * len;
+        for (i = 0; i < vc->audio_channels; i++)
+            channel_ptrs[i] = vc->channel_floors + i * len;
     } else {
         for (i = 0; i < vc->audio_channels; i++)
             channel_ptrs[i] = vc->channel_floors +



More information about the ffmpeg-cvslog mailing list