# HG changeset patch # User michael # Date 1219354263 0 # Node ID 4bcced60f59697c546784d76a910dc88202638a1 # Parent b9a51c307ea74705f7a28d57fdaf7459cd832630 Remove some irrelevant comments. diff -r b9a51c307ea7 -r 4bcced60f596 acelp_filters.c --- a/acelp_filters.c Thu Aug 21 13:35:23 2008 +0000 +++ b/acelp_filters.c Thu Aug 21 21:31:03 2008 +0000 @@ -93,10 +93,7 @@ /* Since there are few pulses over an entire subframe (i.e. almost all fc_in[i] are zero) it is faster to swap two loops and process - non-zero samples only. In the case of G.729D the buffer contains - two non-zero samples before the call to ff_acelp_enhance_harmonics - and, due to pitch_delay being bounded by [20; 143], a maximum - of four non-zero samples for a total of 40 after the call. */ + non-zero samples only. */ for(i=0; i> 12) + in[n]; - /* Check for overflow */ if(sum + 0x8000 > 0xFFFFU) { if(stop_on_overflow) @@ -172,9 +168,6 @@ tmp += MULL(hpf_f[1], -7667); /* (13.13) = (13.13) * (0.13) */ tmp += 7699 * (in[i] - 2*in[i-1] + in[i-2]); /* (14.13) = (0.13) * (14.0) */ - /* Multiplication by 2 with rounding can cause short type - overflow, thus clipping is required. */ - out[i] = av_clip_int16((tmp + 0x800) >> 12); /* (15.0) = 2 * (13.13) = (14.13) */ hpf_f[1] = hpf_f[0];