diff options
author | Shane Wang <shane.wang@intel.com> | 2011-12-23 00:25:19 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-03 12:14:21 +0000 |
commit | 9fd65874fe5b921f26affa02d8b8fdbf4959774f (patch) | |
tree | e797c4ebf693a13758f04a708feaebb86374983f /meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb | |
parent | c57aec1647c961c7fbe6a7d8394417b2e731dc1a (diff) | |
download | poky-9fd65874fe5b921f26affa02d8b8fdbf4959774f.tar.gz |
gst-ffmpeg: upgrade to 0.10.13
This patch is to upgrade gst-ffmpeg to 0.10.13.
Some license files are changed because the folder "ffmpeg" disappears, and those license files under "libav" are the same. LICENSE is different because the word "ffmpeg" is changed into "libav" under the libav folder.
Again, gst-ffmpeg tar ball contains library libav itself. So the configure needs to disable yasm for x86.
(From OE-Core rev: 5c86f5506a060e2005fcdad0b46ca650598a94af)
Signed-off-by: Shane Wang <shane.wang@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb b/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb new file mode 100644 index 0000000000..a1b7cbbe53 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb | |||
@@ -0,0 +1,39 @@ | |||
1 | DESCRIPTION = "FFmpeg-based GStreamer plug-in" | ||
2 | SECTION = "multimedia" | ||
3 | LICENSE = "GPLv2+ & LGPLv2+ & ( (GPLv2+ & LGPLv2.1+) | (GPLv3+ & LGPLv3+) )" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
5 | file://ext/libpostproc/gstpostproc.c;beginline=1;endline=18;md5=5896e445e41681324381f5869ee33d38 \ | ||
6 | file://COPYING.LIB;md5=55ca817ccb7d5b5b66355690e9abc605 \ | ||
7 | file://ext/ffmpeg/gstffmpeg.h;beginline=1;endline=18;md5=ff65467b0c53cdfa98d0684c1bc240a9 \ | ||
8 | file://gst-libs/ext/libav/LICENSE;md5=abc3b8cb02856aa7823bbbd162d16232 \ | ||
9 | file://gst-libs/ext/libav/COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
10 | file://gst-libs/ext/libav/COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \ | ||
11 | file://gst-libs/ext/libav/COPYING.LGPLv2.1;md5=e344c8fa836c3a41c4cbd79d7bd3a379 \ | ||
12 | file://gst-libs/ext/libav/COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02" | ||
13 | HOMEPAGE = "http://www.gstreamer.net/" | ||
14 | DEPENDS = "gstreamer gst-plugins-base zlib" | ||
15 | |||
16 | inherit autotools pkgconfig | ||
17 | |||
18 | SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2 \ | ||
19 | file://lower-rank.diff \ | ||
20 | file://configure-fix.patch \ | ||
21 | " | ||
22 | |||
23 | SRC_URI[md5sum] = "7f5beacaf1312db2db30a026b36888c4" | ||
24 | SRC_URI[sha256sum] = "76fca05b08e00134e3cb92fa347507f42cbd48ddb08ed3343a912def187fbb62" | ||
25 | |||
26 | PR = "r0" | ||
27 | |||
28 | EXTRA_OECONF = "--with-ffmpeg-extra-configure=\"--target-os=linux\" " | ||
29 | |||
30 | # yasm not found, use --disable-yasm for a crippled build for libav | ||
31 | EXTRA_OECONF_append_x86-64 = " --disable-yasm " | ||
32 | EXTRA_OECONF_append_x86 = " --disable-yasm " | ||
33 | |||
34 | FILES_${PN} += "${libdir}/gstreamer-0.10/*.so" | ||
35 | FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug" | ||
36 | FILES_${PN}-dev += "${libdir}/gstreamer-0.10/*.la ${libdir}/gstreamer-0.10/*.a" | ||
37 | |||
38 | # Hack to get STAGING_LIBDIR into the linker path when building ffmpeg | ||
39 | CC = "${CCACHE} ${HOST_PREFIX}gcc ${TARGET_CC_ARCH} -L${STAGING_LIBDIR}" | ||