comparison vorbis_dec.c @ 10354:24a069f83049 libavcodec

Reindent after channel layout commit from yesterday
author superdump
date Sat, 03 Oct 2009 14:59:40 +0000
parents 93abbe76b5cc
children 8cccee204e2e
comparison
equal deleted inserted replaced
10353:c8edd2033038 10354:24a069f83049
1647 } 1647 }
1648 1648
1649 AV_DEBUG("parsed %d bytes %d bits, returned %d samples (*ch*bits) \n", get_bits_count(gb)/8, get_bits_count(gb)%8, len); 1649 AV_DEBUG("parsed %d bytes %d bits, returned %d samples (*ch*bits) \n", get_bits_count(gb)/8, get_bits_count(gb)%8, len);
1650 1650
1651 if (vc->audio_channels > 6) { 1651 if (vc->audio_channels > 6) {
1652 for (i = 0; i < vc->audio_channels; i++) 1652 for (i = 0; i < vc->audio_channels; i++)
1653 channel_ptrs[i] = vc->channel_floors + i * len; 1653 channel_ptrs[i] = vc->channel_floors + i * len;
1654 } else { 1654 } else {
1655 for (i = 0; i < vc->audio_channels; i++) 1655 for (i = 0; i < vc->audio_channels; i++)
1656 channel_ptrs[i] = vc->channel_floors + 1656 channel_ptrs[i] = vc->channel_floors +
1657 len * ff_vorbis_channel_layout_offsets[vc->audio_channels - 1][i]; 1657 len * ff_vorbis_channel_layout_offsets[vc->audio_channels - 1][i];
1658 } 1658 }