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