blob: f126c27395b45df06f1b11d119c239d887b6c856 [file] [log] [blame]
Josh Coalson6b05bc52001-06-08 00:13:21 +00001/* FLAC - Free Lossless Audio Codec
Erik de Castro Lopof84287e2012-01-31 19:28:14 +11002 * Copyright (C) 2012 Xiph.org Foundation
Josh Coalsondea0f5a2009-01-07 07:31:28 +00003 * Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
Josh Coalson6b05bc52001-06-08 00:13:21 +00004 *
Josh Coalsone8a76012003-02-07 00:14:32 +00005 * This file is part the FLAC project. FLAC is comprised of several
6 * components distributed under difference licenses. The codec libraries
7 * are distributed under Xiph.Org's BSD-like license (see the file
8 * COPYING.Xiph in this distribution). All other programs, libraries, and
Josh Coalsonf37520b2006-11-20 06:46:07 +00009 * plugins are distributed under the LGPL or GPL (see COPYING.LGPL and
10 * COPYING.GPL). The documentation is distributed under the Gnu FDL (see
11 * COPYING.FDL). Each file in the FLAC distribution contains at the top the
12 * terms under which it may be distributed.
Josh Coalson6b05bc52001-06-08 00:13:21 +000013 *
Josh Coalsone8a76012003-02-07 00:14:32 +000014 * Since this particular file is relevant to all components of FLAC,
15 * it may be distributed under the Xiph.Org license, which is the least
16 * restrictive of those mentioned above. See the file COPYING.Xiph in this
17 * distribution.
Josh Coalson6b05bc52001-06-08 00:13:21 +000018 */
19
20
Erik de Castro Lopof84287e2012-01-31 19:28:14 +110021FLAC is an Open Source lossless audio codec developed by Josh Coalson from 2001
22to 2009.
23
24From January 2012 FLAC is being maintained by Erik de Castro Lopo under the
25auspices of the Xiph.org Foundation.
Josh Coalson6b05bc52001-06-08 00:13:21 +000026
Josh Coalsonbc869502002-06-14 06:36:16 +000027FLAC is comprised of
28 * `libFLAC', a library which implements reference encoders and
Josh Coalson8da98c82006-10-15 04:24:05 +000029 decoders for native FLAC and Ogg FLAC, and a metadata interface
Josh Coalsonbc869502002-06-14 06:36:16 +000030 * `libFLAC++', a C++ object wrapper library around libFLAC
Josh Coalson0c3524c2002-08-22 04:21:54 +000031 * `flac', a command-line program for encoding and decoding files
Josh Coalsoncf3f3382003-09-24 04:36:57 +000032 * `metaflac', a command-line program for viewing and editing FLAC
33 metadata
Josh Coalson0c3524c2002-08-22 04:21:54 +000034 * player plugins for XMMS and Winamp
35 * user and API documentation
36
Josh Coalson8da98c82006-10-15 04:24:05 +000037The libraries (libFLAC, libFLAC++) are
Josh Coalsonafd81072003-01-31 23:34:56 +000038licensed under Xiph.org's BSD-like license (see COPYING.Xiph). All other
Josh Coalson0c3524c2002-08-22 04:21:54 +000039programs and plugins are licensed under the GNU General Public License
Josh Coalsonafd81072003-01-31 23:34:56 +000040(see COPYING.GPL). The documentation is licensed under the GNU Free
41Documentation License (see COPYING.FDL).
Josh Coalson0c3524c2002-08-22 04:21:54 +000042
Josh Coalson6b05bc52001-06-08 00:13:21 +000043
Josh Coalson310b9ec2002-07-31 06:39:21 +000044===============================================================================
Josh Coalson09b164b2007-09-14 00:11:52 +000045FLAC - 1.2.1 - Contents
Josh Coalson310b9ec2002-07-31 06:39:21 +000046===============================================================================
47
48- Introduction
Josh Coalsonb445ebe2004-09-26 00:54:28 +000049- Prerequisites
Josh Coalson8c8eb712007-09-12 01:03:20 +000050- Note to embedded developers
Josh Coalson310b9ec2002-07-31 06:39:21 +000051- Building in a GNU environment
52- Building with Makefile.lite
53- Building with MSVC
54- Building on Mac OS X
Josh Coalson310b9ec2002-07-31 06:39:21 +000055
56
57===============================================================================
58Introduction
59===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000060
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
Josh Coalsonc28ec322004-09-10 00:20:04 +000063 doc/html/index.html
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000064
65for full documentation.
66
67A brief description of the directory tree:
68
Josh Coalson917df862002-07-03 07:39:05 +000069 doc/ the HTML documentation
Josh Coalson917df862002-07-03 07:39:05 +000070 include/ public include files for libFLAC and libFLAC++
71 man/ the man page for `flac'
72 src/ the source code and private headers
73 test/ the test scripts
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000074
75
Josh Coalson310b9ec2002-07-31 06:39:21 +000076===============================================================================
Josh Coalsonb445ebe2004-09-26 00:54:28 +000077Prerequisites
78===============================================================================
79
80To build FLAC with support for Ogg FLAC you must have built and installed
81libogg according to the specific instructions below. You must have
82libogg 1.1.2 or greater, or there will be seeking problems with Ogg FLAC.
83
84If you are building on x86 and want the assembly optimizations, you will
Josh Coalsondf8e7322005-01-21 01:25:43 +000085need to have NASM >= 0.98.30 installed according to the specific instructions
86below.
Josh Coalsonb445ebe2004-09-26 00:54:28 +000087
88
89===============================================================================
Josh Coalson8c8eb712007-09-12 01:03:20 +000090Note to embedded developers
91===============================================================================
92
93libFLAC has grown larger over time as more functionality has been
94included, but much of it may be unnecessary for a particular embedded
95implementation. Unused parts may be pruned by some simple editing of
96configure.in and src/libFLAC/Makefile.am; the following dependency
97graph shows which modules may be pruned without breaking things
98further down:
99
100metadata.h
101 stream_decoder.h
102 format.h
103
104stream_encoder.h
105 stream_decoder.h
106 format.h
107
108stream_decoder.h
109 format.h
110
111In other words, for pure decoding applications, both the stream encoder
112and metadata editing interfaces can be safely removed.
113
114There is a section dedicated to embedded use in the libFLAC API
115HTML documentation (see doc/html/api/index.html).
116
117Also, there are several places in the libFLAC code with comments marked
118with "OPT:" where a #define can be changed to enable code that might be
119faster on a specific platform. Experimenting with these can yield faster
120binaries.
121
122
123===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000124Building in a GNU environment
Josh Coalson310b9ec2002-07-31 06:39:21 +0000125===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000126
Josh Coalson172ac002001-10-31 18:30:19 +0000127FLAC uses autoconf and libtool for configuring and building.
128Better documentation for these will be forthcoming, but in
129general, this should work:
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000130
Josh Coalsonc220cf42002-08-23 06:41:31 +0000131./configure && make && make check && make install
132
133The 'make check' step is optional; omit it to skip all the tests,
Josh Coalsonccea6aa2002-12-17 08:14:42 +0000134which can take several hours and use around 70-80 megs of disk space.
Josh Coalson9d260d82003-08-28 23:47:15 +0000135Even though it will stop with an explicit message on any failure, it
136does print out a lot of stuff so you might want to capture the output
137to a file if you're having a problem. Also, don't run 'make check'
138as root because it confuses some of the tests.
Josh Coalsonbfe42f12000-12-22 22:42:25 +0000139
Josh Coalson917df862002-07-03 07:39:05 +0000140NOTE: Despite our best efforts it's entirely possible to have
141problems when using older versions of autoconf, automake, or
142libtool. If you have the latest versions and still can't get it
143to work, see the next section on Makefile.lite.
Josh Coalson04032562001-07-20 23:43:15 +0000144
Josh Coalson3643db32001-07-18 00:23:06 +0000145There are a few FLAC-specific arguments you can give to
146`configure':
147
148--enable-debug : Builds everything with debug symbols and some
149extra (and more verbose) error checking.
150
151--disable-asm-optimizations : Disables the compilation of the
152assembly routines. Many routines have assembly versions for
153speed and `configure' is pretty good about knowing what is
154supported, but you can use this option to build only from the
Josh Coalson5988dd52007-09-16 20:58:12 +0000155C sources. May be necessary for building on OS X (Intel)
Josh Coalson3643db32001-07-18 00:23:06 +0000156
Josh Coalsone3268482001-12-04 06:46:12 +0000157--enable-sse : If you are building for an x86 CPU that supports
Josh Coalson3643db32001-07-18 00:23:06 +0000158SSE instructions, you can enable some of the faster routines
159if your operating system also supports SSE instructions. flac
160can tell if the CPU supports the instructions but currently has
161no way to test if the OS does, so if it does, you must pass
162this argument to configure to use the SSE routines. If flac
163crashes when built with this option you will have to go back and
Josh Coalsone3268482001-12-04 06:46:12 +0000164configure without --enable-sse. Note that
165--disable-asm-optimizations implies --disable-sse.
Josh Coalson9e6efb62001-05-29 18:48:42 +0000166
Josh Coalson3d730722003-01-14 06:59:50 +0000167--enable-local-xmms-plugin : Installs the FLAC XMMS plugin in
168$HOME/.xmms/Plugins, instead of the global XMMS plugin area
169(usually /usr/lib/xmms/Input).
Josh Coalsonc69f8782001-11-13 23:08:22 +0000170
Josh Coalson822eef62002-09-12 06:40:44 +0000171--with-ogg=
Josh Coalson822eef62002-09-12 06:40:44 +0000172--with-xmms-prefix=
173--with-libiconv-prefix=
174Use these if you have these packages but configure can't find them.
175
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000176If you want to build completely from scratch (i.e. starting with just
177configure.in and Makefile.am) you should be able to just run 'autogen.sh'
178but make sure and read the comments in that file first.
179
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000180
Josh Coalson310b9ec2002-07-31 06:39:21 +0000181===============================================================================
Josh Coalson04032562001-07-20 23:43:15 +0000182Building with Makefile.lite
Josh Coalson310b9ec2002-07-31 06:39:21 +0000183===============================================================================
Josh Coalson04032562001-07-20 23:43:15 +0000184
185There is a more lightweight build system for do-it-yourself-ers.
186It is also useful if configure isn't working, which may be the
187case since lately we've had some problems with different versions
188of automake and libtool. The Makefile.lite system should work
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000189on GNU systems with few or no adjustments.
Josh Coalson04032562001-07-20 23:43:15 +0000190
191From the top level just 'make -f Makefile.lite'. You can
192specify zero or one optional target from 'release', 'debug',
193'test', or 'clean'. The default is 'release'. There is no
194'install' target but everything you need will end up in the
195obj/ directory.
196
197If you are not on an x86 system or you don't have nasm, you
198may have to change the DEFINES in src/libFLAC/Makefile.lite. If
199you don't have nasm, remove -DFLAC__HAS_NASM. If your target is
200not an x86, change -DFLAC__CPU_IA32 to -DFLAC__CPU_UNKNOWN.
201
202
Josh Coalson310b9ec2002-07-31 06:39:21 +0000203===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000204Building with MSVC
Josh Coalson310b9ec2002-07-31 06:39:21 +0000205===============================================================================
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000206
Josh Coalson32821c02007-02-22 02:56:16 +0000207There are .dsp projects and a master FLAC.dsw workspace to build all
208the libraries and executables with MSVC6. There are also .vcproj
209projects and a master FLAC.sln solution to build all the libraries and
210executables with VC++ 2005.
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000211
Josh Coalson630d22e2003-01-25 18:32:56 +0000212Prerequisite: you must have the Ogg libraries installed as described
213later.
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000214
Josh Coalson64fbc8f2004-09-10 00:57:17 +0000215Prerequisite: you must have nasm installed, and nasmw.exe must be in
216your PATH, or the path to nasmw.exe must be added to the list of
217directories for executable files in the MSVC global options.
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000218
Josh Coalson32821c02007-02-22 02:56:16 +0000219MSVC6:
Josh Coalson630d22e2003-01-25 18:32:56 +0000220To build everything, run Developer Studio, do File|Open Workspace,
221and open FLAC.dsw. Select "Build | Set active configuration..."
222from the menu, then in the dialog, select "All - Win32 Release" (or
Josh Coalson32821c02007-02-22 02:56:16 +0000223Debug if you prefer). Click "Ok" then hit F7 to build.
224
225VC++ 2005:
226To build everything, run Visual Studio, do File|Open and open FLAC.sln.
227From the dropdown in the toolbar, select "Release" instead of "Debug",
228then hit F7 to build.
229
230Either way, this will build all libraries both statically (e.g.
231obj\release\lib\libFLAC_static.lib) and as DLLs (e.g.
232obj\release\lib\libFLAC.dll), and it will build all binaries, statically
233linked (e.g. obj\release\bin\flac.exe).
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000234
Josh Coalson630d22e2003-01-25 18:32:56 +0000235Everything will end up in the "obj" directory. DLLs and .exe files
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000236are all that are needed and can be copied to an installation area and
Josh Coalson3a17d3c2002-10-18 05:49:44 +0000237added to the PATH. The plugins have to be copied to their appropriate
Josh Coalson93c66d72003-12-17 19:39:21 +0000238place in the player area. For Winamp2 this is <winamp2-dir>\Plugins.
Josh Coalson5676eb12001-11-09 19:23:50 +0000239
Josh Coalson71fb9ff2002-12-03 06:29:10 +0000240By default the code is configured with Ogg support. Before building FLAC
241you will need to get the Ogg source distribution
242(see http://xiph.org/ogg/vorbis/download/), build ogg_static.lib (load and
243build win32\ogg_static.dsp), copy ogg_static.lib into FLAC's
244'obj\release\lib' directory, and copy the entire include\ogg tree into
245FLAC's 'include' directory (so that there is an 'ogg' directory in FLAC's
246'include' directory with the files ogg.h, os_types.h and config_types.h).
247
Josh Coalson32821c02007-02-22 02:56:16 +0000248If you want to build without Ogg support, instead edit all .dsp or
249.vcproj files and remove any occurrences of "/D FLAC__HAS_OGG".
250
Josh Coalson5676eb12001-11-09 19:23:50 +0000251
Josh Coalson310b9ec2002-07-31 06:39:21 +0000252===============================================================================
Josh Coalson5676eb12001-11-09 19:23:50 +0000253Building on Mac OS X
Josh Coalson310b9ec2002-07-31 06:39:21 +0000254===============================================================================
Josh Coalson5676eb12001-11-09 19:23:50 +0000255
Josh Coalsonc25ba4e2007-07-07 04:16:49 +0000256If you have Fink or a recent version of OS X with the proper autotooles,
257the GNU flow above should work. The Project Builder project has been
258deprecated but we are working on replacing it with an Xcode equivalent.