blob: a0e3e9257c31b960b18ad6a1a1da2ec699c1b194 [file] [log] [blame]
Josh Coalson6b05bc52001-06-08 00:13:21 +00001/* FLAC - Free Lossless Audio Codec
Josh Coalsonafae69f2003-01-02 07:03:16 +00002 * Copyright (C) 2001,2002,2003 Josh Coalson
Josh Coalson6b05bc52001-06-08 00:13:21 +00003 *
Josh Coalsone8a76012003-02-07 00:14:32 +00004 * This file is part the FLAC project. FLAC is comprised of several
5 * components distributed under difference licenses. The codec libraries
6 * are distributed under Xiph.Org's BSD-like license (see the file
7 * COPYING.Xiph in this distribution). All other programs, libraries, and
8 * plugins are distributed under the GPL (see COPYING.GPL). The documentation
9 * is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
10 * FLAC distribution contains at the top the terms under which it may be
11 * distributed.
Josh Coalson6b05bc52001-06-08 00:13:21 +000012 *
Josh Coalsone8a76012003-02-07 00:14:32 +000013 * Since this particular file is relevant to all components of FLAC,
14 * it may be distributed under the Xiph.Org license, which is the least
15 * restrictive of those mentioned above. See the file COPYING.Xiph in this
16 * distribution.
Josh Coalson6b05bc52001-06-08 00:13:21 +000017 */
18
19
20FLAC (http://flac.sourceforge.net/) is an Open Source lossless audio
21codec developed by Josh Coalson.
22
Josh Coalsonbc869502002-06-14 06:36:16 +000023FLAC is comprised of
24 * `libFLAC', a library which implements reference encoders and
Josh Coalson0c3524c2002-08-22 04:21:54 +000025 decoders, and a metadata interface
Josh Coalsonbc869502002-06-14 06:36:16 +000026 * `libFLAC++', a C++ object wrapper library around libFLAC
Josh Coalson0c3524c2002-08-22 04:21:54 +000027 * `libOggFLAC' and `libOggFLAC++', which provide encoders and
28 decoders for FLAC streams in an Ogg container
29 * `flac', a command-line program for encoding and decoding files
30 * `metaflac', a command-line program for editing FLAC metadata
31 * player plugins for XMMS and Winamp
32 * user and API documentation
33
34The libraries (libFLAC, libFLAC++, libOggFLAC, and libOggFLAC++) are
Josh Coalsonafd81072003-01-31 23:34:56 +000035licensed under Xiph.org's BSD-like license (see COPYING.Xiph). All other
Josh Coalson0c3524c2002-08-22 04:21:54 +000036programs and plugins are licensed under the GNU General Public License
Josh Coalsonafd81072003-01-31 23:34:56 +000037(see COPYING.GPL). The documentation is licensed under the GNU Free
38Documentation License (see COPYING.FDL).
Josh Coalson0c3524c2002-08-22 04:21:54 +000039
Josh Coalson6b05bc52001-06-08 00:13:21 +000040
Josh Coalson310b9ec2002-07-31 06:39:21 +000041===============================================================================
Josh Coalson53496dd2003-01-25 06:04:55 +000042FLAC - 1.1.0 - Contents
Josh Coalson310b9ec2002-07-31 06:39:21 +000043===============================================================================
44
45- Introduction
46- Building in a GNU environment
47- Building with Makefile.lite
48- Building with MSVC
49- Building on Mac OS X
50- Note to embedded developers
51
52
53===============================================================================
54Introduction
55===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000056
Josh Coalson6b05bc52001-06-08 00:13:21 +000057This is the source release for the FLAC project. See
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000058
59 doc/index.html
60
61for full documentation.
62
63A brief description of the directory tree:
64
Josh Coalson917df862002-07-03 07:39:05 +000065 doc/ the HTML documentation
66 flac.pbproj/ the Mac OS X Project Builder project
67 include/ public include files for libFLAC and libFLAC++
68 man/ the man page for `flac'
69 src/ the source code and private headers
70 test/ the test scripts
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000071
72
Josh Coalson310b9ec2002-07-31 06:39:21 +000073===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000074Building in a GNU environment
Josh Coalson310b9ec2002-07-31 06:39:21 +000075===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000076
Josh Coalson172ac002001-10-31 18:30:19 +000077FLAC uses autoconf and libtool for configuring and building.
78Better documentation for these will be forthcoming, but in
79general, this should work:
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000080
Josh Coalsonc220cf42002-08-23 06:41:31 +000081./configure && make && make check && make install
82
83The 'make check' step is optional; omit it to skip all the tests,
Josh Coalsonccea6aa2002-12-17 08:14:42 +000084which can take several hours and use around 70-80 megs of disk space.
Josh Coalson9d260d82003-08-28 23:47:15 +000085Even though it will stop with an explicit message on any failure, it
86does print out a lot of stuff so you might want to capture the output
87to a file if you're having a problem. Also, don't run 'make check'
88as root because it confuses some of the tests.
Josh Coalsonbfe42f12000-12-22 22:42:25 +000089
Josh Coalson917df862002-07-03 07:39:05 +000090NOTE: Despite our best efforts it's entirely possible to have
91problems when using older versions of autoconf, automake, or
92libtool. If you have the latest versions and still can't get it
93to work, see the next section on Makefile.lite.
Josh Coalson04032562001-07-20 23:43:15 +000094
Josh Coalson3643db32001-07-18 00:23:06 +000095There are a few FLAC-specific arguments you can give to
96`configure':
97
98--enable-debug : Builds everything with debug symbols and some
99extra (and more verbose) error checking.
100
101--disable-asm-optimizations : Disables the compilation of the
102assembly routines. Many routines have assembly versions for
103speed and `configure' is pretty good about knowing what is
104supported, but you can use this option to build only from the
105C sources.
106
Josh Coalsone3268482001-12-04 06:46:12 +0000107--enable-sse : If you are building for an x86 CPU that supports
Josh Coalson3643db32001-07-18 00:23:06 +0000108SSE instructions, you can enable some of the faster routines
109if your operating system also supports SSE instructions. flac
110can tell if the CPU supports the instructions but currently has
111no way to test if the OS does, so if it does, you must pass
112this argument to configure to use the SSE routines. If flac
113crashes when built with this option you will have to go back and
Josh Coalsone3268482001-12-04 06:46:12 +0000114configure without --enable-sse. Note that
115--disable-asm-optimizations implies --disable-sse.
Josh Coalson9e6efb62001-05-29 18:48:42 +0000116
Josh Coalson3d730722003-01-14 06:59:50 +0000117--enable-local-xmms-plugin : Installs the FLAC XMMS plugin in
118$HOME/.xmms/Plugins, instead of the global XMMS plugin area
119(usually /usr/lib/xmms/Input).
Josh Coalsonc69f8782001-11-13 23:08:22 +0000120
Josh Coalson822eef62002-09-12 06:40:44 +0000121--with-ogg=
122--with-id3lib=
123--with-xmms-prefix=
124--with-libiconv-prefix=
125Use these if you have these packages but configure can't find them.
126
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000127If you want to build completely from scratch (i.e. starting with just
128configure.in and Makefile.am) you should be able to just run 'autogen.sh'
129but make sure and read the comments in that file first.
130
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000131
Josh Coalson310b9ec2002-07-31 06:39:21 +0000132===============================================================================
Josh Coalson04032562001-07-20 23:43:15 +0000133Building with Makefile.lite
Josh Coalson310b9ec2002-07-31 06:39:21 +0000134===============================================================================
Josh Coalson04032562001-07-20 23:43:15 +0000135
136There is a more lightweight build system for do-it-yourself-ers.
137It is also useful if configure isn't working, which may be the
138case since lately we've had some problems with different versions
139of automake and libtool. The Makefile.lite system should work
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000140on GNU systems with few or no adjustments.
Josh Coalson04032562001-07-20 23:43:15 +0000141
142From the top level just 'make -f Makefile.lite'. You can
143specify zero or one optional target from 'release', 'debug',
144'test', or 'clean'. The default is 'release'. There is no
145'install' target but everything you need will end up in the
146obj/ directory.
147
148If you are not on an x86 system or you don't have nasm, you
149may have to change the DEFINES in src/libFLAC/Makefile.lite. If
150you don't have nasm, remove -DFLAC__HAS_NASM. If your target is
151not an x86, change -DFLAC__CPU_IA32 to -DFLAC__CPU_UNKNOWN.
152
153
Josh Coalson310b9ec2002-07-31 06:39:21 +0000154===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000155Building with MSVC
Josh Coalson310b9ec2002-07-31 06:39:21 +0000156===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000157
Josh Coalson630d22e2003-01-25 18:32:56 +0000158There are now .dsp projects and a master FLAC.dsw workspace to build
159all the libraries and executables.
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000160
Josh Coalson630d22e2003-01-25 18:32:56 +0000161Prerequisite: you must have the Ogg libraries installed as described
162later.
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000163
Josh Coalson630d22e2003-01-25 18:32:56 +0000164Prerequisite: you must have nasm installed, and have the environment
165variable FLAC_NASM set to the full path to nasmw.exe, e.g
Josh Coalsona11d5de2002-10-18 06:09:38 +0000166
Josh Coalson630d22e2003-01-25 18:32:56 +0000167C:\nasm\nasmw.exe
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000168
Josh Coalson630d22e2003-01-25 18:32:56 +0000169To build everything, run Developer Studio, do File|Open Workspace,
170and open FLAC.dsw. Select "Build | Set active configuration..."
171from the menu, then in the dialog, select "All - Win32 Release" (or
172Debug if you prefer). Click "Ok" then hit F7 to build. This will build
173all libraries both statically (e.g. obj\release\lib\libFLAC_static.lib)
174and as DLLs (e.g. obj\release\bin\libFLAC.dll), and it will build all
175binaries, statically linked (e.g. obj\release\bin\flac.exe).
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000176
Josh Coalson630d22e2003-01-25 18:32:56 +0000177Everything will end up in the "obj" directory. DLLs and .exe files
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000178are all that are needed and can be copied to an installation area and
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000179added to the PATH. The plugins have to be copied to their appropriate
Josh Coalson7d518fd2002-10-18 05:57:06 +0000180place in the player area. For Winamp2 this is <winamp2-dir>\Plugins
181and for Winamp3 this is <winamp3-dir>\Wacs.
Josh Coalson5676eb12001-11-09 19:23:50 +0000182
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000183By default the code is configured with Ogg support. Before building FLAC
184you will need to get the Ogg source distribution
185(see http://xiph.org/ogg/vorbis/download/), build ogg_static.lib (load and
186build win32\ogg_static.dsp), copy ogg_static.lib into FLAC's
187'obj\release\lib' directory, and copy the entire include\ogg tree into
188FLAC's 'include' directory (so that there is an 'ogg' directory in FLAC's
189'include' directory with the files ogg.h, os_types.h and config_types.h).
190
Josh Coalson5676eb12001-11-09 19:23:50 +0000191
Josh Coalson310b9ec2002-07-31 06:39:21 +0000192===============================================================================
Josh Coalson5676eb12001-11-09 19:23:50 +0000193Building on Mac OS X
Josh Coalson310b9ec2002-07-31 06:39:21 +0000194===============================================================================
Josh Coalson5676eb12001-11-09 19:23:50 +0000195
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000196If you have Fink, the GNU flow above should work. Otherwise,
Josh Coalsonb83801e2002-03-13 04:11:05 +0000197there is a Project Builder project in the top-level source
Josh Coalson5676eb12001-11-09 19:23:50 +0000198directory to build libFLAC and the command-line utilities on
199Mac OS X. In a terminal, cd to the top-level directory (the
200one that contains this README file) and type:
201
202 pbxbuild -alltargets
203
Josh Coalsonb83801e2002-03-13 04:11:05 +0000204This will create everything and leave it in the build/ directory.
205Don't worry about the rest of the stuff that is in build/ or
Josh Coalson5676eb12001-11-09 19:23:50 +0000206the stuff that was already there before building.
207
208There currently is no install procedure; you will have to
209manually copy the tools to wherever you need them.
Josh Coalson310b9ec2002-07-31 06:39:21 +0000210
211
212===============================================================================
213Note to embedded developers
214===============================================================================
215
216libFLAC has grown larger over time as more functionality has been
217included, but much of it may be unnecessary for a particular embedded
218implementation. Unused parts may be pruned by some simple editing of
219configure.in and src/libFLAC/Makefile.am; the following dependency
220graph shows which modules may be pruned without breaking things
221further down:
222
223file_encoder.h
224 stream_encoder.h
225 format.h
226
227file_decoder.h
228 seekable_stream_decoder.h
229 stream_decoder.h
230 format.h
231
232metadata.h
233 format.h
234
235There is a section dedicated to embedded use in the libFLAC API
236HTML documentation (see doc/html/api/index.html).