Remove Mac OS 9 project files
[platform/upstream/libvorbis.git] / README
1 ********************************************************************
2 *                                                                  *
3 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
7 *                                                                  *
8 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2015             *
9 * by the Xiph.org Foundation, http://www.xiph.org/                 *
10 *                                                                  *
11 ********************************************************************
12
13 Vorbis is a general purpose audio and music encoding format
14 contemporary to MPEG-4's AAC and TwinVQ, the next generation beyond
15 MPEG audio layer 3. Unlike the MPEG sponsored formats (and other
16 proprietary formats such as RealAudio G2 and Windows' flavor of the
17 month), the Vorbis CODEC specification belongs to the public domain.
18 All the technical details are published and documented, and any
19 software entity may make full use of the format without license 
20 fee, royalty or patent concerns.
21
22 This package contains:
23
24 * libvorbis, a BSD-style license software implementation of
25   the Vorbis specification by the Xiph.Org Foundation 
26   (http://www.xiph.org/) 
27
28 * libvorbisfile, a BSD-style license convenience library
29   built on Vorbis designed to simplify common uses
30
31 * libvorbisenc, a BSD-style license library that provides a simple,
32   programmatic encoding setup interface 
33
34 * example code making use of libogg, libvorbis, libvorbisfile and
35   libvorbisenc
36
37 WHAT'S HERE:
38
39 This source distribution includes libvorbis and an example
40 encoder/player to demonstrate use of libvorbis as well as
41 documentation on the Ogg Vorbis audio coding format.
42
43 You'll need libogg (distributed separately) to compile this library.
44 A more comprehensive set of utilities is available in the vorbis-tools
45 package.
46
47 Directory:
48
49 ./lib           The source for the libraries, a BSD-license implementation
50                 of the public domain Ogg Vorbis audio encoding format.
51
52 ./include       Library API headers
53
54 ./debian        Rules/spec files for building Debian .deb packages
55
56 ./doc           Vorbis documentation
57
58 ./examples      Example code illustrating programmatic use of libvorbis, 
59                 libvorbisfile and libvorbisenc
60
61 ./macosx        Project files for MacOS X.
62
63 ./win32         Win32 projects files and build automation
64
65 ./vq            Internal utilities for training/building new LSP/residue 
66                 and auxiliary codebooks.
67
68 CONTACT:
69
70 The Ogg homepage is located at 'http://www.xiph.org/ogg/'.
71 Vorbis's homepage is located at 'http://www.xiph.org/vorbis/'.
72 Up to date technical documents, contact information, source code and
73 pre-built utilities may be found there.
74
75 The user website for Ogg Vorbis software and audio is http://vorbis.com/
76
77 BUILDING FROM TRUNK:
78
79 Development source is under subversion revision control at 
80 https://svn.xiph.org/trunk/vorbis/. You will also need the 
81 newest versions of autoconf, automake, libtool and pkg-config in
82 order to compile Vorbis from development source. A configure script
83 is provided for you in the source tarball distributions.
84
85   [update or checkout latest source]
86   ./autogen.sh
87   make
88
89 and as root if desired:
90
91   make install
92
93 This will install the Vorbis libraries (static and shared) into
94 /usr/local/lib, includes into /usr/local/include and API manpages
95 (once we write some) into /usr/local/man.
96
97 Documentation building requires xsltproc and pdfxmltex.
98
99 BUILDING FROM TARBALL DISTRIBUTIONS:
100
101   ./configure
102   make
103
104 and optionally (as root):
105   make install
106
107 BUILDING RPMS:
108
109 after normal configuring:
110
111   make dist
112   rpm -ta libvorbis-<version>.tar.gz
113
114
115