Changeset 359 for libmpc/trunk/libmpcenc
- Timestamp:
- 10/02/07 12:20:18 (18 years ago)
- Location:
- libmpc/trunk/libmpcenc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/libmpcenc/encode_sv7.c
r317 r359 301 301 for ( n = 0; n < MaxBand; n++ ) { 302 302 int Res = Res_L[n]; 303 const int * q = e->Q[n].L;303 const mpc_int16_t * q = e->Q[n].L; 304 304 static const unsigned int thres[] = {0, 0, 3, 7, 9, 1, 3, 4, 8}; 305 305 static const int HuffQ2_var[5*5*5] = -
libmpc/trunk/libmpcenc/quant.c
r221 r359 243 243 // Linear quantizer for a subband 244 244 void 245 QuantizeSubband ( unsigned int* qu_output, const float* input, const int res, float* errors, const int maxNsOrder )245 QuantizeSubband ( mpc_int16_t* qu_output, const float* input, const int res, float* errors, const int maxNsOrder ) 246 246 { 247 247 int n, quant; … … 281 281 // NoiseShaper for a subband 282 282 void 283 QuantizeSubbandWithNoiseShaping ( unsigned int* qu_output, const float* input, const int res, float* errors, const float* FIR )283 QuantizeSubbandWithNoiseShaping ( mpc_int16_t* qu_output, const float* input, const int res, float* errors, const float* FIR ) 284 284 { 285 285 float signal;
Note: See TracChangeset
for help on using the changeset viewer.