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