• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

libaiff/H20-Sep-2007-443286

LICENSEH A D20-Sep-20071.1 KiB2625

Makefile.inH A D03-May-20221.3 KiB5133

READMEH A D20-Sep-20071.8 KiB6747

TODOH A D20-Sep-2007386 2011

aifx.cH A D20-Sep-20077.7 KiB330254

configureH A D03-May-2022156.9 KiB5,9244,929

configure.acH A D20-Sep-2007706 3929

extended.cH A D20-Sep-20074.2 KiB177100

float32.cH A D20-Sep-200710.6 KiB505309

g711.cH A D20-Sep-20076.2 KiB269165

iff.cH A D20-Sep-20074.2 KiB201120

libaiff.cH A D20-Sep-200720.5 KiB1,134890

lpcm.cH A D20-Sep-20075.9 KiB276199

pascal.cH A D20-Sep-20072.6 KiB12460

private.hH A D20-Sep-20074 KiB184134

README

1$Id: README,v 1.3 2007/09/20 17:13:16 toad32767 Exp $
2
3-----------------------------------------------------------
4TABLE OF CONTENTS
5	1. Compilation and installation of LibAiff on UNIX
6	   systems
7	2. Compilation of LibAiff with Microsoft Visual C
8	3. Using the library
9	4. Reporting bugs, submitting patches, etc.
10-----------------------------------------------------------
11
121. Compilation and installation of LibAiff on UNIX systems
13
14		The default prefix for LIBAIFF installation
15		is `/usr/local'. Prefix means that libraries
16		will be installed on the lib/ subdirectory,
17		includes on the include/ subdirectory and
18		so on.
19
20		You can chose a different prefix with the
21		`--prefix' option of the configuration
22		script.
23		Use `./configure --help' for more details.
24
25		In the following examples, `%' means the
26		shell prompt for a normal system user,
27		and `#' means the shell prompt for a
28		privileged user capable of writing to the
29		selected prefix.
30
31	% ./configure
32	% make
33	# make install
34
35		LibAiff will be installed as a `static library'.
36
37	1.1. Installating the documentation
38
39		While the default installation script does not
40		do so, it is advisable to copy the
41		provided documentation to a system-wide
42		directory such as share/doc/libaiff/:
43
44	# cp MANUAL* /usr/local/share/doc/libaiff/
45
46
472. Compilation of LibAiff with Microsoft Visual C
48	To compile LibAiff you need to provide a <libaiff/config.h> file.
49	LibAiff provides an example <libaiff/config.vc.h> file that you
50	can simply rename to <libaiff/config.h> in order to compile LibAiff
51	with Visual C.
52
533. Using the library
54
55		Please refer to the provided documentation,
56		available in different formats:
57
58	MANUAL: ASCII text/plain version
59	MANUAL.html: HTML text/html UTF-8 version
60
614. Reporting bugs, submitting patches, etc.
62
63	Current LibAiff mantainer:
64		<marcotrillo@gmail.com>
65
66
67