cannam@85
|
1
|
cannam@85
|
2 libmad - MPEG audio decoder library
|
cannam@85
|
3 Copyright (C) 2000-2004 Underbit Technologies, Inc.
|
cannam@85
|
4
|
cannam@85
|
5 $Id: README,v 1.4 2004/01/23 09:41:32 rob Exp $
|
cannam@85
|
6
|
cannam@85
|
7 ===============================================================================
|
cannam@85
|
8
|
cannam@85
|
9 INTRODUCTION
|
cannam@85
|
10
|
cannam@85
|
11 MAD (libmad) is a high-quality MPEG audio decoder. It currently supports
|
cannam@85
|
12 MPEG-1 and the MPEG-2 extension to Lower Sampling Frequencies, as well as
|
cannam@85
|
13 the so-called MPEG 2.5 format. All three audio layers (Layer I, Layer II,
|
cannam@85
|
14 and Layer III a.k.a. MP3) are fully implemented.
|
cannam@85
|
15
|
cannam@85
|
16 MAD does not yet support MPEG-2 multichannel audio (although it should be
|
cannam@85
|
17 backward compatible with such streams) nor does it currently support AAC.
|
cannam@85
|
18
|
cannam@85
|
19 MAD has the following special features:
|
cannam@85
|
20
|
cannam@85
|
21 - 24-bit PCM output
|
cannam@85
|
22 - 100% fixed-point (integer) computation
|
cannam@85
|
23 - completely new implementation based on the ISO/IEC standards
|
cannam@85
|
24 - distributed under the terms of the GNU General Public License (GPL)
|
cannam@85
|
25
|
cannam@85
|
26 Because MAD provides full 24-bit PCM output, applications using MAD are
|
cannam@85
|
27 able to produce high quality audio. Even when the output device supports
|
cannam@85
|
28 only 16-bit PCM, applications can use the extra resolution to increase the
|
cannam@85
|
29 audible dynamic range through the use of dithering or noise shaping.
|
cannam@85
|
30
|
cannam@85
|
31 Because MAD uses integer computation rather than floating point, it is
|
cannam@85
|
32 well suited for architectures without a floating point unit. All
|
cannam@85
|
33 calculations are performed with a 32-bit fixed-point integer
|
cannam@85
|
34 representation.
|
cannam@85
|
35
|
cannam@85
|
36 Because MAD is a new implementation of the ISO/IEC standards, it is
|
cannam@85
|
37 unencumbered by the errors of other implementations. MAD is NOT a
|
cannam@85
|
38 derivation of the ISO reference source or any other code. Considerable
|
cannam@85
|
39 effort has been expended to ensure a correct implementation, even in cases
|
cannam@85
|
40 where the standards are ambiguous or misleading.
|
cannam@85
|
41
|
cannam@85
|
42 Because MAD is distributed under the terms of the GPL, its redistribution
|
cannam@85
|
43 is not generally restricted, so long as the terms of the GPL are followed.
|
cannam@85
|
44 This means MAD can be incorporated into other software as long as that
|
cannam@85
|
45 software is also distributed under the GPL. (Should this be undesirable,
|
cannam@85
|
46 alternate arrangements may be possible by contacting Underbit.)
|
cannam@85
|
47
|
cannam@85
|
48 ===============================================================================
|
cannam@85
|
49
|
cannam@85
|
50 ABOUT THE CODE
|
cannam@85
|
51
|
cannam@85
|
52 The code is optimized and performs very well, although specific
|
cannam@85
|
53 improvements can still be made. The output from the decoder library
|
cannam@85
|
54 consists of 32-bit signed linear fixed-point values that can be easily
|
cannam@85
|
55 scaled for any size PCM output, up to 24 bits per sample.
|
cannam@85
|
56
|
cannam@85
|
57 The API for libmad can be found in the `mad.h' header file. Note that this
|
cannam@85
|
58 file is automatically generated, and will not exist until after you have
|
cannam@85
|
59 built the library.
|
cannam@85
|
60
|
cannam@85
|
61 There are two APIs available, one high-level, and the other low-level.
|
cannam@85
|
62 With the low-level API, each step of the decoding process must be handled
|
cannam@85
|
63 explicitly, offering the greatest amount of control. With the high-level
|
cannam@85
|
64 API, after callbacks are configured, a single routine will decode an
|
cannam@85
|
65 entire bitstream.
|
cannam@85
|
66
|
cannam@85
|
67 The high-level API may either be used synchronously or asynchronously. If
|
cannam@85
|
68 used asynchronously, decoding will occur in a separate process.
|
cannam@85
|
69 Communication is possible with the decoding process by passing control
|
cannam@85
|
70 messages.
|
cannam@85
|
71
|
cannam@85
|
72 The file `minimad.c' contains an example usage of the libmad API that
|
cannam@85
|
73 shows only the bare minimum required to implement a useful decoder. It
|
cannam@85
|
74 expects a regular file to be redirected to standard input, and it sends
|
cannam@85
|
75 decoded 16-bit signed little-endian PCM samples to standard output. If a
|
cannam@85
|
76 decoding error occurs, it is reported to standard error and decoding
|
cannam@85
|
77 continues. Note that the scale() routine in this code is only provided as
|
cannam@85
|
78 an example; it rounds MAD's high-resolution samples down to 16 bits, but
|
cannam@85
|
79 does not perform any dithering or noise shaping. It is therefore not
|
cannam@85
|
80 recommended to use this routine as-is in your own code if sound quality is
|
cannam@85
|
81 important.
|
cannam@85
|
82
|
cannam@85
|
83 Integer Performance
|
cannam@85
|
84
|
cannam@85
|
85 To get the best possible performance, it is recommended that an assembly
|
cannam@85
|
86 version of the fixed-point multiply and related routines be selected.
|
cannam@85
|
87 Several such assembly routines have been written for various CPUs.
|
cannam@85
|
88
|
cannam@85
|
89 If an assembly version is not available, a fast approximation version will
|
cannam@85
|
90 be used. This will result in reduced accuracy of the decoder.
|
cannam@85
|
91
|
cannam@85
|
92 Alternatively, if 64-bit integers are supported as a datatype by the
|
cannam@85
|
93 compiler, another version can be used that is much more accurate.
|
cannam@85
|
94 However, using an assembly version is generally much faster and just as
|
cannam@85
|
95 accurate.
|
cannam@85
|
96
|
cannam@85
|
97 More information can be gathered from the `fixed.h' header file.
|
cannam@85
|
98
|
cannam@85
|
99 MAD's CPU-intensive subband synthesis routine can be further optimized at
|
cannam@85
|
100 the expense of a slight loss in output accuracy due to a modified method
|
cannam@85
|
101 for fixed-point multiplication with a small windowing constant. While this
|
cannam@85
|
102 is helpful for performance and the output accuracy loss is generally
|
cannam@85
|
103 undetectable, it is disabled by default and must be explicitly enabled.
|
cannam@85
|
104
|
cannam@85
|
105 Under some architectures, other special optimizations may also be
|
cannam@85
|
106 available.
|
cannam@85
|
107
|
cannam@85
|
108 Audio Quality
|
cannam@85
|
109
|
cannam@85
|
110 The output from MAD has been found to satisfy the ISO/IEC 11172-4
|
cannam@85
|
111 computational accuracy requirements for compliance. In most
|
cannam@85
|
112 configurations, MAD is a Full Layer III ISO/IEC 11172-3 audio decoder as
|
cannam@85
|
113 defined by the standard.
|
cannam@85
|
114
|
cannam@85
|
115 When the approximation version of the fixed-point multiply is used, MAD is
|
cannam@85
|
116 a limited accuracy ISO/IEC 11172-3 audio decoder as defined by the
|
cannam@85
|
117 standard.
|
cannam@85
|
118
|
cannam@85
|
119 MAD can alternatively be configured to produce output with less or more
|
cannam@85
|
120 accuracy than the default, as a tradeoff with performance.
|
cannam@85
|
121
|
cannam@85
|
122 MAD produces output samples with a precision greater than 24 bits. Because
|
cannam@85
|
123 most output formats use fewer bits, typically 16, it is recommended that a
|
cannam@85
|
124 dithering algorithm be used (rather than rounding or truncating) to obtain
|
cannam@85
|
125 the highest quality audio. However, dithering may unfavorably affect an
|
cannam@85
|
126 analytic examination of the output (such as compliance testing); you may
|
cannam@85
|
127 therefore wish to use rounding in this case instead.
|
cannam@85
|
128
|
cannam@85
|
129 Portability Issues
|
cannam@85
|
130
|
cannam@85
|
131 GCC is preferred to compile the code, but other compilers may also work.
|
cannam@85
|
132 The assembly code in `fixed.h' depends on the inline assembly features of
|
cannam@85
|
133 your compiler. If you're not using GCC or MSVC++, you can either write
|
cannam@85
|
134 your own assembly macros or use the default (low quality output) version.
|
cannam@85
|
135
|
cannam@85
|
136 The union initialization of `huffman.c' may not be portable to all
|
cannam@85
|
137 platforms when GCC is not used.
|
cannam@85
|
138
|
cannam@85
|
139 The code should not be sensitive to word sizes or byte ordering, however
|
cannam@85
|
140 it does assume A % B has the same sign as A.
|
cannam@85
|
141
|
cannam@85
|
142 ===============================================================================
|
cannam@85
|
143
|
cannam@85
|
144 BUILDING AND INSTALLING
|
cannam@85
|
145
|
cannam@85
|
146 Windows Platforms
|
cannam@85
|
147
|
cannam@85
|
148 MAD can be built under Windows using either MSVC++ or Cygwin. A MSVC++
|
cannam@85
|
149 project file can be found under the `msvc++' subdirectory.
|
cannam@85
|
150
|
cannam@85
|
151 To build libmad using Cygwin, you will first need to install the Cygwin
|
cannam@85
|
152 tools:
|
cannam@85
|
153
|
cannam@85
|
154 http://www.cygwin.com/
|
cannam@85
|
155
|
cannam@85
|
156 You may then proceed with the following POSIX instructions within the
|
cannam@85
|
157 Cygwin shell.
|
cannam@85
|
158
|
cannam@85
|
159 Note that by default Cygwin will build a library that depends on the
|
cannam@85
|
160 Cygwin DLL. You can use MinGW to build a library that does not depend on
|
cannam@85
|
161 the Cygwin DLL. To do so, give the option --host=mingw32 to `configure'.
|
cannam@85
|
162
|
cannam@85
|
163 POSIX Platforms (including Cygwin)
|
cannam@85
|
164
|
cannam@85
|
165 The code is distributed with a `configure' script that will generate for
|
cannam@85
|
166 you a `Makefile' and a `config.h' for your platform. See the file
|
cannam@85
|
167 `INSTALL' for generic instructions.
|
cannam@85
|
168
|
cannam@85
|
169 The specific options you may want to give `configure' are:
|
cannam@85
|
170
|
cannam@85
|
171 --enable-speed optimize for speed over accuracy
|
cannam@85
|
172
|
cannam@85
|
173 --enable-accuracy optimize for accuracy over speed
|
cannam@85
|
174
|
cannam@85
|
175 --disable-debugging do not compile with debugging support, and
|
cannam@85
|
176 use more optimizations
|
cannam@85
|
177
|
cannam@85
|
178 --disable-shared do not build a shared library
|
cannam@85
|
179
|
cannam@85
|
180 Note that you need not specify one of --enable-speed or --enable-accuracy;
|
cannam@85
|
181 in its default configuration, MAD is optimized for both. You should only
|
cannam@85
|
182 use one of these options if you wish to compromise speed or accuracy for
|
cannam@85
|
183 the other.
|
cannam@85
|
184
|
cannam@85
|
185 By default the package will build a shared library if possible for your
|
cannam@85
|
186 platform. If you want only a static library, use --disable-shared.
|
cannam@85
|
187
|
cannam@85
|
188 It is not normally necessary to use the following options, but you may
|
cannam@85
|
189 fine-tune the configuration with them if desired:
|
cannam@85
|
190
|
cannam@85
|
191 --enable-fpm=ARCH use the ARCH-specific version of the
|
cannam@85
|
192 fixed-point math assembly routines
|
cannam@85
|
193 (current options are: intel, arm, mips,
|
cannam@85
|
194 sparc, ppc; also allowed are: 64bit, approx)
|
cannam@85
|
195
|
cannam@85
|
196 --enable-sso use the subband synthesis optimization,
|
cannam@85
|
197 with reduced accuracy
|
cannam@85
|
198
|
cannam@85
|
199 --disable-aso do not use certain architecture-specific
|
cannam@85
|
200 optimizations
|
cannam@85
|
201
|
cannam@85
|
202 By default an appropriate fixed-point assembly routine will be selected
|
cannam@85
|
203 for the configured host type, if it can be determined. Thus if you are
|
cannam@85
|
204 cross-compiling for another architecture, you should be sure either to
|
cannam@85
|
205 give `configure' a host type argument (--host) or to use an explicit
|
cannam@85
|
206 --enable-fpm option.
|
cannam@85
|
207
|
cannam@85
|
208 If an appropriate assembly routine cannot be determined, the default
|
cannam@85
|
209 approximation version will be used. In this case, use of an alternate
|
cannam@85
|
210 --enable-fpm is highly recommended.
|
cannam@85
|
211
|
cannam@85
|
212 Experimenting and Developing
|
cannam@85
|
213
|
cannam@85
|
214 Further options for `configure' that may be useful to developers and
|
cannam@85
|
215 experimenters are:
|
cannam@85
|
216
|
cannam@85
|
217 --enable-debugging enable diagnostic debugging support and
|
cannam@85
|
218 debugging symbols
|
cannam@85
|
219
|
cannam@85
|
220 --enable-profiling generate `gprof' profiling code
|
cannam@85
|
221
|
cannam@85
|
222 --enable-experimental enable code using the EXPERIMENTAL
|
cannam@85
|
223 preprocessor define
|
cannam@85
|
224
|
cannam@85
|
225 ===============================================================================
|
cannam@85
|
226
|
cannam@85
|
227 COPYRIGHT
|
cannam@85
|
228
|
cannam@85
|
229 Please read the `COPYRIGHT' file for copyright and warranty information.
|
cannam@85
|
230 Also, the file `COPYING' contains the full text of the GNU GPL.
|
cannam@85
|
231
|
cannam@85
|
232 Send inquiries, comments, bug reports, suggestions, patches, etc. to:
|
cannam@85
|
233
|
cannam@85
|
234 Underbit Technologies, Inc. <support@underbit.com>
|
cannam@85
|
235
|
cannam@85
|
236 See also the MAD home page on the Web:
|
cannam@85
|
237
|
cannam@85
|
238 http://www.underbit.com/products/mad/
|
cannam@85
|
239
|
cannam@85
|
240 ===============================================================================
|
cannam@85
|
241
|