2 * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
3 * Universitaet Berlin. See the accompanying file "COPYRIGHT" for
4 * details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
17 /* 4.2.0 .. 4.2.3 PREPROCESSING SECTION
19 * After A-law to linear conversion (or directly from the
20 * Ato D converter) the following scaling is assumed for
21 * input to the RPE-LTP algorithm:
23 * in: 0.1.....................12
24 * S.v.v.v.v.v.v.v.v.v.v.v.v.*.*.*
26 * Where S is the sign bit, v a valid bit, and * a "don't care" bit.
27 * The original signal is called sop[..]
29 * out: 0.1................... 12
30 * S.S.v.v.v.v.v.v.v.v.v.v.v.v.0.0
34 void Gsm_Preprocess P3((S, s, so),
37 word * so ) /* [0..159] IN/OUT */
40 longword L_z2 = S->L_z2;
44 ulongword utmp; /* for L_ADD */
51 /* 4.2.1 Downscaling of the input signal
53 /* SO = SASR( *s, 3 ) << 2;*/
54 SO = SASR( *s, 1 ) & ~3;
57 assert (SO >= -0x4000); /* downscaled by */
58 assert (SO <= 0x3FFC); /* previous routine. */
61 /* 4.2.2 Offset compensation
63 * This part implements a high-pass filter and requires extended
64 * arithmetic precision for the recursive part of this filter.
65 * The input of this procedure is the array so[0...159] and the
66 * output the array sof[ 0...159 ].
68 /* Compute the non-recursive part
71 s1 = SO - z1; /* s1 = gsm_sub( *so, z1 ); */
74 assert(s1 != MIN_WORD);
76 /* SJB Remark: float might be faster than the mess that follows */
78 /* Compute the recursive part
81 /* Execution of a 31 bv 16 bits multiplication
94 msp = (word)SASR( L_z2, 15 );
95 lsp = (word)(L_z2 & 0x7fff); /* gsm_L_sub(L_z2,(msp<<15)); */
97 L_s2 += GSM_MULT_R( lsp, 32735 );
98 L_temp = (longword)msp * 32735; /* GSM_L_MULT(msp,32735) >> 1;*/
99 L_z2 = GSM_L_ADD( L_temp, L_s2 );
100 /* above does L_z2 = L_z2 * 0x7fd5/0x8000 + L_s2 */
102 L_z2 = ((long long)L_z2*32735 + 0x4000)>>15;
103 /* alternate (ansi) version of above line does slightly different rounding:
104 * L_temp = L_z2 >> 9;
105 * L_temp += L_temp >> 5;
106 * L_temp = (++L_temp) >> 1;
107 * L_z2 = L_z2 - L_temp;
109 L_z2 = GSM_L_ADD(L_z2,L_s2);
111 /* Compute sof[k] with rounding
113 L_temp = GSM_L_ADD( L_z2, 16384 );
118 msp = (word)GSM_MULT_R( mp, -28180 );
119 mp = (word)SASR( L_temp, 15 );
120 *so++ = GSM_ADD( mp, msp );