1
0
Fork 0
forked from len0rd/rockbox

Removed non-active seek mechanism from musepack library, small other cleanups.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17446 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2008-05-10 20:33:28 +00:00
parent 66010b9f30
commit 14d45c9d17
6 changed files with 125 additions and 203 deletions

View file

@ -41,9 +41,15 @@
#include "musepack.h"
/* C O N S T A N T S */
extern const mpc_uint32_t Res_bit [18]; // bits per sample for chosen quantizer
extern const MPC_SAMPLE_FORMAT __Cc [1 + 18]; // coefficients for requantization
extern const mpc_int32_t __Dc [1 + 18]; // offset for requantization
extern const mpc_uint32_t Res_bit[18]; // bits per sample for chosen quantizer
extern const MPC_SAMPLE_FORMAT __Cc[1 + 18]; // coefficients for requantization
extern const mpc_int32_t __Dc[1 + 18]; // offset for requantization
extern const mpc_int32_t idx30[27]; // 1st value of bundled 3-step quantizer
extern const mpc_int32_t idx31[27]; // 2nd value of bundled 3-step quantizer
extern const mpc_int32_t idx32[27]; // 3rd value of bundled 3-step quantizer
extern const mpc_int32_t idx50[25]; // 1st value of bundled 5-step quantizer
extern const mpc_int32_t idx51[25]; // 2nd value of bundled 5-step quantizer
#define Cc (__Cc + 1)
#define Dc (__Dc + 1)