blob: 6d201f527898adaddfedd763ac7354495f1a48d3 [file] [log] [blame]
Josh Coalson6b05bc52001-06-08 00:13:21 +00001/* FLAC - Free Lossless Audio Codec
2 * Copyright (C) 2001 Josh Coalson
3 *
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
23FLAC is comprised of 1) `libFLAC', a library which implements
24reference encoders and decoders, licensed under the GNU Lesser
Josh Coalsoncd66fc02001-06-18 02:34:09 +000025General Public License (LGPL); 2) `flac', a command-line program for
Josh Coalson6b05bc52001-06-08 00:13:21 +000026encoding and decoding files, licensed under the GNU General public
27License (GPL); 3) `metaflac', a command-line program for editing
28FLAC metadata, licensed under the GPL; 4) player plugins for XMMS
29and Winamp, licensed under the GPL; and 5) documentation, licensed
30under the GNU Free Documentation License.
31
Josh Coalson4ac98232001-06-23 03:04:32 +000032==========
33FLAC - 1.0
34==========
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000035
Josh Coalson6b05bc52001-06-08 00:13:21 +000036This is the source release for the FLAC project. See
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000037
38 doc/index.html
39
40for full documentation.
41
42A brief description of the directory tree:
43
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000044 doc/ the HTML documentation
45 include/ public include files for libFLAC
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000046 src/ the source code and private headers
47 test/ the test scripts
48
49
50=============================
51Building in a GNU environment
52=============================
53
Josh Coalsond1c98582001-01-19 22:37:36 +000054FLAC now uses autoconf and libtool for configuring and
55building. Better documentation for these will be
56forthcoming, but in general, this should work:
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000057
Josh Coalsond1c98582001-01-19 22:37:36 +000058./configure ; make ; make install
Josh Coalsonbfe42f12000-12-22 22:42:25 +000059
Josh Coalson04032562001-07-20 23:43:15 +000060If it doesn't, see the next section on Makefile.lite.
61
Josh Coalson3643db32001-07-18 00:23:06 +000062There are a few FLAC-specific arguments you can give to
63`configure':
64
65--enable-debug : Builds everything with debug symbols and some
66extra (and more verbose) error checking.
67
68--disable-asm-optimizations : Disables the compilation of the
69assembly routines. Many routines have assembly versions for
70speed and `configure' is pretty good about knowing what is
71supported, but you can use this option to build only from the
72C sources.
73
74--sse-os : If you are building for an x86 CPU that supports
75SSE instructions, you can enable some of the faster routines
76if your operating system also supports SSE instructions. flac
77can tell if the CPU supports the instructions but currently has
78no way to test if the OS does, so if it does, you must pass
79this argument to configure to use the SSE routines. If flac
80crashes when built with this option you will have to go back and
81configure without --sse-os. Note that --disable-asm-optimizations
82overrides --sse-os.
Josh Coalson9e6efb62001-05-29 18:48:42 +000083
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000084
Josh Coalson04032562001-07-20 23:43:15 +000085===========================
86Building with Makefile.lite
87===========================
88
89There is a more lightweight build system for do-it-yourself-ers.
90It is also useful if configure isn't working, which may be the
91case since lately we've had some problems with different versions
92of automake and libtool. The Makefile.lite system should work
93on Gnu systems with few or no minor adjustments.
94
95From the top level just 'make -f Makefile.lite'. You can
96specify zero or one optional target from 'release', 'debug',
97'test', or 'clean'. The default is 'release'. There is no
98'install' target but everything you need will end up in the
99obj/ directory.
100
101If you are not on an x86 system or you don't have nasm, you
102may have to change the DEFINES in src/libFLAC/Makefile.lite. If
103you don't have nasm, remove -DFLAC__HAS_NASM. If your target is
104not an x86, change -DFLAC__CPU_IA32 to -DFLAC__CPU_UNKNOWN.
105
106
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000107==================
108Building with MSVC
109==================
110
111There is no overall make system for MSVC but the individual
112source directories with a 'Makefile.vc' file in them allow
Josh Coalson9e6efb62001-05-29 18:48:42 +0000113building with MSVC. Just 'nmake /f Makefile.vc'. Currently
114the Makefile.vc for libFLAC is hardcoded to use nasm. If
115you don't have nasm, or don't want any assembly optimizations,
116edit the makefile, adding '/D FLAC__NO_ASM' and delete the
117rules which compile the .s files.