diff options
author | Robert Swain <robert.swain@gmail.com> | 2009-10-03 14:59:40 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2009-10-03 14:59:40 +0000 |
commit | f640478b56dfddf946c72cf012866e1b9d59e271 (patch) | |
tree | 173c7ec35d1bd8dabd14092f86e86949778f4ed5 /libavcodec | |
parent | aac4b0a47ed8a44c01b962ed391620dd84368f06 (diff) | |
download | ffmpeg-f640478b56dfddf946c72cf012866e1b9d59e271.tar.gz |
Reindent after channel layout commit from yesterday
Originally committed as revision 20156 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vorbis_dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c index 3dbd4b9c61..0ed3ce61a4 100644 --- a/libavcodec/vorbis_dec.c +++ b/libavcodec/vorbis_dec.c @@ -1649,8 +1649,8 @@ static int vorbis_decode_frame(AVCodecContext *avccontext, 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 + |