summaryrefslogtreecommitdiff
path: root/apps/codecs/libmusepack/requant.h
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2008-05-10 20:33:28 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2008-05-10 20:33:28 +0000
commit14d45c9d17385bbedb4a7f62baeedfc7b98221d4 (patch)
treefe1de44f84b4868cbc89c97ceadb3ed3031e8fcd /apps/codecs/libmusepack/requant.h
parent66010b9f306cc4cdb98ec10ba3e5f45476e76690 (diff)
downloadrockbox-14d45c9d17385bbedb4a7f62baeedfc7b98221d4.tar.gz
rockbox-14d45c9d17385bbedb4a7f62baeedfc7b98221d4.zip
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
Diffstat (limited to 'apps/codecs/libmusepack/requant.h')
-rw-r--r--apps/codecs/libmusepack/requant.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/apps/codecs/libmusepack/requant.h b/apps/codecs/libmusepack/requant.h
index e70dce7085..1a21c21143 100644
--- a/apps/codecs/libmusepack/requant.h
+++ b/apps/codecs/libmusepack/requant.h
@@ -41,9 +41,15 @@
41#include "musepack.h" 41#include "musepack.h"
42 42
43/* C O N S T A N T S */ 43/* C O N S T A N T S */
44extern const mpc_uint32_t Res_bit [18]; // bits per sample for chosen quantizer 44extern const mpc_uint32_t Res_bit[18]; // bits per sample for chosen quantizer
45extern const MPC_SAMPLE_FORMAT __Cc [1 + 18]; // coefficients for requantization 45extern const MPC_SAMPLE_FORMAT __Cc[1 + 18]; // coefficients for requantization
46extern const mpc_int32_t __Dc [1 + 18]; // offset for requantization 46extern const mpc_int32_t __Dc[1 + 18]; // offset for requantization
47extern const mpc_int32_t idx30[27]; // 1st value of bundled 3-step quantizer
48extern const mpc_int32_t idx31[27]; // 2nd value of bundled 3-step quantizer
49extern const mpc_int32_t idx32[27]; // 3rd value of bundled 3-step quantizer
50extern const mpc_int32_t idx50[25]; // 1st value of bundled 5-step quantizer
51extern const mpc_int32_t idx51[25]; // 2nd value of bundled 5-step quantizer
52
47 53
48#define Cc (__Cc + 1) 54#define Cc (__Cc + 1)
49#define Dc (__Dc + 1) 55#define Dc (__Dc + 1)