3 --- src/AuSampleValues.cc.orig 2006-05-11 16:02:22.000000000 +0000
4 +++ src/AuSampleValues.cc
6 #include "AuSampleValues.h"
9 -const BYTE AuMuLawSampleValue::MinValue = 0 ;
10 -const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
11 +template<> const BYTE AuMuLawSampleValue::MinValue = 0 ;
12 +template<> const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
15 -const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
16 -const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
17 +template<> const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
18 +template<> const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
21 -const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
22 -const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
23 +template<> const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
24 +template<> const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
27 -const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
28 -const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;
29 +template<> const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
30 +template<> const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;