Reference implementation of the Ogg media container. Mirror of https://git.xiph.org/ogg.git https://xiph.org/ogg/

Ralph Giles 3328abd152 Update documentation version and release date for v1.3.4. hace 4 años
cmake fb05258b8b CMake: checking type sizes (#48) hace 4 años
doc bada457184 Update documentation version and release date for v1.3.4. hace 4 años
include 6449883cca Fix iOS/macOS build with current SDKs. hace 4 años
macosx c60a5250df update CHANGES hace 15 años
src 689371fdc2 Fix memory leak in test_framing hace 4 años
symbian baebf2b97b add support for Symbian OS, from Colin Ward (CSIRO) hace 20 años
win32 6d55ddf64b Use full platform name in project file hace 4 años
.gitignore 6ccfcc2dce Add CMake config-file package generation hace 5 años
.travis.yml ae7aba9fff Don't update homebrew on macOS travis builds. hace 4 años
AUTHORS c8a1e86b9c Update the author list with recent contributors. hace 13 años
CHANGES 13b89bab4d Update CHANGES for v1.3.4. hace 4 años
CMakeLists.txt 67acb227d6 CMakeLists.txt: Add detection of uint64_t (#52) hace 4 años
COPYING 6977847eda hace 21 años
Makefile.am 7abfed1517 Distribute the whole cmake directory. hace 4 años
README.md bada457184 Update documentation version and release date for v1.3.4. hace 4 años
appveyor.yml 771fe5b53f Remove DLL configurations from appveyor.yml and fix platform name for x86 hace 4 años
autogen.sh 572618e3f5 autotools: use LT_INIT instead of obsolete AM_PROG_LIBTOOL hace 6 años
configure.ac 07de4ca9cd Update version for v1.3.4. hace 4 años
libogg.spec.in 7389045722 update doc/libogg in libogg.spec.in, as reported by thosmos in #vorbis hace 16 años
ogg-uninstalled.pc.in 686cb2b4ad Fixes ogg-uninstalled.pc.in hace 6 años
ogg.m4 529ec790cf Misc. typos hace 5 años
ogg.pc.in 7548908a61 This patch adds an -uninstalled.pc file so other libs/tools can use it hace 20 años
releases.sha2 e8e67823fb Add release checksums for libogg-1.3.3 source packages. hace 6 años

README.md

Ogg

Travis Build Status Jenkins Build Status AppVeyor Build Status

Ogg project codecs use the Ogg bitstream format to arrange the raw, compressed bitstream into a more robust, useful form. For example, the Ogg bitstream makes seeking, time stamping and error recovery possible, as well as mixing several sepearate, concurrent media streams into a single physical bitstream.

What's here

This source distribution includes libogg and nothing else. Other modules (eg, the modules libvorbis, vorbis-tools for the Vorbis music codec, libtheora for the Theora video codec) contain the codec libraries for use with Ogg bitstreams.

Directory:

  • src The source for libogg, a BSD-license inplementation of the public domain Ogg bitstream format

  • include Library API headers

  • doc Ogg specification and libogg API documents

  • win32 Win32 projects and build automation

  • macosx Mac OS X project and build files

Contact

The Ogg homepage is located at https://www.xiph.org/ogg/ . Up to date technical documents, contact information, source code and pre-built utilities may be found there.

Building

Building from tarball distributions

./configure
make

and optionally (as root):

make install

This will install the Ogg libraries (static and shared) into /usr/local/lib, includes into /usr/local/include and API documentation into /usr/local/share/doc.

Building from repository source

A standard svn build should consist of nothing more than:

./autogen.sh
./configure
make

and as root if desired :

make install

Building on Windows

Use the project file in the win32 directory. It should compile out of the box.

Cross-compiling from Linux to Windows

It is also possible to cross compile from Linux to windows using the MinGW cross tools and even to run the test suite under Wine, the Linux/*nix windows emulator.

On Debian and Ubuntu systems, these cross compiler tools can be installed by doing:

sudo apt-get mingw32 mingw32-binutils mingw32-runtime wine

Once these tools are installed its possible to compile and test by executing the following commands, or something similar depending on your system:

./configure --host=i586-mingw32msvc --target=i586-mingw32msvc --build=i586-linux
make
make check

(Build instructions for Ogg codecs such as vorbis are similar and may be found in those source modules' README files)

Building with CMake

Ogg supports building using CMake. CMake is a meta build system that generates native projects for each platform. To generate projects just run cmake replacing YOUR-PROJECT-GENERATOR with a proper generator from a list here:

mkdir build
cd build
cmake -G YOUR-PROJECT-GENERATOR ..

Note that by default cmake generates projects that will build static libraries. To generate projects that will build dynamic library use BUILD_SHARED_LIBS option like this:

cmake -G YOUR-PROJECT-GENERATOR -DBUILD_SHARED_LIBS=1 ..

After projects are generated use them as usual

Building on Windows

Use proper generator for your Visual Studio version like:

cmake -G "Visual Studio 12 2013" ..

Building on Mac OS X

Use Xcode generator. To build framework run:

cmake -G Xcode -DBUILD_FRAMEWORK=1 ..

Building on Linux

Use Makefile generator which is default one.

cmake ..
make

License

THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.

THE OggVorbis SOURCE CODE IS COPYRIGHT (C) 1994-2019 by the Xiph.Org Foundation https://www.xiph.org/