gecko/media/liboggplay
2008-12-09 14:00:47 +13:00
..
include Bug 462916 - Update liboggplay to pick up ability to compute Ogg duration - r+sr=roc 2008-11-04 21:06:40 +13:00
src Bug 468327. Disable optimized YUV-RGB conversion on Mac since it's incorrect. r+sr=roc 2008-12-09 14:00:47 +13:00
COPYING Bug 450365 - "media/liboggplay needs COPYING file containing appropriate license" (Add COPYING) [r=reed] 2008-08-19 02:39:03 -05:00
Makefile.in Bug 448834. Move Ogg libraries from modules/ to media/. r+sr=roc 2008-08-06 12:47:37 +12:00
README Bug 448994 – <video> element causes floating point exception [@ oggplay_callback_predetected] when playing theora file (updates liboggplay to svn r3693) 2008-08-13 08:23:42 +02:00
README_MOZILLA Bug 468327. Disable optimized YUV-RGB conversion on Mac since it's incorrect. r+sr=roc 2008-12-09 14:00:47 +13:00
update.sh Bug 468327. Disable optimized YUV-RGB conversion on Mac since it's incorrect. r+sr=roc 2008-12-09 14:00:47 +13:00
yuv2rgb-vanilla-fix.patch Bug 459938 - Fix yuv2rgb in liboggplay to display correct colours - rs=roc 2008-10-29 07:58:22 +13:00
yuv_disable_optimized.patch Bug 468327. Disable optimized YUV-RGB conversion on Mac since it's incorrect. r+sr=roc 2008-12-09 14:00:47 +13:00

OggPlay: a library for playing Ogg multimedia

Overview
--------

The current version of the plugin is still under development therefore
the setup requires manual installation of the plugin. For more information,
see also:

  http://wiki.xiph.org/index.php/OggPlay

Dependencies
------------

For the core library (liboggplay), you need

  * libogg, libvorbis, libtheora, optionally libspeex -- from http://www.xiph.org/

    svn co http://svn.xiph.org/trunk/ogg/ ogg
    svn co http://svn.xiph.org/trunk/vorbis/ vorbis
    svn co http://svn.xiph.org/trunk/theora/ theora

  * liboggz and libfishsound -- from svn.annodex.net:

    svn co http://svn.annodex.net/liboggz/trunk liboggz
    svn co http://svn.annodex.net/libfishsound/trunk libfishsound

Optionally, for Kate stream support, you need

  * libkate -- from http://libkate.googlecode.com/

See the README files associated with these libraries for installation
instructions.

To build src/examples/glut-player, you need:
  * The core liboggplay dependencies (listed above)
  * GLUT -- see http://www.opengl.org/resources/libraries/

To build src/examples/dump-all-streams, you need:
  * The core liboggplay dependencies (listed above)
  * libsndfile -- from http://www.mega-nerd.com/libsndfile/

To build src/tools/oggplay-dump-first-frame, you need:
  * The core liboggplay dependencies (listed above)
  * Imlib2 -- from your distribution or from 
              http://sourceforge.net/project/showfiles.php?group_id=2&package_id=11130

On Debian, the required packages for all these additional libraries are:
  g++ libogg-dev libvorbis-dev libspeex-dev libtheora-dev libsndfile1-dev
  libimlib2-dev libglut-dev

Compile and Install liboggplay
------------------------------

./autogen.sh
./configure
make && make install