Changeset 359 for libmpc/trunk/libmpcenc


Ignore:
Timestamp:
10/02/07 12:20:18 (18 years ago)
Author:
r2d
Message:

changed mpc_quantizer size

Location:
libmpc/trunk/libmpcenc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/libmpcenc/encode_sv7.c

    r317 r359  
    301301        for ( n = 0; n < MaxBand; n++ ) {
    302302                int Res = Res_L[n];
    303                 const int * q = e->Q[n].L;
     303                const mpc_int16_t * q = e->Q[n].L;
    304304                static const unsigned int thres[] = {0, 0, 3, 7, 9, 1, 3, 4, 8};
    305305                static const int HuffQ2_var[5*5*5] =
  • libmpc/trunk/libmpcenc/quant.c

    r221 r359  
    243243// Linear quantizer for a subband
    244244void
    245 QuantizeSubband ( unsigned int* qu_output, const float* input, const int res, float* errors, const int maxNsOrder )
     245QuantizeSubband ( mpc_int16_t* qu_output, const float* input, const int res, float* errors, const int maxNsOrder )
    246246{
    247247        int    n, quant;
     
    281281// NoiseShaper for a subband
    282282void
    283 QuantizeSubbandWithNoiseShaping ( unsigned int* qu_output, const float* input, const int res, float* errors, const float* FIR )
     283QuantizeSubbandWithNoiseShaping ( mpc_int16_t* qu_output, const float* input, const int res, float* errors, const float* FIR )
    284284{
    285285    float  signal;
Note: See TracChangeset for help on using the changeset viewer.