diff options
author | Robert Swain <robert.swain@gmail.com> | 2008-09-12 14:33:35 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2008-09-12 14:33:35 +0000 |
commit | 35445d29f546051549e9867460e6ea5a3838ebef (patch) | |
tree | 4d75045a4fe8a8c927c6785c619b1f222b5969b0 /libavcodec/aac.c | |
parent | 516736477799ce406913e0165413c69c3019e96b (diff) | |
download | ffmpeg-35445d29f546051549e9867460e6ea5a3838ebef.tar.gz |
Reindent after last commit
Originally committed as revision 15304 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.c')
-rw-r--r-- | libavcodec/aac.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index 18c2cbc6d9..b924e7bd51 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -630,13 +630,13 @@ static int decode_tns(AACContext * ac, TemporalNoiseShaping * tns, 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)]; } } } |