[FFmpeg-soc] [soc]: r3326 - aac/aac.c
superdump
subversion at mplayerhq.hu
Fri Aug 15 14:34:48 CEST 2008
Author: superdump
Date: Fri Aug 15 14:34:48 2008
New Revision: 3326
Log:
Remove unnecessary else{}
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Fri Aug 15 14:34:48 2008
@@ -743,7 +743,7 @@ static int decode_tns(AACContext * ac, T
tns->order[w][filt], tns_max_order);
tns->order[w][filt] = 0;
return -1;
- } else {
+ }
tns->direction[w][filt] = get_bits1(gb);
coef_compress = get_bits1(gb);
coef_len = coef_res - coef_compress;
@@ -751,7 +751,6 @@ static int decode_tns(AACContext * ac, T
for (i = 0; i < tns->order[w][filt]; i++)
tns->coef[w][filt][i] = get_bits(gb, coef_len);
- }
}
}
return 0;
More information about the FFmpeg-soc
mailing list