summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2011-03-19 10:14:12 +0000
committerNils Wallménius <nils@rockbox.org>2011-03-19 10:14:12 +0000
commit5aaabbfd127321f68931c155a8a481a8107531b2 (patch)
tree72744ff02c8039db29508fad241ea6a332a5df5e /apps/codecs
parent528e1850bf081298c010815c1788cf36585f2a0a (diff)
downloadrockbox-5aaabbfd127321f68931c155a8a481a8107531b2.tar.gz
rockbox-5aaabbfd127321f68931c155a8a481a8107531b2.zip
FS#12014 by Huan Zhang fixing some link errors with a recent mips toolchain.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29615 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/libmusepack/requant.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libmusepack/requant.h b/apps/codecs/libmusepack/requant.h
index 8458d4d0fa..908fda30eb 100644
--- a/apps/codecs/libmusepack/requant.h
+++ b/apps/codecs/libmusepack/requant.h
@@ -47,9 +47,9 @@ extern "C" {
47 47
48 48
49/* C O N S T A N T S */ 49/* C O N S T A N T S */
50const mpc_uint8_t Res_bit [18]; ///< Bits per sample for chosen quantizer 50extern const mpc_uint8_t Res_bit [18]; ///< Bits per sample for chosen quantizer
51const MPC_SAMPLE_FORMAT __Cc [1 + 18]; ///< Requantization coefficients 51extern const MPC_SAMPLE_FORMAT __Cc [1 + 18]; ///< Requantization coefficients
52const mpc_int16_t __Dc [1 + 18]; ///< Requantization offset 52extern const mpc_int16_t __Dc [1 + 18]; ///< Requantization offset
53 53
54#define Cc (__Cc + 1) 54#define Cc (__Cc + 1)
55#define Dc (__Dc + 1) 55#define Dc (__Dc + 1)