comparison aac.c @ 9847:58f97065a3a4 libavcodec

Cosmetics: Re-indent after last commit
author alexc
date Fri, 12 Jun 2009 21:16:33 +0000
parents 4cac4001dd23
children 7ad7d4094d1f
comparison
equal deleted inserted replaced
9846:4cac4001dd23 9847:58f97065a3a4
563 ics->num_window_groups++; 563 ics->num_window_groups++;
564 ics->group_len[ics->num_window_groups-1] = 1; 564 ics->group_len[ics->num_window_groups-1] = 1;
565 } 565 }
566 } 566 }
567 ics->num_windows = 8; 567 ics->num_windows = 8;
568 ics->swb_offset = ff_swb_offset_128[ac->m4ac.sampling_index]; 568 ics->swb_offset = ff_swb_offset_128[ac->m4ac.sampling_index];
569 ics->num_swb = ff_aac_num_swb_128[ac->m4ac.sampling_index]; 569 ics->num_swb = ff_aac_num_swb_128[ac->m4ac.sampling_index];
570 ics->tns_max_bands = ff_tns_max_bands_128[ac->m4ac.sampling_index]; 570 ics->tns_max_bands = ff_tns_max_bands_128[ac->m4ac.sampling_index];
571 ics->predictor_present = 0; 571 ics->predictor_present = 0;
572 } else { 572 } else {
573 ics->max_sfb = get_bits(gb, 6); 573 ics->max_sfb = get_bits(gb, 6);
574 ics->num_windows = 1; 574 ics->num_windows = 1;
575 ics->swb_offset = ff_swb_offset_1024[ac->m4ac.sampling_index]; 575 ics->swb_offset = ff_swb_offset_1024[ac->m4ac.sampling_index];
576 ics->num_swb = ff_aac_num_swb_1024[ac->m4ac.sampling_index]; 576 ics->num_swb = ff_aac_num_swb_1024[ac->m4ac.sampling_index];
577 ics->tns_max_bands = ff_tns_max_bands_1024[ac->m4ac.sampling_index]; 577 ics->tns_max_bands = ff_tns_max_bands_1024[ac->m4ac.sampling_index];
578 ics->predictor_present = get_bits1(gb); 578 ics->predictor_present = get_bits1(gb);
579 ics->predictor_reset_group = 0; 579 ics->predictor_reset_group = 0;
580 if (ics->predictor_present) { 580 if (ics->predictor_present) {
581 if (ac->m4ac.object_type == AOT_AAC_MAIN) { 581 if (ac->m4ac.object_type == AOT_AAC_MAIN) {