Changeset 359 for libmpc/trunk/libmpcdec/mpc_decoder.c
- Timestamp:
- 10/02/07 12:20:18 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/libmpcdec/mpc_decoder.c
r314 r359 205 205 MPC_SAMPLE_FORMAT* YL; 206 206 MPC_SAMPLE_FORMAT* YR; 207 mpc_int 32_t* L;208 mpc_int 32_t* R;207 mpc_int16_t* L; 208 mpc_int16_t* R; 209 209 const mpc_int32_t Last_Band = d->max_band; 210 210 … … 453 453 /***************************** Samples ****************************/ 454 454 for ( n = 0; n < Max_used_Band; n++ ) { 455 mpc_int 32_t *q = d->Q[n].L, Res = d->Res_L[n];455 mpc_int16_t *q = d->Q[n].L, Res = d->Res_L[n]; 456 456 do { 457 457 mpc_int32_t k; … … 615 615 /***************************** Samples ****************************/ 616 616 for ( n = 0; n < Max_used_Band; n++ ) { 617 mpc_int 32_t *q = d->Q[n].L, Res = d->Res_L[n];617 mpc_int16_t *q = d->Q[n].L, Res = d->Res_L[n]; 618 618 static const unsigned int thres[] = {0, 0, 3, 0, 0, 1, 3, 4, 8}; 619 619 static const mpc_int8_t HuffQ2_var[5*5*5] =
Note: See TracChangeset
for help on using the changeset viewer.