Merge pull request #1180 from awiouy/x264

emby: reintroduce libx264
This commit is contained in:
Christian Hewitt 2017-01-16 06:42:45 +04:00 committed by GitHub
commit 5fdbcd9675
4 changed files with 11 additions and 2 deletions

View File

@ -18,7 +18,7 @@
PKG_NAME="ffmpegx"
PKG_VERSION="libreelec"
PKG_REV="5"
PKG_REV="6"
PKG_ARCH="any"
PKG_LICENSE="LGPLv2.1+"
PKG_SITE="https://ffmpeg.org"
@ -46,6 +46,11 @@ pre_configure_target() {
FFMPEG_RPI_HADE="--enable-mmal --enable-omx-rpi"
fi
# ffmpeg does not build with libx264 on aarch64
if [ "$TARGET_ARCH" != "aarch64" ]; then
FFMPEG_X264="--enable-libx264"
fi
if [ "$TARGET_ARCH" == "arm" ]; then
FFMPEG_ARM_AO="--enable-hardcoded-tables"
fi

View File

@ -1,3 +1,6 @@
110
- Rebuild ffmpegx with libx264
109
- Rebuilt ffmpgex and imagemagick

View File

@ -18,7 +18,7 @@
PKG_NAME="emby"
PKG_VERSION="3.0.8500"
PKG_REV="109"
PKG_REV="110"
PKG_ARCH="any"
PKG_LICENSE="OSS"
PKG_SITE="http://emby.media"

View File

@ -56,4 +56,5 @@ pre_configure_target() {
export CPPFLAGS_FOR_BUILD="$HOST_CPPFLAGS"
export CFLAGS_FOR_BUILD="$HOST_CFLAGS"
export LDFLAGS_FOR_BUILD="$HOST_LDFLAGS"
unset PKG_CONFIG_ALLOW_SYSTEM_CFLAGS
}