Go to file
Ralph Giles 5dbbfd4f68 Run the cmake build as part of make distcheck.
Verify that the CMake build works from a release tarball.
This will give coverage for problems with part of the
CMake build description not being included in the
source package. We still consider the `make dist`
output from the GNU autotools build to be canonical.
2019-08-30 14:58:10 -07:00
cmake CMake: checking type sizes (#48) 2019-07-20 18:27:11 +10:00
doc Improve ogg_stream_state documentation formatting. 2019-08-13 08:55:32 -07:00
include Fix iOS/macOS build with current SDKs. 2019-08-13 09:03:58 -07:00
macosx update CHANGES 2009-06-23 15:52:31 +00:00
src Fix memory leak in test_framing 2019-08-12 11:57:10 -07:00
symbian add support for Symbian OS, from Colin Ward (CSIRO) 2004-08-11 04:20:36 +00:00
win32 Use full platform name in project file 2019-08-30 12:53:51 -07:00
.gitignore Add CMake config-file package generation 2019-04-23 12:05:50 +10:00
.travis.yml Don't update homebrew on macOS travis builds. 2019-08-07 15:58:05 -07:00
appveyor.yml Remove DLL configurations from appveyor.yml and fix platform name for x86 2019-08-30 12:53:51 -07:00
AUTHORS Update the author list with recent contributors. 2011-08-04 17:34:43 +00:00
autogen.sh autotools: use LT_INIT instead of obsolete AM_PROG_LIBTOOL 2018-02-12 11:56:28 -05:00
CHANGES Fix a typo in CHANGES. 2019-08-30 13:35:52 -07:00
CMakeLists.txt CMakeLists.txt: Add detection of uint64_t (#52) 2019-07-22 19:28:38 +10:00
configure.ac configure: drop extra parentheses from --disable-crc help 2019-03-06 16:18:15 -05:00
COPYING REGENTS->FOUNDATION 2002-10-11 06:17:20 +00:00
libogg.spec.in update doc/libogg in libogg.spec.in, as reported by thosmos in #vorbis 2007-11-08 07:44:39 +00:00
Makefile.am Run the cmake build as part of make distcheck. 2019-08-30 14:58:10 -07:00
ogg-uninstalled.pc.in Fixes ogg-uninstalled.pc.in 2017-12-22 10:58:04 -08:00
ogg.m4 Misc. typos 2018-10-09 13:37:51 -07:00
ogg.pc.in This patch adds an -uninstalled.pc file so other libs/tools can use it 2004-07-05 11:21:44 +00:00
README.md modify cmake guide in README 2019-08-30 13:08:24 -07:00
releases.sha2 Add release checksums for libogg-1.3.3 source packages. 2017-11-07 13:04:59 -08:00

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-2015 by the Xiph.Org Foundation https://www.xiph.org/