Browse Source

Reindent after channel layout commit from yesterday

Originally committed as revision 20156 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Robert Swain 16 years ago
parent
commit
f640478b56
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/vorbis_dec.c

+ 2
- 2
libavcodec/vorbis_dec.c View File

@@ -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 +


Loading…
Cancel
Save