Go to file
2001-05-30 00:46:11 +00:00
build change .nasm extension to .s 2001-05-25 00:21:42 +00:00
doc minor wording 2001-05-14 21:44:29 +00:00
include/FLAC minor comment change 2001-05-29 22:30:35 +00:00
man -r now takes min,max and is called min/max_residual_partition order, new -R option is rice_parameter_search_dist 2001-04-25 02:16:36 +00:00
src use non-mmx of lpc_restore when order < 4 2001-05-30 00:46:11 +00:00
test add test_bins to the suite 2001-05-27 18:34:20 +00:00
configure.in update version number to 0.10 2001-05-29 18:45:05 +00:00
COPYING.GPL Initial revision 2000-12-10 04:09:52 +00:00
COPYING.LGPL Initial revision 2000-12-10 04:09:52 +00:00
Makefile.am initial version 2001-01-19 22:39:39 +00:00
Makefile.lite add metaflac targets 2001-02-23 23:15:00 +00:00
README add instructions related to assembly 2001-05-29 18:48:42 +00:00

===========
FLAC - 0.10
===========

This is the source release for the FLAC project.  The
reference encoder/decoder library 'libFLAC' is released
under the LGPL (see COPYING.LGPL).  This means the code
in include/FLAC/ and src/libFLAC/.  All other code is
covered by the GPL (see COPYING.GPL).  See

	doc/index.html

for full documentation.

A brief description of the directory tree:

	doc/       the HTML documentation
	include/   public include files for libFLAC
	src/       the source code and private headers
	test/      the test scripts


=============================
Building in a GNU environment
=============================

FLAC now uses autoconf and libtool for configuring and
building.  Better documentation for these will be
forthcoming, but in general, this should work:

./configure ; make ; make install

To disable all assembly optimizations, pass the
--disable-asm-optimizations flag to configure.


==================
Building with MSVC
==================

There is no overall make system for MSVC but the individual
source directories with a 'Makefile.vc' file in them allow
building with MSVC.  Just 'nmake /f Makefile.vc'.  Currently
the Makefile.vc for libFLAC is hardcoded to use nasm.  If
you don't have nasm, or don't want any assembly optimizations,
edit the makefile, adding '/D FLAC__NO_ASM' and delete the
rules which compile the .s files.