cannam@86
|
1 /* FLAC - Free Lossless Audio Codec
|
cannam@86
|
2 * Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
cannam@86
|
3 *
|
cannam@86
|
4 * This file is part the FLAC project. FLAC is comprised of several
|
cannam@86
|
5 * components distributed under difference licenses. The codec libraries
|
cannam@86
|
6 * are distributed under Xiph.Org's BSD-like license (see the file
|
cannam@86
|
7 * COPYING.Xiph in this distribution). All other programs, libraries, and
|
cannam@86
|
8 * plugins are distributed under the LGPL or GPL (see COPYING.LGPL and
|
cannam@86
|
9 * COPYING.GPL). The documentation is distributed under the Gnu FDL (see
|
cannam@86
|
10 * COPYING.FDL). Each file in the FLAC distribution contains at the top the
|
cannam@86
|
11 * terms under which it may be distributed.
|
cannam@86
|
12 *
|
cannam@86
|
13 * Since this particular file is relevant to all components of FLAC,
|
cannam@86
|
14 * it may be distributed under the Xiph.Org license, which is the least
|
cannam@86
|
15 * restrictive of those mentioned above. See the file COPYING.Xiph in this
|
cannam@86
|
16 * distribution.
|
cannam@86
|
17 */
|
cannam@86
|
18
|
cannam@86
|
19
|
cannam@86
|
20 FLAC (http://flac.sourceforge.net/) is an Open Source lossless audio
|
cannam@86
|
21 codec developed by Josh Coalson.
|
cannam@86
|
22
|
cannam@86
|
23 FLAC is comprised of
|
cannam@86
|
24 * `libFLAC', a library which implements reference encoders and
|
cannam@86
|
25 decoders for native FLAC and Ogg FLAC, and a metadata interface
|
cannam@86
|
26 * `libFLAC++', a C++ object wrapper library around libFLAC
|
cannam@86
|
27 * `flac', a command-line program for encoding and decoding files
|
cannam@86
|
28 * `metaflac', a command-line program for viewing and editing FLAC
|
cannam@86
|
29 metadata
|
cannam@86
|
30 * player plugins for XMMS and Winamp
|
cannam@86
|
31 * user and API documentation
|
cannam@86
|
32
|
cannam@86
|
33 The libraries (libFLAC, libFLAC++) are
|
cannam@86
|
34 licensed under Xiph.org's BSD-like license (see COPYING.Xiph). All other
|
cannam@86
|
35 programs and plugins are licensed under the GNU General Public License
|
cannam@86
|
36 (see COPYING.GPL). The documentation is licensed under the GNU Free
|
cannam@86
|
37 Documentation License (see COPYING.FDL).
|
cannam@86
|
38
|
cannam@86
|
39
|
cannam@86
|
40 ===============================================================================
|
cannam@86
|
41 FLAC - 1.2.1 - Contents
|
cannam@86
|
42 ===============================================================================
|
cannam@86
|
43
|
cannam@86
|
44 - Introduction
|
cannam@86
|
45 - Prerequisites
|
cannam@86
|
46 - Note to embedded developers
|
cannam@86
|
47 - Building in a GNU environment
|
cannam@86
|
48 - Building with Makefile.lite
|
cannam@86
|
49 - Building with MSVC
|
cannam@86
|
50 - Building on Mac OS X
|
cannam@86
|
51
|
cannam@86
|
52
|
cannam@86
|
53 ===============================================================================
|
cannam@86
|
54 Introduction
|
cannam@86
|
55 ===============================================================================
|
cannam@86
|
56
|
cannam@86
|
57 This is the source release for the FLAC project. See
|
cannam@86
|
58
|
cannam@86
|
59 doc/html/index.html
|
cannam@86
|
60
|
cannam@86
|
61 for full documentation.
|
cannam@86
|
62
|
cannam@86
|
63 A brief description of the directory tree:
|
cannam@86
|
64
|
cannam@86
|
65 doc/ the HTML documentation
|
cannam@86
|
66 include/ public include files for libFLAC and libFLAC++
|
cannam@86
|
67 man/ the man page for `flac'
|
cannam@86
|
68 src/ the source code and private headers
|
cannam@86
|
69 test/ the test scripts
|
cannam@86
|
70
|
cannam@86
|
71
|
cannam@86
|
72 ===============================================================================
|
cannam@86
|
73 Prerequisites
|
cannam@86
|
74 ===============================================================================
|
cannam@86
|
75
|
cannam@86
|
76 To build FLAC with support for Ogg FLAC you must have built and installed
|
cannam@86
|
77 libogg according to the specific instructions below. You must have
|
cannam@86
|
78 libogg 1.1.2 or greater, or there will be seeking problems with Ogg FLAC.
|
cannam@86
|
79
|
cannam@86
|
80 If you are building on x86 and want the assembly optimizations, you will
|
cannam@86
|
81 need to have NASM >= 0.98.30 installed according to the specific instructions
|
cannam@86
|
82 below.
|
cannam@86
|
83
|
cannam@86
|
84
|
cannam@86
|
85 ===============================================================================
|
cannam@86
|
86 Note to embedded developers
|
cannam@86
|
87 ===============================================================================
|
cannam@86
|
88
|
cannam@86
|
89 libFLAC has grown larger over time as more functionality has been
|
cannam@86
|
90 included, but much of it may be unnecessary for a particular embedded
|
cannam@86
|
91 implementation. Unused parts may be pruned by some simple editing of
|
cannam@86
|
92 configure.in and src/libFLAC/Makefile.am; the following dependency
|
cannam@86
|
93 graph shows which modules may be pruned without breaking things
|
cannam@86
|
94 further down:
|
cannam@86
|
95
|
cannam@86
|
96 metadata.h
|
cannam@86
|
97 stream_decoder.h
|
cannam@86
|
98 format.h
|
cannam@86
|
99
|
cannam@86
|
100 stream_encoder.h
|
cannam@86
|
101 stream_decoder.h
|
cannam@86
|
102 format.h
|
cannam@86
|
103
|
cannam@86
|
104 stream_decoder.h
|
cannam@86
|
105 format.h
|
cannam@86
|
106
|
cannam@86
|
107 In other words, for pure decoding applications, both the stream encoder
|
cannam@86
|
108 and metadata editing interfaces can be safely removed.
|
cannam@86
|
109
|
cannam@86
|
110 There is a section dedicated to embedded use in the libFLAC API
|
cannam@86
|
111 HTML documentation (see doc/html/api/index.html).
|
cannam@86
|
112
|
cannam@86
|
113 Also, there are several places in the libFLAC code with comments marked
|
cannam@86
|
114 with "OPT:" where a #define can be changed to enable code that might be
|
cannam@86
|
115 faster on a specific platform. Experimenting with these can yield faster
|
cannam@86
|
116 binaries.
|
cannam@86
|
117
|
cannam@86
|
118
|
cannam@86
|
119 ===============================================================================
|
cannam@86
|
120 Building in a GNU environment
|
cannam@86
|
121 ===============================================================================
|
cannam@86
|
122
|
cannam@86
|
123 FLAC uses autoconf and libtool for configuring and building.
|
cannam@86
|
124 Better documentation for these will be forthcoming, but in
|
cannam@86
|
125 general, this should work:
|
cannam@86
|
126
|
cannam@86
|
127 ./configure && make && make check && make install
|
cannam@86
|
128
|
cannam@86
|
129 The 'make check' step is optional; omit it to skip all the tests,
|
cannam@86
|
130 which can take several hours and use around 70-80 megs of disk space.
|
cannam@86
|
131 Even though it will stop with an explicit message on any failure, it
|
cannam@86
|
132 does print out a lot of stuff so you might want to capture the output
|
cannam@86
|
133 to a file if you're having a problem. Also, don't run 'make check'
|
cannam@86
|
134 as root because it confuses some of the tests.
|
cannam@86
|
135
|
cannam@86
|
136 NOTE: Despite our best efforts it's entirely possible to have
|
cannam@86
|
137 problems when using older versions of autoconf, automake, or
|
cannam@86
|
138 libtool. If you have the latest versions and still can't get it
|
cannam@86
|
139 to work, see the next section on Makefile.lite.
|
cannam@86
|
140
|
cannam@86
|
141 There are a few FLAC-specific arguments you can give to
|
cannam@86
|
142 `configure':
|
cannam@86
|
143
|
cannam@86
|
144 --enable-debug : Builds everything with debug symbols and some
|
cannam@86
|
145 extra (and more verbose) error checking.
|
cannam@86
|
146
|
cannam@86
|
147 --disable-asm-optimizations : Disables the compilation of the
|
cannam@86
|
148 assembly routines. Many routines have assembly versions for
|
cannam@86
|
149 speed and `configure' is pretty good about knowing what is
|
cannam@86
|
150 supported, but you can use this option to build only from the
|
cannam@86
|
151 C sources. May be necessary for building on OS X (Intel)
|
cannam@86
|
152
|
cannam@86
|
153 --enable-sse : If you are building for an x86 CPU that supports
|
cannam@86
|
154 SSE instructions, you can enable some of the faster routines
|
cannam@86
|
155 if your operating system also supports SSE instructions. flac
|
cannam@86
|
156 can tell if the CPU supports the instructions but currently has
|
cannam@86
|
157 no way to test if the OS does, so if it does, you must pass
|
cannam@86
|
158 this argument to configure to use the SSE routines. If flac
|
cannam@86
|
159 crashes when built with this option you will have to go back and
|
cannam@86
|
160 configure without --enable-sse. Note that
|
cannam@86
|
161 --disable-asm-optimizations implies --disable-sse.
|
cannam@86
|
162
|
cannam@86
|
163 --enable-local-xmms-plugin : Installs the FLAC XMMS plugin in
|
cannam@86
|
164 $HOME/.xmms/Plugins, instead of the global XMMS plugin area
|
cannam@86
|
165 (usually /usr/lib/xmms/Input).
|
cannam@86
|
166
|
cannam@86
|
167 --with-ogg=
|
cannam@86
|
168 --with-xmms-prefix=
|
cannam@86
|
169 --with-libiconv-prefix=
|
cannam@86
|
170 Use these if you have these packages but configure can't find them.
|
cannam@86
|
171
|
cannam@86
|
172 If you want to build completely from scratch (i.e. starting with just
|
cannam@86
|
173 configure.in and Makefile.am) you should be able to just run 'autogen.sh'
|
cannam@86
|
174 but make sure and read the comments in that file first.
|
cannam@86
|
175
|
cannam@86
|
176
|
cannam@86
|
177 ===============================================================================
|
cannam@86
|
178 Building with Makefile.lite
|
cannam@86
|
179 ===============================================================================
|
cannam@86
|
180
|
cannam@86
|
181 There is a more lightweight build system for do-it-yourself-ers.
|
cannam@86
|
182 It is also useful if configure isn't working, which may be the
|
cannam@86
|
183 case since lately we've had some problems with different versions
|
cannam@86
|
184 of automake and libtool. The Makefile.lite system should work
|
cannam@86
|
185 on GNU systems with few or no adjustments.
|
cannam@86
|
186
|
cannam@86
|
187 From the top level just 'make -f Makefile.lite'. You can
|
cannam@86
|
188 specify zero or one optional target from 'release', 'debug',
|
cannam@86
|
189 'test', or 'clean'. The default is 'release'. There is no
|
cannam@86
|
190 'install' target but everything you need will end up in the
|
cannam@86
|
191 obj/ directory.
|
cannam@86
|
192
|
cannam@86
|
193 If you are not on an x86 system or you don't have nasm, you
|
cannam@86
|
194 may have to change the DEFINES in src/libFLAC/Makefile.lite. If
|
cannam@86
|
195 you don't have nasm, remove -DFLAC__HAS_NASM. If your target is
|
cannam@86
|
196 not an x86, change -DFLAC__CPU_IA32 to -DFLAC__CPU_UNKNOWN.
|
cannam@86
|
197
|
cannam@86
|
198
|
cannam@86
|
199 ===============================================================================
|
cannam@86
|
200 Building with MSVC
|
cannam@86
|
201 ===============================================================================
|
cannam@86
|
202
|
cannam@86
|
203 There are .dsp projects and a master FLAC.dsw workspace to build all
|
cannam@86
|
204 the libraries and executables with MSVC6. There are also .vcproj
|
cannam@86
|
205 projects and a master FLAC.sln solution to build all the libraries and
|
cannam@86
|
206 executables with VC++ 2005.
|
cannam@86
|
207
|
cannam@86
|
208 Prerequisite: you must have the Ogg libraries installed as described
|
cannam@86
|
209 later.
|
cannam@86
|
210
|
cannam@86
|
211 Prerequisite: you must have nasm installed, and nasmw.exe must be in
|
cannam@86
|
212 your PATH, or the path to nasmw.exe must be added to the list of
|
cannam@86
|
213 directories for executable files in the MSVC global options.
|
cannam@86
|
214
|
cannam@86
|
215 MSVC6:
|
cannam@86
|
216 To build everything, run Developer Studio, do File|Open Workspace,
|
cannam@86
|
217 and open FLAC.dsw. Select "Build | Set active configuration..."
|
cannam@86
|
218 from the menu, then in the dialog, select "All - Win32 Release" (or
|
cannam@86
|
219 Debug if you prefer). Click "Ok" then hit F7 to build.
|
cannam@86
|
220
|
cannam@86
|
221 VC++ 2005:
|
cannam@86
|
222 To build everything, run Visual Studio, do File|Open and open FLAC.sln.
|
cannam@86
|
223 From the dropdown in the toolbar, select "Release" instead of "Debug",
|
cannam@86
|
224 then hit F7 to build.
|
cannam@86
|
225
|
cannam@86
|
226 Either way, this will build all libraries both statically (e.g.
|
cannam@86
|
227 obj\release\lib\libFLAC_static.lib) and as DLLs (e.g.
|
cannam@86
|
228 obj\release\lib\libFLAC.dll), and it will build all binaries, statically
|
cannam@86
|
229 linked (e.g. obj\release\bin\flac.exe).
|
cannam@86
|
230
|
cannam@86
|
231 Everything will end up in the "obj" directory. DLLs and .exe files
|
cannam@86
|
232 are all that are needed and can be copied to an installation area and
|
cannam@86
|
233 added to the PATH. The plugins have to be copied to their appropriate
|
cannam@86
|
234 place in the player area. For Winamp2 this is <winamp2-dir>\Plugins.
|
cannam@86
|
235
|
cannam@86
|
236 By default the code is configured with Ogg support. Before building FLAC
|
cannam@86
|
237 you will need to get the Ogg source distribution
|
cannam@86
|
238 (see http://xiph.org/ogg/vorbis/download/), build ogg_static.lib (load and
|
cannam@86
|
239 build win32\ogg_static.dsp), copy ogg_static.lib into FLAC's
|
cannam@86
|
240 'obj\release\lib' directory, and copy the entire include\ogg tree into
|
cannam@86
|
241 FLAC's 'include' directory (so that there is an 'ogg' directory in FLAC's
|
cannam@86
|
242 'include' directory with the files ogg.h, os_types.h and config_types.h).
|
cannam@86
|
243
|
cannam@86
|
244 If you want to build without Ogg support, instead edit all .dsp or
|
cannam@86
|
245 .vcproj files and remove any occurrences of "/D FLAC__HAS_OGG".
|
cannam@86
|
246
|
cannam@86
|
247
|
cannam@86
|
248 ===============================================================================
|
cannam@86
|
249 Building on Mac OS X
|
cannam@86
|
250 ===============================================================================
|
cannam@86
|
251
|
cannam@86
|
252 If you have Fink or a recent version of OS X with the proper autotooles,
|
cannam@86
|
253 the GNU flow above should work. The Project Builder project has been
|
cannam@86
|
254 deprecated but we are working on replacing it with an Xcode equivalent.
|