• Home
Name Date Size #Lines LOC

..--

doc/03-May-2024-33,44728,734

examples/03-May-2024-2,1851,515

include/03-May-2024-1,8501,150

lib/03-May-2024-63,14654,241

m4/03-May-2024-653560

macos/03-May-2024-152109

macosx/03-May-2024-504489

symbian/03-May-2024-13580

test/03-May-2024-1,007729

vq/03-May-2024-5,0113,587

win32/03-May-2024-4,1564,113

.gitignoreD03-May-2024263 3230

AUTHORSD03-May-202465 42

Android.mkD03-May-20241.1 KiB3731

CHANGESD03-May-20243.7 KiB10178

COPYINGD03-May-20241.4 KiB2923

Makefile.amD03-May-2024960 4633

Makefile.inD03-May-202424.4 KiB775689

READMED03-May-20244.8 KiB13595

aclocal.m4D03-May-2024310 KiB8,9227,993

autogen.shD03-May-20243.8 KiB130112

compileD03-May-20243.6 KiB14379

config.guessD03-May-202443.2 KiB1,5011,289

config.h.inD03-May-20242.6 KiB9265

config.subD03-May-202431.7 KiB1,6091,465

configureD03-May-2024445.6 KiB15,65212,380

configure.acD03-May-20249.3 KiB298253

depcompD03-May-202415.6 KiB531330

install-shD03-May-20249 KiB324189

libvorbis.specD03-May-20243.2 KiB12293

libvorbis.spec.inD03-May-20243.2 KiB12299

ltmain.shD03-May-2024237.7 KiB8,4146,482

missingD03-May-202410.8 KiB361268

todo.txtD03-May-2024490 2314

vorbis-uninstalled.pc.inD03-May-2024308 1512

vorbis.m4D03-May-20244.7 KiB137123

vorbis.pc.inD03-May-2024285 1512

vorbisenc-uninstalled.pc.inD03-May-2024374 1512

vorbisenc.pc.inD03-May-2024361 1512

vorbisfile-uninstalled.pc.inD03-May-2024400 1512

vorbisfile.pc.inD03-May-2024387 1512

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-2007             *
9* by the Xiph.org Foundation, http://www.xiph.org/                 *
10*                                                                  *
11********************************************************************
12
13Vorbis is a general purpose audio and music encoding format
14contemporary to MPEG-4's AAC and TwinVQ, the next generation beyond
15MPEG audio layer 3. Unlike the MPEG sponsored formats (and other
16proprietary formats such as RealAudio G2 and Windows' flavor of the
17month), the Vorbis CODEC specification belongs to the public domain.
18All the technical details are published and documented, and any
19software entity may make full use of the format without license
20fee, royalty or patent concerns.
21
22This 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
37WHAT'S HERE:
38
39This source distribution includes libvorbis and an example
40encoder/player to demonstrate use of libvorbis as well as
41documentation on the Ogg Vorbis audio coding format.
42
43You'll need libogg (distributed separately) to compile this library.
44A more comprehensive set of utilities is available in the vorbis-tools
45package.
46
47Directory:
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./mac 		Codewarrior project files and build tweaks for MacOS.
62
63./macosx 	Project files for MacOS X.
64
65./win32		Win32 projects files and build automation
66
67./vq 		Internal utilities for training/building new LSP/residue
68		and auxiliary codebooks.
69
70CONTACT:
71
72The Ogg homepage is located at 'http://www.xiph.org/ogg/'.
73Vorbis's homepage is located at 'http://www.xiph.org/vorbis/'.
74Up to date technical documents, contact information, source code and
75pre-built utilities may be found there.
76
77The user website for Ogg Vorbis software and audio is http://vorbis.com/
78
79BUILDING FROM TRUNK:
80
81Development source is under subversion revision control at
82https://svn.xiph.org/trunk/vorbis/. You will also need the
83newest versions of autoconf, automake, libtool and pkg-config in
84order to compile Vorbis from development source. A configure script
85is provided for you in the source tarball distributions.
86
87  [update or checkout latest source]
88  ./autogen.sh
89  make
90
91and as root if desired:
92
93  make install
94
95This will install the Vorbis libraries (static and shared) into
96/usr/local/lib, includes into /usr/local/include and API manpages
97(once we write some) into /usr/local/man.
98
99Documentation building requires xsltproc and pdfxmltex.
100
101BUILDING FROM TARBALL DISTRIBUTIONS:
102
103  ./configure
104  make
105
106and optionally (as root):
107  make install
108
109BUILDING RPMS:
110
111after normal configuring:
112
113  make dist
114  rpm -ta libvorbis-<version>.tar.gz
115
116BUILDING ON MACOS 9:
117
118Vorbis on MacOS 9 is built using Metroworks CodeWarrior.  To build it,
119first verify that the Ogg libraries are already built following the
120instructions in the Ogg module README.  Open vorbis/mac/libvorbis.mcp,
121switch to the "Targets" pane, select everything, and make the project.
122Do the same thing to build libvorbisenc.mcp, and libvorbisfile.mcp (in
123that order).  In vorbis/mac/Output you will now have both debug and final
124versions of Vorbis shared libraries to link your projects against.
125
126To build a project using Ogg Vorbis, add access paths to your
127CodeWarrior project for the ogg/include, ogg/mac/Output,
128vorbis/include, and vorbis/mac/Output folders.  Be sure that
129"interpret DOS and Unix paths" is turned on in your project; it can
130be found in the "access paths" pane in your project settings.  Now
131simply add the shared libraries you need to your project (OggLib and
132VorbisLib at least) and #include "ogg/ogg.h" and "vorbis/codec.h"
133wherever you need to access Ogg and Vorbis functionality.
134
135