libvpx-v1.3.0

Introduction to libvpx

This package, from the WebM project, provides the reference implementations of the VP8 Codec, used in most current html5 video, and of the next-generation VP9 Codec.

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

Package Information

The libvpx tarballs are no longer generated by the maintainers. To build from source, the libvpx developers recommend using current git. The source tarball shown above was created by the BLFS team by pulling a git version, and removing .git, .gitattributes and .gitignore. BLFS made no changes to the existing source files.

libvpx Dependencies

Required

yasm-1.2.0 (compiling with NASM-2.11 is currently broken) and Which-2.20 (so configure can find yasm)

Optional

Doxygen-1.8.6 and PHP-5.5.9 (to build the documentation).

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

Installation of libvpx

Install libvpx by running the following commands:

sed -i 's/cp -p/cp/' build/make/Makefile &&
chmod -v 644 vpx/*.h &&
mkdir ../libvpx-build &&
cd ../libvpx-build &&
../libvpx-v1.3.0/configure --prefix=/usr \
                           --enable-shared \
                           --disable-static &&
make

This package does not come with a test suite.

Now, as the root user:

make install

Command Explanations

sed ... && chmod ...: These commands correct ownership and permissions of installed files.

mkdir ../libvpx-build && cd ../libvpx-build: The libvpx developers recommend building in a dedicated build directory.

--disable-vp8: This switch prevents building of VP8 codec support.

--disable-vp9: This switch prevents building of VP9 codec support.

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

Contents

Installed Programs: vp8_scalable_patterns, vp9_spatial_scalable_encoder, vpxdec and vpxenc
Installed Libraries: libvpx.so
Installed Directories: /usr/include/vpx

Short Descriptions

vpxdec

is the WebM Project VP8 and VP9 decoder.

vpxenc

is the WebM project VP8 and VP9 encoder.

libvpx.so

provides functions to use the VP8 and VP9 video codecs.

Last updated on 2014-02-20 13:02:22 -0800