Author: superdump
Date: Fri Aug 15 13:38:36 2008
New Revision: 3324
Log:
Remove unnecessary FFMIN() as tns->order[][] is already validated when decoding
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Fri Aug 15 13:38:36 2008
@@ -1276,7 +1276,7 @@ static void apply_tns(float coef[1024],
for (filt = 0; filt < tns->n_filt[w]; filt++) {
top = bottom;
bottom = FFMAX( 0, top - tns->length[w][filt]);
- order = FFMIN(tns->order[w][filt], TNS_MAX_ORDER);
+ order = tns->order[w][filt];
if (order == 0)
continue;
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc