libFAME is a fast (real-time) MPEG-1 as well as MPEG-4 rectangular and arbitrary shaped video encoding library.
Download (HTTP): http://downloads.sourceforge.net/fame/libfame-0.9.1.tar.gz
Download (FTP): ftp://ftp.fu-berlin.de/unix/linux/mirrors/gentoo/distfiles/libfame-0.9.1.tar.gz
Download MD5 sum: 880085761e17a3b4fc41f4f6f198fd3b
Download size: 290 KB
Estimated disk space required: 6.6 MB
Estimated build time: 0.2 SBU
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libfame
Install libFAME by running the following commands:
patch -Np1 -i ../libfame-0.9.1-gcc34-1.patch && sed -i 's/$CC --version/$CC -dumpversion/' configure && ./configure --prefix=/usr && make
This package does not come with a test suite.
Now, as the root user:
make install
sed -i 's/$CC --version/$CC -dumpversion/' configure: This command causes the configure script to use a different command to find out the version of the compiler. Without this command, the -fstrict-aliasing flag is not added to the CFLAGS variable in the various Makefiles.
--enable-sse: This option is off by default and should be set on if your machine has SSE capability. One way to find out if you have SSE is to issue cat /proc/cpuinfo and see if sse is listed in the flags.
Last updated on 2007-01-15 17:25:53 -0600