blob: ab93b34fd3ed00d33af70c242511347151354f91 [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 *
4 * This program is part of FLAC; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
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
35licensed under the GNU Lesser General Public License (LGPL). All other
36programs and plugins are licensed under the GNU General Public License
37(GPL). The documentation is licensed under the GNU Free Documentation
38License (GFDL).
39
Josh Coalson6b05bc52001-06-08 00:13:21 +000040
Josh Coalson310b9ec2002-07-31 06:39:21 +000041===============================================================================
Josh Coalson75d78a32003-01-08 08:06:53 +000042FLAC - 1.0.5_beta2 - 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 Coalsonf2be7c32003-01-03 00:18:15 +000057@@@@ NOTE @@@@
58This is a beta release. The CUESHEET metadata block specification has not
59been finalized.
60
Josh Coalson6b05bc52001-06-08 00:13:21 +000061This is the source release for the FLAC project. See
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000062
63 doc/index.html
64
65for full documentation.
66
67A brief description of the directory tree:
68
Josh Coalson917df862002-07-03 07:39:05 +000069 doc/ the HTML documentation
70 flac.pbproj/ the Mac OS X Project Builder project
71 include/ public include files for libFLAC and libFLAC++
72 man/ the man page for `flac'
73 src/ the source code and private headers
74 test/ the test scripts
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000075
76
Josh Coalson310b9ec2002-07-31 06:39:21 +000077===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000078Building in a GNU environment
Josh Coalson310b9ec2002-07-31 06:39:21 +000079===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000080
Josh Coalson172ac002001-10-31 18:30:19 +000081FLAC uses autoconf and libtool for configuring and building.
82Better documentation for these will be forthcoming, but in
83general, this should work:
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000084
Josh Coalsonc220cf42002-08-23 06:41:31 +000085./configure && make && make check && make install
86
87The 'make check' step is optional; omit it to skip all the tests,
Josh Coalsonccea6aa2002-12-17 08:14:42 +000088which can take several hours and use around 70-80 megs of disk space.
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 Coalsone3268482001-12-04 06:46:12 +0000117--enable-3dnow : If you are building for an AMD CPU which has 3DNOW!
Josh Coalsonc69f8782001-11-13 23:08:22 +0000118support, you can use this flag to enable some assembly routines
119which use 3DNOW! instructions. There have been some reports that
120they may cause flac to crash, which is why it is not turned on
Josh Coalson7140a1c2001-11-13 23:11:51 +0000121by default. Note that --disable-asm-optimizations overrides
Josh Coalsone3268482001-12-04 06:46:12 +0000122--enable-3dnow.
Josh Coalsonc69f8782001-11-13 23:08:22 +0000123
Josh Coalson822eef62002-09-12 06:40:44 +0000124--with-ogg=
125--with-id3lib=
126--with-xmms-prefix=
127--with-libiconv-prefix=
128Use these if you have these packages but configure can't find them.
129
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000130If you want to build completely from scratch (i.e. starting with just
131configure.in and Makefile.am) you should be able to just run 'autogen.sh'
132but make sure and read the comments in that file first.
133
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000134
Josh Coalson310b9ec2002-07-31 06:39:21 +0000135===============================================================================
Josh Coalson04032562001-07-20 23:43:15 +0000136Building with Makefile.lite
Josh Coalson310b9ec2002-07-31 06:39:21 +0000137===============================================================================
Josh Coalson04032562001-07-20 23:43:15 +0000138
139There is a more lightweight build system for do-it-yourself-ers.
140It is also useful if configure isn't working, which may be the
141case since lately we've had some problems with different versions
142of automake and libtool. The Makefile.lite system should work
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000143on GNU systems with few or no adjustments.
Josh Coalson04032562001-07-20 23:43:15 +0000144
145From the top level just 'make -f Makefile.lite'. You can
146specify zero or one optional target from 'release', 'debug',
147'test', or 'clean'. The default is 'release'. There is no
148'install' target but everything you need will end up in the
149obj/ directory.
150
151If you are not on an x86 system or you don't have nasm, you
152may have to change the DEFINES in src/libFLAC/Makefile.lite. If
153you don't have nasm, remove -DFLAC__HAS_NASM. If your target is
154not an x86, change -DFLAC__CPU_IA32 to -DFLAC__CPU_UNKNOWN.
155
156
Josh Coalson310b9ec2002-07-31 06:39:21 +0000157===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000158Building with MSVC
Josh Coalson310b9ec2002-07-31 06:39:21 +0000159===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000160
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000161There are two ways to build with MSVC:
162
163 1. Project Files
Josh Coalsona11d5de2002-10-18 06:09:38 +0000164 ----------------
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000165 Prerequisite: you must have the Ogg libraries installed as described
166 later.
167
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000168 Prerequisite: you must have nasm installed, and have the environment
169 variable FLAC_NASM set to the full path to nasmw.exe, e.g
Josh Coalsona11d5de2002-10-18 06:09:38 +0000170
171 C:\nasm\nasmw.exe
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000172
173 To build everything, run Developer Studio, do File|Open Workspace,
174 and open FLAC.dsw. Switch to the 'Files' tab, select 'all files'
175 from the tree, do right-mouse-button and 'Set as active project'.
Josh Coalson7d518fd2002-10-18 05:57:06 +0000176 The default build mode will probably be Debug; to change to release
177 do Build|Set Active Configuration and select 'all - Win32 Release'.
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000178 Then do Project|Build. This will build all libraries both statically
179 (e.g. obj\debug\lib\libFLAC_static.lib) and as DLLs (e.g.
180 obj\debug\bin\libFLAC.dll), and it will build all binaries, statically
181 linked (e.g. obj\debug\bin\flac.exe).
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000182
183 2. nmake
Josh Coalsona11d5de2002-10-18 06:09:38 +0000184 --------
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000185 Prerequisite: you must have the Ogg libraries installed as described
186 later.
187
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000188 Prerequisite: you must have nasm installed and nasmw.exe must be in
189 your path.
190
191 To build everything, open a Command window, cd to the top-level
192 directory (where this README is) and do
193
Josh Coalsona11d5de2002-10-18 06:09:38 +0000194 nmake /f Makefile.vc
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000195
196 This will recur into all the source directories in the right order
197 and build everything. The libraries will be build only as static
Josh Coalsona11d5de2002-10-18 06:09:38 +0000198 libs. You need only to install the binaries. To clean up everything
199 you can do
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000200
Josh Coalsona11d5de2002-10-18 06:09:38 +0000201 nmake /f Makefile.vc clean
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000202
203 from the top level directory, or any directory which has a
204 Makefile.vc
205
206Everything will end up in the 'obj' directory. DLLs and .exe files
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000207are all that are needed and can be copied to an installation area and
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000208added to the PATH. The plugins have to be copied to their appropriate
Josh Coalson7d518fd2002-10-18 05:57:06 +0000209place in the player area. For Winamp2 this is <winamp2-dir>\Plugins
210and for Winamp3 this is <winamp3-dir>\Wacs.
Josh Coalson5676eb12001-11-09 19:23:50 +0000211
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000212By default the code is configured with Ogg support. Before building FLAC
213you will need to get the Ogg source distribution
214(see http://xiph.org/ogg/vorbis/download/), build ogg_static.lib (load and
215build win32\ogg_static.dsp), copy ogg_static.lib into FLAC's
216'obj\release\lib' directory, and copy the entire include\ogg tree into
217FLAC's 'include' directory (so that there is an 'ogg' directory in FLAC's
218'include' directory with the files ogg.h, os_types.h and config_types.h).
219
Josh Coalson5676eb12001-11-09 19:23:50 +0000220
Josh Coalson310b9ec2002-07-31 06:39:21 +0000221===============================================================================
Josh Coalson5676eb12001-11-09 19:23:50 +0000222Building on Mac OS X
Josh Coalson310b9ec2002-07-31 06:39:21 +0000223===============================================================================
Josh Coalson5676eb12001-11-09 19:23:50 +0000224
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000225If you have Fink, the GNU flow above should work. Otherwise,
Josh Coalsonb83801e2002-03-13 04:11:05 +0000226there is a Project Builder project in the top-level source
Josh Coalson5676eb12001-11-09 19:23:50 +0000227directory to build libFLAC and the command-line utilities on
228Mac OS X. In a terminal, cd to the top-level directory (the
229one that contains this README file) and type:
230
231 pbxbuild -alltargets
232
Josh Coalsonb83801e2002-03-13 04:11:05 +0000233This will create everything and leave it in the build/ directory.
234Don't worry about the rest of the stuff that is in build/ or
Josh Coalson5676eb12001-11-09 19:23:50 +0000235the stuff that was already there before building.
236
237There currently is no install procedure; you will have to
238manually copy the tools to wherever you need them.
Josh Coalson310b9ec2002-07-31 06:39:21 +0000239
240
241===============================================================================
242Note to embedded developers
243===============================================================================
244
245libFLAC has grown larger over time as more functionality has been
246included, but much of it may be unnecessary for a particular embedded
247implementation. Unused parts may be pruned by some simple editing of
248configure.in and src/libFLAC/Makefile.am; the following dependency
249graph shows which modules may be pruned without breaking things
250further down:
251
252file_encoder.h
253 stream_encoder.h
254 format.h
255
256file_decoder.h
257 seekable_stream_decoder.h
258 stream_decoder.h
259 format.h
260
261metadata.h
262 format.h
263
264There is a section dedicated to embedded use in the libFLAC API
265HTML documentation (see doc/html/api/index.html).