blob: 1f5d7fe5300fbd7373d35201f321329d49b2a6f4 [file] [log] [blame]
Josh Coalson6b05bc52001-06-08 00:13:21 +00001/* FLAC - Free Lossless Audio Codec
Josh Coalsone74bd952007-02-02 06:58:19 +00002 * Copyright (C) 2001,2002,2003,2004,2005,2006,2007 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
Josh Coalsonf37520b2006-11-20 06:46:07 +00008 * plugins are distributed under the LGPL or GPL (see COPYING.LGPL and
9 * COPYING.GPL). The documentation is distributed under the Gnu FDL (see
10 * COPYING.FDL). Each file in the FLAC distribution contains at the top the
11 * terms under which it may be 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 Coalson8da98c82006-10-15 04:24:05 +000025 decoders for native FLAC and Ogg FLAC, 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 * `flac', a command-line program for encoding and decoding files
Josh Coalsoncf3f3382003-09-24 04:36:57 +000028 * `metaflac', a command-line program for viewing and editing FLAC
29 metadata
Josh Coalson0c3524c2002-08-22 04:21:54 +000030 * player plugins for XMMS and Winamp
31 * user and API documentation
32
Josh Coalson8da98c82006-10-15 04:24:05 +000033The libraries (libFLAC, libFLAC++) are
Josh Coalsonafd81072003-01-31 23:34:56 +000034licensed under Xiph.org's BSD-like license (see COPYING.Xiph). All other
Josh Coalson0c3524c2002-08-22 04:21:54 +000035programs and plugins are licensed under the GNU General Public License
Josh Coalsonafd81072003-01-31 23:34:56 +000036(see COPYING.GPL). The documentation is licensed under the GNU Free
37Documentation License (see COPYING.FDL).
Josh Coalson0c3524c2002-08-22 04:21:54 +000038
Josh Coalson6b05bc52001-06-08 00:13:21 +000039
Josh Coalson310b9ec2002-07-31 06:39:21 +000040===============================================================================
Josh Coalsonc85f3142006-11-17 16:00:55 +000041FLAC - 1.1.3 - Contents
Josh Coalson310b9ec2002-07-31 06:39:21 +000042===============================================================================
43
44- Introduction
Josh Coalsonb445ebe2004-09-26 00:54:28 +000045- Prerequisites
Josh Coalson310b9ec2002-07-31 06:39:21 +000046- 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
Josh Coalsonc28ec322004-09-10 00:20:04 +000059 doc/html/index.html
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000060
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 Coalsonb445ebe2004-09-26 00:54:28 +000074Prerequisites
75===============================================================================
76
77To build FLAC with support for Ogg FLAC you must have built and installed
78libogg according to the specific instructions below. You must have
79libogg 1.1.2 or greater, or there will be seeking problems with Ogg FLAC.
80
81If you are building on x86 and want the assembly optimizations, you will
Josh Coalsondf8e7322005-01-21 01:25:43 +000082need to have NASM >= 0.98.30 installed according to the specific instructions
83below.
Josh Coalsonb445ebe2004-09-26 00:54:28 +000084
85
86===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000087Building in a GNU environment
Josh Coalson310b9ec2002-07-31 06:39:21 +000088===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000089
Josh Coalson172ac002001-10-31 18:30:19 +000090FLAC uses autoconf and libtool for configuring and building.
91Better documentation for these will be forthcoming, but in
92general, this should work:
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000093
Josh Coalsonc220cf42002-08-23 06:41:31 +000094./configure && make && make check && make install
95
96The 'make check' step is optional; omit it to skip all the tests,
Josh Coalsonccea6aa2002-12-17 08:14:42 +000097which can take several hours and use around 70-80 megs of disk space.
Josh Coalson9d260d82003-08-28 23:47:15 +000098Even though it will stop with an explicit message on any failure, it
99does print out a lot of stuff so you might want to capture the output
100to a file if you're having a problem. Also, don't run 'make check'
101as root because it confuses some of the tests.
Josh Coalsonbfe42f12000-12-22 22:42:25 +0000102
Josh Coalson917df862002-07-03 07:39:05 +0000103NOTE: Despite our best efforts it's entirely possible to have
104problems when using older versions of autoconf, automake, or
105libtool. If you have the latest versions and still can't get it
106to work, see the next section on Makefile.lite.
Josh Coalson04032562001-07-20 23:43:15 +0000107
Josh Coalson3643db32001-07-18 00:23:06 +0000108There are a few FLAC-specific arguments you can give to
109`configure':
110
111--enable-debug : Builds everything with debug symbols and some
112extra (and more verbose) error checking.
113
114--disable-asm-optimizations : Disables the compilation of the
115assembly routines. Many routines have assembly versions for
116speed and `configure' is pretty good about knowing what is
117supported, but you can use this option to build only from the
118C sources.
119
Josh Coalsone3268482001-12-04 06:46:12 +0000120--enable-sse : If you are building for an x86 CPU that supports
Josh Coalson3643db32001-07-18 00:23:06 +0000121SSE instructions, you can enable some of the faster routines
122if your operating system also supports SSE instructions. flac
123can tell if the CPU supports the instructions but currently has
124no way to test if the OS does, so if it does, you must pass
125this argument to configure to use the SSE routines. If flac
126crashes when built with this option you will have to go back and
Josh Coalsone3268482001-12-04 06:46:12 +0000127configure without --enable-sse. Note that
128--disable-asm-optimizations implies --disable-sse.
Josh Coalson9e6efb62001-05-29 18:48:42 +0000129
Josh Coalson3d730722003-01-14 06:59:50 +0000130--enable-local-xmms-plugin : Installs the FLAC XMMS plugin in
131$HOME/.xmms/Plugins, instead of the global XMMS plugin area
132(usually /usr/lib/xmms/Input).
Josh Coalsonc69f8782001-11-13 23:08:22 +0000133
Josh Coalson822eef62002-09-12 06:40:44 +0000134--with-ogg=
Josh Coalson822eef62002-09-12 06:40:44 +0000135--with-xmms-prefix=
136--with-libiconv-prefix=
137Use these if you have these packages but configure can't find them.
138
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000139If you want to build completely from scratch (i.e. starting with just
140configure.in and Makefile.am) you should be able to just run 'autogen.sh'
141but make sure and read the comments in that file first.
142
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000143
Josh Coalson310b9ec2002-07-31 06:39:21 +0000144===============================================================================
Josh Coalson04032562001-07-20 23:43:15 +0000145Building with Makefile.lite
Josh Coalson310b9ec2002-07-31 06:39:21 +0000146===============================================================================
Josh Coalson04032562001-07-20 23:43:15 +0000147
148There is a more lightweight build system for do-it-yourself-ers.
149It is also useful if configure isn't working, which may be the
150case since lately we've had some problems with different versions
151of automake and libtool. The Makefile.lite system should work
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000152on GNU systems with few or no adjustments.
Josh Coalson04032562001-07-20 23:43:15 +0000153
154From the top level just 'make -f Makefile.lite'. You can
155specify zero or one optional target from 'release', 'debug',
156'test', or 'clean'. The default is 'release'. There is no
157'install' target but everything you need will end up in the
158obj/ directory.
159
160If you are not on an x86 system or you don't have nasm, you
161may have to change the DEFINES in src/libFLAC/Makefile.lite. If
162you don't have nasm, remove -DFLAC__HAS_NASM. If your target is
163not an x86, change -DFLAC__CPU_IA32 to -DFLAC__CPU_UNKNOWN.
164
165
Josh Coalson310b9ec2002-07-31 06:39:21 +0000166===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000167Building with MSVC
Josh Coalson310b9ec2002-07-31 06:39:21 +0000168===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000169
Josh Coalson630d22e2003-01-25 18:32:56 +0000170There are now .dsp projects and a master FLAC.dsw workspace to build
171all the libraries and executables.
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000172
Josh Coalson630d22e2003-01-25 18:32:56 +0000173Prerequisite: you must have the Ogg libraries installed as described
174later.
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000175
Josh Coalson64fbc8f2004-09-10 00:57:17 +0000176Prerequisite: you must have nasm installed, and nasmw.exe must be in
177your PATH, or the path to nasmw.exe must be added to the list of
178directories for executable files in the MSVC global options.
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000179
Josh Coalson630d22e2003-01-25 18:32:56 +0000180To build everything, run Developer Studio, do File|Open Workspace,
181and open FLAC.dsw. Select "Build | Set active configuration..."
182from the menu, then in the dialog, select "All - Win32 Release" (or
183Debug if you prefer). Click "Ok" then hit F7 to build. This will build
184all libraries both statically (e.g. obj\release\lib\libFLAC_static.lib)
185and as DLLs (e.g. obj\release\bin\libFLAC.dll), and it will build all
186binaries, statically linked (e.g. obj\release\bin\flac.exe).
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000187
Josh Coalson630d22e2003-01-25 18:32:56 +0000188Everything will end up in the "obj" directory. DLLs and .exe files
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000189are all that are needed and can be copied to an installation area and
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000190added to the PATH. The plugins have to be copied to their appropriate
Josh Coalson93c66d72003-12-17 19:39:21 +0000191place in the player area. For Winamp2 this is <winamp2-dir>\Plugins.
Josh Coalson5676eb12001-11-09 19:23:50 +0000192
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000193By default the code is configured with Ogg support. Before building FLAC
194you will need to get the Ogg source distribution
195(see http://xiph.org/ogg/vorbis/download/), build ogg_static.lib (load and
196build win32\ogg_static.dsp), copy ogg_static.lib into FLAC's
197'obj\release\lib' directory, and copy the entire include\ogg tree into
198FLAC's 'include' directory (so that there is an 'ogg' directory in FLAC's
199'include' directory with the files ogg.h, os_types.h and config_types.h).
200
Josh Coalson5676eb12001-11-09 19:23:50 +0000201
Josh Coalson310b9ec2002-07-31 06:39:21 +0000202===============================================================================
Josh Coalson5676eb12001-11-09 19:23:50 +0000203Building on Mac OS X
Josh Coalson310b9ec2002-07-31 06:39:21 +0000204===============================================================================
Josh Coalson5676eb12001-11-09 19:23:50 +0000205
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000206If you have Fink, the GNU flow above should work. Otherwise,
Josh Coalsonb83801e2002-03-13 04:11:05 +0000207there is a Project Builder project in the top-level source
Josh Coalson5676eb12001-11-09 19:23:50 +0000208directory to build libFLAC and the command-line utilities on
209Mac OS X. In a terminal, cd to the top-level directory (the
210one that contains this README file) and type:
211
212 pbxbuild -alltargets
213
Josh Coalsonb83801e2002-03-13 04:11:05 +0000214This will create everything and leave it in the build/ directory.
215Don't worry about the rest of the stuff that is in build/ or
Josh Coalson5676eb12001-11-09 19:23:50 +0000216the stuff that was already there before building.
217
Josh Coalson792a6a02004-07-29 06:34:50 +0000218The Project Builder project requires that you have libiconv and
219libogg in /sw, ala fink. If you don't, you'll need to install
220them somewhere and change the path to them in the Library Paths
221section of several targets.
222
223It also assumes the CPU supports Altivec instructions. If it does
224not, you will also have to add -DFLAC__NO_ASM to the CFLAGS in the
225libFLAC target.
226
Josh Coalson5676eb12001-11-09 19:23:50 +0000227There currently is no install procedure; you will have to
228manually copy the tools to wherever you need them.
Josh Coalson310b9ec2002-07-31 06:39:21 +0000229
230
231===============================================================================
232Note to embedded developers
233===============================================================================
234
235libFLAC has grown larger over time as more functionality has been
236included, but much of it may be unnecessary for a particular embedded
237implementation. Unused parts may be pruned by some simple editing of
238configure.in and src/libFLAC/Makefile.am; the following dependency
239graph shows which modules may be pruned without breaking things
240further down:
241
Josh Coalson6b21f662006-09-13 01:42:27 +0000242stream_encoder.h
243 stream_decoder.h
244 format.h
Josh Coalson310b9ec2002-07-31 06:39:21 +0000245
Josh Coalson6b21f662006-09-13 01:42:27 +0000246stream_decoder.h
247 format.h
Josh Coalson310b9ec2002-07-31 06:39:21 +0000248
249metadata.h
250 format.h
251
Josh Coalson6b21f662006-09-13 01:42:27 +0000252In other words, for pure decoding applications, both the stream encoder
253and metadata editing interfaces can be safely removed.
254
Josh Coalson310b9ec2002-07-31 06:39:21 +0000255There is a section dedicated to embedded use in the libFLAC API
256HTML documentation (see doc/html/api/index.html).