mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
ffmpeg:
- remove package ffmpeg
This commit is contained in:
parent
74f9dbe462
commit
54661a7637
@ -1,95 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options
|
||||
|
||||
$SCRIPTS/build toolchain
|
||||
$SCRIPTS/build faad2
|
||||
$SCRIPTS/build zlib
|
||||
|
||||
if [ "$VDPAU" = yes ]; then
|
||||
$SCRIPTS/build libvdpau
|
||||
FFMPEG_VDPAU="--enable-vdpau"
|
||||
else
|
||||
FFMPEG_VDPAU="--disable-vdpau"
|
||||
fi
|
||||
|
||||
if [ "$VAAPI" = yes ]; then
|
||||
$SCRIPTS/build libva
|
||||
FFMPEG_VAAPI="--enable-vaapi"
|
||||
else
|
||||
FFMPEG_VAAPI="--disable-vaapi"
|
||||
fi
|
||||
|
||||
cd $PKG_BUILD/
|
||||
./configure --prefix=/usr \
|
||||
--cpu=$TARGET_CPU \
|
||||
--arch=$TARGET_ARCH \
|
||||
--enable-cross-compile \
|
||||
--cross-prefix=$TARGET_PREFIX \
|
||||
--sysroot=$SYSROOT_PREFIX \
|
||||
--extra-cflags="$CFLAGS" \
|
||||
--disable-debug \
|
||||
--enable-stripping \
|
||||
--disable-static \
|
||||
--enable-shared \
|
||||
--enable-gpl \
|
||||
--enable-yasm \
|
||||
--disable-ffplay \
|
||||
--disable-ffserver \
|
||||
--disable-ffmpeg \
|
||||
--enable-postproc \
|
||||
--disable-avfilter \
|
||||
--disable-avfilter-lavf \
|
||||
--enable-pthreads \
|
||||
--disable-x11grab \
|
||||
--disable-ipv6 \
|
||||
--disable-mpegaudio-hp \
|
||||
--disable-gray \
|
||||
--enable-swscale-alpha \
|
||||
--enable-fastdiv \
|
||||
--enable-small \
|
||||
--enable-aandct \
|
||||
--enable-fft \
|
||||
--enable-golomb \
|
||||
--enable-mdct \
|
||||
--enable-rdft \
|
||||
$FFMPEG_VAAPI \
|
||||
$FFMPEG_VDPAU \
|
||||
--disable-encoders \
|
||||
--enable-decoders \
|
||||
--disable-decoder=mpeg_xvmc \
|
||||
--disable-muxers \
|
||||
--enable-demuxers \
|
||||
--enable-parsers \
|
||||
--enable-bsfs \
|
||||
--enable-protocols \
|
||||
--enable-protocol=http \
|
||||
--disable-indevs \
|
||||
--disable-outdevs \
|
||||
--disable-devices \
|
||||
--enable-filters \
|
||||
--disable-avisynth \
|
||||
--disable-bzlib \
|
||||
--disable-libopencore-amrnb \
|
||||
--disable-libopencore-amrwb \
|
||||
--disable-libdc1394 \
|
||||
--disable-libdirac \
|
||||
--disable-libfaac \
|
||||
--enable-libfaad \
|
||||
--disable-libfaadbin \
|
||||
--disable-libgsm \
|
||||
--disable-libmp3lame \
|
||||
--disable-libnut \
|
||||
--disable-libopenjpeg \
|
||||
--disable-libschroedinger \
|
||||
--disable-libspeex \
|
||||
--disable-libtheora \
|
||||
--disable-libvorbis \
|
||||
--disable-libx264 \
|
||||
--disable-libxvid \
|
||||
--disable-mlib \
|
||||
--enable-zlib \
|
||||
|
||||
make
|
||||
|
||||
$MAKEINSTALL
|
@ -1,15 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options
|
||||
|
||||
$SCRIPTS/install zlib
|
||||
$SCRIPTS/install faad2
|
||||
[ "$VAAPI" = yes ] && $SCRIPTS/install libva
|
||||
[ "$VDPAU" = yes ] && $SCRIPTS/install libvdpau
|
||||
|
||||
mkdir -p $INSTALL/usr/lib
|
||||
cp -P $PKG_BUILD/libavcodec/libavcodec.so* $INSTALL/usr/lib
|
||||
cp -P $PKG_BUILD/libavformat/libavformat.so* $INSTALL/usr/lib
|
||||
cp -P $PKG_BUILD/libavutil/libavutil.so* $INSTALL/usr/lib
|
||||
cp -P $PKG_BUILD/libswscale/libswscale.so.* $INSTALL/usr/lib
|
||||
cp -P $PKG_BUILD/libpostproc/libpostproc.so.* $INSTALL/usr/lib
|
File diff suppressed because it is too large
Load Diff
@ -1,12 +0,0 @@
|
||||
diff -Naur ffmpeg-21029.30224-old/libavcodec/Makefile ffmpeg-21029.30224-new/libavcodec/Makefile
|
||||
--- ffmpeg-21029.30224-old/libavcodec/Makefile 2010-01-04 22:46:31.000000000 -0800
|
||||
+++ ffmpeg-21029.30224-new/libavcodec/Makefile 2010-01-05 15:22:26.000000000 -0800
|
||||
@@ -3,7 +3,7 @@
|
||||
NAME = avcodec
|
||||
FFLIBS = avutil
|
||||
|
||||
-HEADERS = avcodec.h opt.h vdpau.h xvmc.h
|
||||
+HEADERS = avcodec.h opt.h vaapi.h vdpau.h xvmc.h
|
||||
|
||||
OBJS = allcodecs.o \
|
||||
audioconvert.o \
|
@ -1 +0,0 @@
|
||||
http://sources.openelec.tv/svn/ffmpeg-21030.tar.bz2
|
Loading…
x
Reference in New Issue
Block a user