# HG changeset patch # User superdump # Date 1221230015 0 # Node ID a6afd0f2a84992f277bd5057905af7bee1f3b2a7 # Parent 77030651ddd0f77eee5c4ddd434a75ebea574c4e Reindent after last commit diff -r 77030651ddd0 -r a6afd0f2a849 aac.c --- a/aac.c Fri Sep 12 14:32:49 2008 +0000 +++ b/aac.c Fri Sep 12 14:33:35 2008 +0000 @@ -630,13 +630,13 @@ return -1; } if (tns->order[w][filt]) { - tns->direction[w][filt] = get_bits1(gb); - coef_compress = get_bits1(gb); - coef_len = coef_res + 3 - coef_compress; - tmp2_idx = 2*coef_compress + coef_res; + tns->direction[w][filt] = get_bits1(gb); + coef_compress = get_bits1(gb); + coef_len = coef_res + 3 - coef_compress; + tmp2_idx = 2*coef_compress + coef_res; - for (i = 0; i < tns->order[w][filt]; i++) - tns->coef[w][filt][i] = tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)]; + for (i = 0; i < tns->order[w][filt]; i++) + tns->coef[w][filt][i] = tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)]; } } }