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

willson-chen 6e9f7cc2f6 src/framing.c: close compile warning under windows whith msbuild 4 年之前
cmake fb05258b8b CMake: checking type sizes (#48) 4 年之前
doc 68ca384156 doc: fix typo 4 年之前
include c8fca6b4a0 os_types: fix unsigned typedefs for MacOS 4 年之前
macosx c60a5250df update CHANGES 15 年之前
src 6e9f7cc2f6 src/framing.c: close compile warning under windows whith msbuild 4 年之前
symbian baebf2b97b add support for Symbian OS, from Colin Ward (CSIRO) 20 年之前
win32 6d55ddf64b Use full platform name in project file 4 年之前
.gitignore 6ccfcc2dce Add CMake config-file package generation 5 年之前
.travis.yml ae7aba9fff Don't update homebrew on macOS travis builds. 4 年之前
AUTHORS c8a1e86b9c Update the author list with recent contributors. 12 年之前
CHANGES 13b89bab4d Update CHANGES for v1.3.4. 4 年之前
CMakeLists.txt 67acb227d6 CMakeLists.txt: Add detection of uint64_t (#52) 4 年之前
COPYING 6977847eda 21 年之前
Makefile.am 7abfed1517 Distribute the whole cmake directory. 4 年之前
README.md 992eb2fe80 README: Remove trailing whitespace. 4 年之前
appveyor.yml 771fe5b53f Remove DLL configurations from appveyor.yml and fix platform name for x86 4 年之前
autogen.sh 572618e3f5 autotools: use LT_INIT instead of obsolete AM_PROG_LIBTOOL 6 年之前
configure.ac 07de4ca9cd Update version for v1.3.4. 4 年之前
libogg.spec.in 7389045722 update doc/libogg in libogg.spec.in, as reported by thosmos in #vorbis 16 年之前
ogg-uninstalled.pc.in 686cb2b4ad Fixes ogg-uninstalled.pc.in 6 年之前
ogg.m4 529ec790cf Misc. typos 5 年之前
ogg.pc.in 7548908a61 This patch adds an -uninstalled.pc file so other libs/tools can use it 20 年之前
releases.sha2 d50b8d7ac0 Add release checksums for libogg-1.3.4 source packages. 4 年之前

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

Testing

This package includes a collection of automated tests. Running them is not part of building nor installation but optional.

Unix-like System or MinGW

If build under automake:

make check

If build under CMake:

make test

or:

ctest

Windows with MSBuild

If build with configuration type "Debug", then:

ctest -C Debug

If build with configuration type "Release", then:

ctest -C Release

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/