Displaying 9 results from an estimated 9 matches for "normalize_scaledown".
2008 Jan 18
1
Shift count warning messages
...y:
"kiss_fft.c", line 142: warning: shift count is too large
I've noticed this on the echo canceller and the preprocessor. all
pretty much related to these two lines of code:
kiss_fft
C_MUL4(scratch[0],Fout[m] , *tw1 );
mdf.c
st->wtmp2[i] = EXTRACT16(PSHR32(st->W[j*N+i],NORMALIZE_SCALEDOWN+16));
Is there some kind of switch I was supposed to throw to not get these
messages? if not-are they hurting anything?
-Mike
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/speex-dev/attachments/20080118/09f445e9/attachment.html
2008 Feb 13
1
Fixed-point scaling of mdf impulse response
...+ impulse_scale/libspeex/mdf.c 2008-02-13 22:47:44.000000000 +0100
@@ -1180,13 +1180,13 @@
{
#ifdef FIXED_POINT
for (i=0;i<N;i++)
- st->wtmp2[i] = EXTRACT16(PSHR32(st->W[j*N+i],16));
+ st->wtmp2[i] = EXTRACT16(PSHR32(st->W[j*N+i],16+NORMALIZE_SCALEDOWN));
spx_ifft(st->fft_table, st->wtmp2, st->wtmp);
#else
spx_ifft(st->fft_table, &st->W[j*N], st->wtmp);
#endif
for(i=0;i<n;i++)
- filt[j*n+i] = PSHR32(MULT16_16(32767,st->wtmp[i]), WEIGHT_SHIFT);
+ filt[...
2008 Jan 22
2
Shift count warning messages
...t count is too large
>
>
> I've noticed this on the echo canceller and the preprocessor. all
> pretty much related to these two lines of code:
>
> kiss_fft
> C_MUL4(scratch[0],Fout[m] , *tw1 );
>
> mdf.c
> st->wtmp2[i] = EXTRACT16(PSHR32(st->W[j*N+i],NORMALIZE_SCALEDOWN+16));
>
> Is there some kind of switch I was supposed to throw to not get these
> messages? if not-are they hurting anything?
>
> -Mike
>
>
>
> ------------------------------------------------------------------------
>
> _____________________________________...
2008 Jan 22
2
Shift count warning messages
...;
>>
>> I've noticed this on the echo canceller and the preprocessor. all
>> pretty much related to these two lines of code:
>>
>> kiss_fft C_MUL4(scratch[0],Fout[m] , *tw1 );
>>
>> mdf.c st->wtmp2[i] =
>> EXTRACT16(PSHR32(st->W[j*N+i],NORMALIZE_SCALEDOWN+16));
>>
>> Is there some kind of switch I was supposed to throw to not get
>> these messages? if not-are they hurting anything?
>>
>> -Mike
>>
>>
>>
>> ------------------------------------------------------------------------
>>
>...
2008 Jan 23
2
Shift count warning messages
...n the echo canceller and the preprocessor. all
>>>> pretty much related to these two lines of code:
>>>>
>>>> kiss_fft C_MUL4(scratch[0],Fout[m] , *tw1 );
>>>>
>>>> mdf.c st->wtmp2[i] =
>>>> EXTRACT16(PSHR32(st->W[j*N+i],NORMALIZE_SCALEDOWN+16));
>>>>
>>>> Is there some kind of switch I was supposed to throw to not get
>>>> these messages? if not-are they hurting anything?
>>>>
>>>> -Mike
>>>>
>>>>
>>>>
>>>> --------------------...
2008 Jan 22
0
Shift count warning messages
...>
>
> I've noticed this on the echo canceller and the preprocessor. all
> pretty much related to these two lines of code:
>
> kiss_fft
> C_MUL4(scratch[0],Fout[m] , *tw1 );
>
> mdf.c
> st->wtmp2[i] = EXTRACT16(PSHR32(st->W[j*N+i],NORMALIZE_SCALEDOWN+16));
>
> Is there some kind of switch I was supposed to throw to not get these
> messages? if not-are they hurting anything?
>
> -Mike
>
>
>
> ------------------------------------------------------------------------
>
> _______________...
2008 Jan 26
1
Shift count warning messages
...>>>>>> pretty much related to these two lines of code:
>>>>>>
>>>>>> kiss_fft C_MUL4(scratch[0],Fout[m] , *tw1 );
>>>>>>
>>>>>> mdf.c st->wtmp2[i] =
>>>>>> EXTRACT16(PSHR32(st->W[j*N+i],NORMALIZE_SCALEDOWN+16));
>>>>>>
>>>>>> Is there some kind of switch I was supposed to throw to not get
>>>>>> these messages? if not-are they hurting anything?
>>>>>>
>>>>>> -Mike
>>>>>>
>>>>>>...
2008 Jan 23
0
Shift count warning messages
...I've noticed this on the echo canceller and the preprocessor. all
>>> pretty much related to these two lines of code:
>>>
>>> kiss_fft C_MUL4(scratch[0],Fout[m] , *tw1 );
>>>
>>> mdf.c st->wtmp2[i] =
>>> EXTRACT16(PSHR32(st->W[j*N+i],NORMALIZE_SCALEDOWN+16));
>>>
>>> Is there some kind of switch I was supposed to throw to not get
>>> these messages? if not-are they hurting anything?
>>>
>>> -Mike
>>>
>>>
>>>
>>> --------------------------------------------------------...
2008 Jan 25
0
Shift count warning messages
...the preprocessor. all
>>>>> pretty much related to these two lines of code:
>>>>>
>>>>> kiss_fft C_MUL4(scratch[0],Fout[m] , *tw1 );
>>>>>
>>>>> mdf.c st->wtmp2[i] =
>>>>> EXTRACT16(PSHR32(st->W[j*N+i],NORMALIZE_SCALEDOWN+16));
>>>>>
>>>>> Is there some kind of switch I was supposed to throw to not get
>>>>> these messages? if not-are they hurting anything?
>>>>>
>>>>> -Mike
>>>>>
>>>>>
>>>>>
>&...