Difference between revisions of "FFmpeg"
From CBLFS
Jump to navigationJump to searchLine 35: | Line 35: | ||
sed -i "s/static uint64/const uint64/" \ | sed -i "s/static uint64/const uint64/" \ | ||
libavcodec/liba52/resample_mmx.c && | libavcodec/liba52/resample_mmx.c && | ||
− | ./configure --prefix=/usr --enable-shared | + | ./configure --prefix=/usr --enable-shared --enable-pthreads && |
− | |||
− | |||
make | make | ||
Line 53: | Line 51: | ||
patch -Np1 -i ../ffmpeg-0.4.9-pre1-amr_fixes-1.patch && | patch -Np1 -i ../ffmpeg-0.4.9-pre1-amr_fixes-1.patch && | ||
CC="gcc ${BUILD32}" USE_ARCH=32 CFLAGS="-fPIC" ./configure --prefix=/usr \ | CC="gcc ${BUILD32}" USE_ARCH=32 CFLAGS="-fPIC" ./configure --prefix=/usr \ | ||
− | --enable-shared --enable-pthreads | + | --enable-shared --enable-pthreads && |
− | |||
make CC="gcc ${BUILD32}" | make CC="gcc ${BUILD32}" | ||
Line 68: | Line 65: | ||
patch -Np1 -i ../ffmpeg-0.4.9-pre1-amr_fixes-1.patch && | patch -Np1 -i ../ffmpeg-0.4.9-pre1-amr_fixes-1.patch && | ||
CC="gcc ${BUILDN32}" USE_ARCH=n32 CFLAGS="-fPIC" ./configure --prefix=/usr \ | CC="gcc ${BUILDN32}" USE_ARCH=n32 CFLAGS="-fPIC" ./configure --prefix=/usr \ | ||
− | --enable-shared --enable-pthreads | + | --enable-shared --enable-pthreads && |
− | |||
make CC="gcc ${BUILDN32}" | make CC="gcc ${BUILDN32}" | ||
Line 83: | Line 79: | ||
patch -Np1 -i ../ffmpeg-0.4.9-pre1-amr_fixes-1.patch && | patch -Np1 -i ../ffmpeg-0.4.9-pre1-amr_fixes-1.patch && | ||
CC="gcc ${BUILD64}" USE_ARCH=64 CFLAGS="-fPIC" ./configure --prefix=/usr \ | CC="gcc ${BUILD64}" USE_ARCH=64 CFLAGS="-fPIC" ./configure --prefix=/usr \ | ||
− | --enable-shared --enable-pthreads | + | --enable-shared --enable-pthreads && |
− | |||
make CC="gcc ${BUILD64}" | make CC="gcc ${BUILD64}" | ||
Revision as of 13:54, 9 October 2006
Dependencies
Optional
Non-Multilib
Compile the package:
patch -Np1 -i ../ffmpeg-0.4.9-pre1-gcc4-1.patch && patch -Np1 -i ../ffmpeg-0.4.9-pre1-amr_fixes-1.patch && sed -i "s/static uint64/const uint64/" \ libavcodec/liba52/resample_mmx.c &&
./configure --prefix=/usr --enable-shared --enable-pthreads &&
make
Install the package
make install
Multilib
32Bit
Compile the package:
patch -Np1 -i ../ffmpeg-0.4.9-pre1-gcc4-1.patch && patch -Np1 -i ../ffmpeg-0.4.9-pre1-amr_fixes-1.patch && CC="gcc ${BUILD32}" USE_ARCH=32 CFLAGS="-fPIC" ./configure --prefix=/usr \ --enable-shared --enable-pthreads && make CC="gcc ${BUILD32}"
Install the package
make install
N32
Compile the package:
patch -Np1 -i ../ffmpeg-0.4.9-pre1-gcc4-1.patch && patch -Np1 -i ../ffmpeg-0.4.9-pre1-amr_fixes-1.patch && CC="gcc ${BUILDN32}" USE_ARCH=n32 CFLAGS="-fPIC" ./configure --prefix=/usr \ --enable-shared --enable-pthreads && make CC="gcc ${BUILDN32}"
Install the package
make install
64Bit
Compile the package:
patch -Np1 -i ../ffmpeg-0.4.9-pre1-gcc4-1.patch && patch -Np1 -i ../ffmpeg-0.4.9-pre1-amr_fixes-1.patch && CC="gcc ${BUILD64}" USE_ARCH=64 CFLAGS="-fPIC" ./configure --prefix=/usr \ --enable-shared --enable-pthreads && make CC="gcc ${BUILD64}"
Install the package
make install