Commit f11bfe30 authored by Alex Converse's avatar Alex Converse

Reindent after last commit

Originally committed as revision 19382 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 48d20c11
...@@ -542,51 +542,51 @@ static int aac_encode_frame(AVCodecContext *avctx, ...@@ -542,51 +542,51 @@ static int aac_encode_frame(AVCodecContext *avctx,
} }
do { do {
int frame_bits; int frame_bits;
init_put_bits(&s->pb, frame, buf_size*8); init_put_bits(&s->pb, frame, buf_size*8);
if ((avctx->frame_number & 0xFF)==1 && !(avctx->flags & CODEC_FLAG_BITEXACT)) if ((avctx->frame_number & 0xFF)==1 && !(avctx->flags & CODEC_FLAG_BITEXACT))
put_bitstream_info(avctx, s, LIBAVCODEC_IDENT); put_bitstream_info(avctx, s, LIBAVCODEC_IDENT);
start_ch = 0; start_ch = 0;
memset(chan_el_counter, 0, sizeof(chan_el_counter)); memset(chan_el_counter, 0, sizeof(chan_el_counter));
for (i = 0; i < chan_map[0]; i++) { for (i = 0; i < chan_map[0]; i++) {
FFPsyWindowInfo* wi = windows + start_ch; FFPsyWindowInfo* wi = windows + start_ch;
tag = chan_map[i+1]; tag = chan_map[i+1];
chans = tag == TYPE_CPE ? 2 : 1; chans = tag == TYPE_CPE ? 2 : 1;
cpe = &s->cpe[i]; cpe = &s->cpe[i];
for (j = 0; j < chans; j++) { for (j = 0; j < chans; j++) {
s->coder->search_for_quantizers(avctx, s, &cpe->ch[j], s->lambda); s->coder->search_for_quantizers(avctx, s, &cpe->ch[j], s->lambda);
} }
cpe->common_window = 0; cpe->common_window = 0;
if (chans > 1 if (chans > 1
&& wi[0].window_type[0] == wi[1].window_type[0] && wi[0].window_type[0] == wi[1].window_type[0]
&& wi[0].window_shape == wi[1].window_shape) { && wi[0].window_shape == wi[1].window_shape) {
cpe->common_window = 1; cpe->common_window = 1;
for (j = 0; j < wi[0].num_windows; j++) { for (j = 0; j < wi[0].num_windows; j++) {
if (wi[0].grouping[j] != wi[1].grouping[j]) { if (wi[0].grouping[j] != wi[1].grouping[j]) {
cpe->common_window = 0; cpe->common_window = 0;
break; break;
}
} }
} }
} if (cpe->common_window && s->coder->search_for_ms)
if (cpe->common_window && s->coder->search_for_ms) s->coder->search_for_ms(s, cpe, s->lambda);
s->coder->search_for_ms(s, cpe, s->lambda); adjust_frame_information(s, cpe, chans);
adjust_frame_information(s, cpe, chans); put_bits(&s->pb, 3, tag);
put_bits(&s->pb, 3, tag); put_bits(&s->pb, 4, chan_el_counter[tag]++);
put_bits(&s->pb, 4, chan_el_counter[tag]++); if (chans == 2) {
if (chans == 2) { put_bits(&s->pb, 1, cpe->common_window);
put_bits(&s->pb, 1, cpe->common_window); if (cpe->common_window) {
if (cpe->common_window) { put_ics_info(s, &cpe->ch[0].ics);
put_ics_info(s, &cpe->ch[0].ics); encode_ms_info(&s->pb, cpe);
encode_ms_info(&s->pb, cpe); }
} }
for (j = 0; j < chans; j++) {
s->cur_channel = start_ch + j;
ff_psy_set_band_info(&s->psy, s->cur_channel, cpe->ch[j].coeffs, &wi[j]);
encode_individual_channel(avctx, s, &cpe->ch[j], cpe->common_window);
}
start_ch += chans;
} }
for (j = 0; j < chans; j++) {
s->cur_channel = start_ch + j;
ff_psy_set_band_info(&s->psy, s->cur_channel, cpe->ch[j].coeffs, &wi[j]);
encode_individual_channel(avctx, s, &cpe->ch[j], cpe->common_window);
}
start_ch += chans;
}
frame_bits = put_bits_count(&s->pb); frame_bits = put_bits_count(&s->pb);
if (frame_bits <= 6144 * avctx->channels - 3) if (frame_bits <= 6144 * avctx->channels - 3)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment