24 static void Weighting_filter
P2((e, x),
54 for (k = 0; k <= 39; k++) {
65 #define STEP( i, H ) (e[ k + i ] * (longword)H) 72 #ifdef STUPID_COMPILER 73 L_result +=
STEP( 0, -134 ) ;
74 L_result +=
STEP( 1, -374 ) ;
76 L_result +=
STEP( 3, 2054 ) ;
77 L_result +=
STEP( 4, 5741 ) ;
78 L_result +=
STEP( 5, 8192 ) ;
79 L_result +=
STEP( 6, 5741 ) ;
80 L_result +=
STEP( 7, 2054 ) ;
82 L_result +=
STEP( 9, -374 ) ;
83 L_result +=
STEP( 10, -134 ) ;
110 L_result =
SASR( L_result, 13 );
119 static void RPE_grid_selection
P3((x,xM,Mc_out),
162 #define STEP( m, i ) L_temp = SASR( x[m + 3 * i], 2 ); \ 163 L_result += L_temp * L_temp; 171 L_common_0_3 = L_result;
207 L_result = L_common_0_3;
220 for (i = 0; i <= 12; i ++) xM[i] = x[Mc + 3*i];
226 static void APCM_quantization_xmaxc_to_exp_mant
P3((
xmaxc,exp_out,mant_out),
237 if (xmaxc > 15) exp =
SASR(xmaxc, 3) - 1;
238 mant = xmaxc - (exp << 3);
246 mant = mant << 1 | 1;
252 assert( exp >= -4 && exp <= 6 );
253 assert( mant >= 0 && mant <= 7 );
259 static void APCM_quantization
P5((xM,xMc,mant_out,exp_out,xmaxc_out),
278 for (i = 0; i <= 12; i++) {
281 if (temp > xmax) xmax = temp;
288 temp =
SASR( xmax, 9 );
291 for (i = 0; i <= 5; i++) {
293 itest |= (temp <= 0);
294 temp =
SASR( temp, 1 );
297 if (itest == 0) exp++;
300 assert(exp <= 6 && exp >= 0);
303 assert(temp <= 11 && temp >= 0);
304 xmaxc = gsm_add(
SASR(xmax, temp), exp << 3 );
310 APCM_quantization_xmaxc_to_exp_mant( xmaxc, &exp, &mant );
326 assert( exp <= 4096 && exp >= -4096);
327 assert( mant >= 0 && mant <= 7 );
332 for (i = 0; i <= 12; i++) {
334 assert(temp1 >= 0 && temp1 < 16);
336 temp = xM[i] << temp1;
338 temp =
SASR(temp, 12);
352 static void APCM_inverse_quantization
P4((xMc,mant,exp,xMp),
364 word temp, temp1, temp2, temp3;
366 assert( mant >= 0 && mant <= 7 );
369 temp2 = gsm_sub( 6, exp );
370 temp3 = gsm_asl( 1, gsm_sub( temp2, 1 ));
374 assert( *xMc <= 7 && *xMc >= 0 );
377 temp = (*xMc++ << 1) - 7;
378 assert( temp <= 7 && temp >= -7 );
383 *xMp++ = gsm_asr( temp, temp2 );
389 static void RPE_grid_positioning
P3((
Mc,xMp,ep),
404 assert(0 <= Mc && Mc <= 3);
411 case 0: *ep++ = *xMp++;
414 while (++Mc < 4) *ep++ = 0;
436 void Gsm_Update_of_reconstructed_short_time_residual_signal
P3((dpp, ep, dp),
443 for (k = 0; k <= 79; k++)
444 dp[ -120 + k ] = dp[ -80 + k ];
446 for (k = 0; k <= 39; k++)
447 dp[ -40 + k ] = gsm_add( ep[k], dpp[k] );
461 word xM[13], xMp[13];
464 Weighting_filter(e, x);
465 RPE_grid_selection(x, xM, Mc);
467 APCM_quantization( xM, xMc, &mant, &exp, xmaxc);
468 APCM_inverse_quantization( xMc, mant, exp, xMp);
470 RPE_grid_positioning( *Mc, xMp, e );
474 void Gsm_RPE_Decoding
P5((
S, xmaxcr, Mcr, xMcr, erp),
486 APCM_quantization_xmaxc_to_exp_mant( xmaxcr, &exp, &mant );
487 APCM_inverse_quantization( xMcr, mant, exp, xMp );
488 RPE_grid_positioning( Mcr, xMp, erp );
static word GSM_ADD(longword a, longword b)
static void Weighting_filter P2((e, x), register word *e, word *x)
static void APCM_quantization P5((xM, xMc, mant_out, exp_out, xmaxc_out), word *xM, word *xMc, word *mant_out, word *exp_out, word *xmaxc_out)
static void APCM_inverse_quantization P4((xMc, mant, exp, xMp), register word *xMc, word mant, word exp, register word *xMp)
static void RPE_grid_selection P3((x, xM, Mc_out), word *x, word *xM, word *Mc_out)