<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">r479 | r2d | 2012-03-30 21:03:53 +0100 (Fri, 30 Mar 2012) | 1 line
Changed paths:
   M /libmpc/trunk/libmpcdec/requant.h

add extern keyword to global variable declaration (don't know it worked without ... thanks Dmitry)
------------------------------------------------------------------------
Index: libmpcdec/requant.h
===================================================================
diff --git a/libmpcdec/requant.h b/libmpc/libmpcdec/requant.h
--- a/libmpcdec/requant.h	(revision 478)
+++ b/libmpcdec/requant.h	(revision 479)
@@ -47,9 +47,9 @@
 
 
 /* C O N S T A N T S */
-const mpc_uint8_t      Res_bit [18];     ///&lt; Bits per sample for chosen quantizer
-const MPC_SAMPLE_FORMAT __Cc    [1 + 18]; ///&lt; Requantization coefficients
-const mpc_int16_t       __Dc    [1 + 18]; ///&lt; Requantization offset
+extern const mpc_uint8_t      Res_bit [18];     ///&lt; Bits per sample for chosen quantizer
+extern const MPC_SAMPLE_FORMAT __Cc    [1 + 18]; ///&lt; Requantization coefficients
+extern const mpc_int16_t       __Dc    [1 + 18]; ///&lt; Requantization offset
 
 #define Cc (__Cc + 1)
 #define Dc (__Dc + 1)
</pre></body></html>