You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
akode/akode/plugins/mpc_decoder/mppdec/requant.h

15 lines
403 B

#ifndef _requant_h_
#define _requant_h_
#include "mpc_dec.h"
/* C O N S T A N T S */
extern const unsigned int Res_bit [18]; // bits per sample for chosen quantizer
extern const MPC_SAMPLE_FORMAT __Cc [1 + 18]; // coefficients for requantization
extern const int __Dc [1 + 18]; // offset for requantization
#define Cc (__Cc + 1)
#define Dc (__Dc + 1)
#endif