libtheora-1.1.1

Introduction to libtheora

Theora is a free and open video compression format.

This package is known to build and work properly using an LFS-7.3 platform.

Package Information

libtheora Dependencies

Required

libogg-1.3.0

Recommended

Optional

SDL-1.2.15 and libpng-1.6.2 (both to build the example players), Doxygen-1.8.3.1, texlive-20120701, BibTex, and Transfig (all four to build the API documentation), Valgrind

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/Libtheora

Installation of libtheora

Install libtheora by running the following commands:

sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c &&
./configure --prefix=/usr &&
make

If you wish to run the tests, issue: make check.

Now, as the root user:

make install

If you built the examples and wish to install them (so that you can hack on theora):

cd examples/.libs &&
for E in *; do
install -v -m755 $E /usr/bin/theora_${E}; done

Command Explanations

sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c: This sed fixes build with libpng 1.6.

--disable-static: This switch prevents building static libraries.

Contents

Installed Programs: None, unless you installed the examples
Installed Libraries: libtheora.{so,a}, libtheoraenc.{so,a}, and libtheoradec.{so,a}
Installed Directories: /usr/include/theora and /usr/share/doc/libtheora-1.1.1

Short Descriptions

libtheora*.{so,a}

libraries provide the functions to read and write video files.

Last updated on 2013-04-05 22:01:58 +0000