From: Martin Jansa <martin.jansa@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: Re: [RFC][PATCH] libav: drop older 0.8.11 and use libav-9 by default
Date: Fri, 8 Aug 2014 16:08:15 +0200 [thread overview]
Message-ID: <20140808140815.GG14848@jama> (raw)
In-Reply-To: <1407506787-3692-1-git-send-email-Martin.Jansa@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 6509 bytes --]
On Fri, Aug 08, 2014 at 04:06:27PM +0200, Martin Jansa wrote:
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
> .../gstreamer/gst-ffmpeg_0.10.13.bb | 3 +--
> meta/recipes-multimedia/libav/libav.inc | 8 ++++++++
> .../0001-configure-enable-pic-for-AArch64.patch | 23 ----------------------
> meta/recipes-multimedia/libav/libav_0.8.11.bb | 20 -------------------
> meta/recipes-multimedia/libav/libav_9.13.bb | 12 -----------
> 5 files changed, 9 insertions(+), 57 deletions(-)
> delete mode 100644 meta/recipes-multimedia/libav/libav/0001-configure-enable-pic-for-AArch64.patch
> delete mode 100644 meta/recipes-multimedia/libav/libav_0.8.11.bb
There is at least one missing piece:
gst-ffmpeg_0.10.13.bb:DEPENDS = "gstreamer gst-plugins-base zlib bzip2 yasm-native libpostproc"
so libpostproc recipe from meta-oe would need to be imported to oe-core
> diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb b/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb
> index bd7b8ce..04c08cc 100644
> --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb
> +++ b/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb
> @@ -53,7 +53,7 @@ SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2 \
> file://0001-qdm2-check-array-index-before-use-fix-out-of-array-a.patch \
> file://0001-lavf-compute-probe-buffer-size-more-reliably.patch \
> file://0001-ffserver-set-oformat.patch \
> - ${@bb.utils.contains('PACKAGECONFIG', 'libav9', 'file://libav-9.patch', '', d)} \
> + file://libav-9.patch \
> "
>
> SRC_URI[md5sum] = "7f5beacaf1312db2db30a026b36888c4"
> @@ -80,7 +80,6 @@ EXTRA_OECONF = "${FFMPEG_EXTRA_CONFIGURE_COMMON}"
> PACKAGECONFIG ??= "external-libav"
> PACKAGECONFIG[external-libav] = "--with-system-ffmpeg,,libav"
> PACKAGECONFIG[orc] = "--enable-orc,--disable-orc,orc"
> -PACKAGECONFIG[libav9] = ",,,"
>
> FILES_${PN} += "${libdir}/gstreamer-0.10/*.so"
> FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug"
> diff --git a/meta/recipes-multimedia/libav/libav.inc b/meta/recipes-multimedia/libav/libav.inc
> index 8b470c1..21c29fc 100644
> --- a/meta/recipes-multimedia/libav/libav.inc
> +++ b/meta/recipes-multimedia/libav/libav.inc
> @@ -10,6 +10,13 @@ SECTION = "libs"
> LICENSE = "GPLv2+"
> LICENSE_FLAGS = "commercial"
>
> +LIC_FILES_CHKSUM = "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> + file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \
> + file://COPYING.LGPLv2.1;md5=bd7a443320af8c812e4c18d1b79df004 \
> + file://COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02"
> +
> +SRC_URI = "http://libav.org/releases/${BP}.tar.xz"
> +
> # Provides ffmpeg compat, see http://libav.org/about.html
> PROVIDES = "ffmpeg"
>
> @@ -86,6 +93,7 @@ do_install_append() {
> }
>
> PACKAGES += "${PN}-vhook-dbg ${PN}-vhook ffmpeg-x264-presets"
> +PACKAGES_DYNAMIC += "^lib(av(codec|device|filter|format|util)|swscale).*"
>
> RSUGGESTS_${PN} = "mplayer"
> FILES_${PN} = "${bindir}"
> diff --git a/meta/recipes-multimedia/libav/libav/0001-configure-enable-pic-for-AArch64.patch b/meta/recipes-multimedia/libav/libav/0001-configure-enable-pic-for-AArch64.patch
> deleted file mode 100644
> index d9b22b9..0000000
> --- a/meta/recipes-multimedia/libav/libav/0001-configure-enable-pic-for-AArch64.patch
> +++ /dev/null
> @@ -1,23 +0,0 @@
> -From 58db99e98f615d79ea90cac8f4bcf11c94e3e7c7 Mon Sep 17 00:00:00 2001
> -From: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
> -Date: Thu, 10 Jan 2013 12:42:19 +0100
> -Subject: [PATCH] configure: enable pic for AArch64
> -
> -Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
> -
> -Upstream-Status: Backport
> ----
> - configure | 2 +-
> - 1 file changed, 1 insertion(+), 1 deletion(-)
> -
> ---- git.orig/configure
> -+++ git/configure
> -@@ -2393,7 +2393,7 @@ check_host_cflags -std=c99
> - check_host_cflags -Wall
> -
> - case "$arch" in
> -- alpha|ia64|mips|parisc|ppc|sparc)
> -+ alpha|ia64|mips|parisc|ppc|sparc|aarch64)
> - spic=$shared
> - ;;
> - x86)
> diff --git a/meta/recipes-multimedia/libav/libav_0.8.11.bb b/meta/recipes-multimedia/libav/libav_0.8.11.bb
> deleted file mode 100644
> index 1344a2a..0000000
> --- a/meta/recipes-multimedia/libav/libav_0.8.11.bb
> +++ /dev/null
> @@ -1,20 +0,0 @@
> -require libav.inc
> -
> -SRC_URI = "http://libav.org/releases/${BP}.tar.xz \
> - file://0001-configure-enable-pic-for-AArch64.patch"
> -
> -SRC_URI[md5sum] = "cdc9b53c56a375baf73ea38cf7ade4f9"
> -SRC_URI[sha256sum] = "5934e4f0dbf6e0fc4987de86cdd079f1d11a1410ae275e9f46472af17f05155a"
> -
> -LIC_FILES_CHKSUM = "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> - file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \
> - file://COPYING.LGPLv2.1;md5=e344c8fa836c3a41c4cbd79d7bd3a379 \
> - file://COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02"
> -
> -PROVIDES += "libpostproc"
> -
> -EXTRA_OECONF += " \
> - --enable-postproc \
> -"
> -
> -PACKAGES_DYNAMIC += "^lib(av(codec|device|filter|format|util)|postproc|swscale).*"
> diff --git a/meta/recipes-multimedia/libav/libav_9.13.bb b/meta/recipes-multimedia/libav/libav_9.13.bb
> index f9c413f..e922403 100644
> --- a/meta/recipes-multimedia/libav/libav_9.13.bb
> +++ b/meta/recipes-multimedia/libav/libav_9.13.bb
> @@ -1,16 +1,4 @@
> require libav.inc
>
> -LIC_FILES_CHKSUM = "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> - file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \
> - file://COPYING.LGPLv2.1;md5=bd7a443320af8c812e4c18d1b79df004 \
> - file://COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02"
> -
> -SRC_URI = "http://libav.org/releases/${BP}.tar.xz"
> -
> SRC_URI[md5sum] = "23b9e34bffdaee366710fdf20157a570"
> SRC_URI[sha256sum] = "2ff05df6cd2259b3bb277eb16c234214f8e0530700d0c774d033eba23edde6ca"
> -
> -DEFAULT_PREFERENCE = "-1"
> -
> -# unlike 0.8.11 we don't provide libpostproc
> -PACKAGES_DYNAMIC += "^lib(av(codec|device|filter|format|util)|swscale).*"
> --
> 2.0.4
>
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]
next prev parent reply other threads:[~2014-08-08 14:07 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-16 12:13 [RFC][PATCH] libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11 Martin Jansa
2014-08-06 11:41 ` [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc Martin Jansa
2014-08-06 11:41 ` [PATCH 2/2] libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11 Martin Jansa
2014-08-06 12:41 ` [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc Paul Eggleton
2014-08-06 14:37 ` Martin Jansa
2014-08-06 14:42 ` Paul Eggleton
2014-08-08 10:28 ` Martin Jansa
2014-08-08 13:57 ` [PATCH] gst-ffmpeg: add PACKAGECONFIG for libav9 and patch from Gentoo Martin Jansa
2014-08-16 18:23 ` Martin Jansa
2014-08-08 14:06 ` [RFC][PATCH] libav: drop older 0.8.11 and use libav-9 by default Martin Jansa
2014-08-08 14:08 ` Paul Eggleton
2014-08-08 15:08 ` Martin Jansa
2014-08-08 14:08 ` Martin Jansa [this message]
2014-08-09 3:00 ` [PATCH 1/2] gst-ffmpeg: add dependency on libpostproc Tim Orling
2014-08-10 11:23 ` Paul Eggleton
2014-08-16 18:20 ` [RFC][PATCH] libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11 Martin Jansa
2014-10-30 8:21 ` Martin Jansa
2014-12-10 14:17 ` [PATCHv2 1/4] gst-ffmpeg: add dependency on libpostproc Martin Jansa
2014-12-10 14:17 ` [PATCHv2 2/4] libav: drop unused FFMPEG_LIBS and move libpostproc only to 0.8.11 Martin Jansa
2014-12-10 14:17 ` [PATCHv2 3/4] libav: drop older 0.8.11 and use libav-9 by default Martin Jansa
2014-12-18 16:29 ` Burton, Ross
2014-12-18 17:01 ` Martin Jansa
2014-12-18 17:02 ` [PATCHv3] libav: drop older 0.8.* " Martin Jansa
2014-12-10 14:17 ` [PATCHv2 4/4] libpostproc: import from meta-oe Martin Jansa
2015-01-21 20:49 ` Burton, Ross
2015-01-18 17:05 ` [PATCHv2 1/4] gst-ffmpeg: add dependency on libpostproc Martin Jansa
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140808140815.GG14848@jama \
--to=martin.jansa@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.