summaryrefslogtreecommitdiff
path: root/meta-openvuplus/recipes-multimedia
diff options
context:
space:
mode:
authorhschang <chang@dev3>2015-02-03 05:10:17 (GMT)
committerhschang <chang@dev3>2015-02-05 07:29:20 (GMT)
commit5efe827819fad2ea2cf2671e13f26d61621e6721 (patch)
treeacb4392dff0ce59904af67487b62473fe1854308 /meta-openvuplus/recipes-multimedia
parent44a03bcd91c13fdb31e1a20423d2dd01247a955d (diff)
Remove libdca.
Diffstat (limited to 'meta-openvuplus/recipes-multimedia')
-rw-r--r--meta-openvuplus/recipes-multimedia/gstreamer1.0/gstreamer1.0-plugin-dvbmediasink.bb2
-rw-r--r--meta-openvuplus/recipes-multimedia/gstreamer1.0/gstreamer1.0-plugins-bad_1.4.%.bbappend2
-rw-r--r--meta-openvuplus/recipes-multimedia/vlc/libdca_0.0.5-5.bb21
3 files changed, 2 insertions, 23 deletions
diff --git a/meta-openvuplus/recipes-multimedia/gstreamer1.0/gstreamer1.0-plugin-dvbmediasink.bb b/meta-openvuplus/recipes-multimedia/gstreamer1.0/gstreamer1.0-plugin-dvbmediasink.bb
index b444996..016e149 100644
--- a/meta-openvuplus/recipes-multimedia/gstreamer1.0/gstreamer1.0-plugin-dvbmediasink.bb
+++ b/meta-openvuplus/recipes-multimedia/gstreamer1.0/gstreamer1.0-plugin-dvbmediasink.bb
@@ -4,7 +4,7 @@ PRIORITY = "optional"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
-DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base libdca"
+DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base"
GSTVERSION = "1.0"
diff --git a/meta-openvuplus/recipes-multimedia/gstreamer1.0/gstreamer1.0-plugins-bad_1.4.%.bbappend b/meta-openvuplus/recipes-multimedia/gstreamer1.0/gstreamer1.0-plugins-bad_1.4.%.bbappend
index 814e9c8..8c0b734 100644
--- a/meta-openvuplus/recipes-multimedia/gstreamer1.0/gstreamer1.0-plugins-bad_1.4.%.bbappend
+++ b/meta-openvuplus/recipes-multimedia/gstreamer1.0/gstreamer1.0-plugins-bad_1.4.%.bbappend
@@ -1,5 +1,5 @@
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-DEPENDS += "librtmp libdca"
+DEPENDS += "librtmp"
EXTRA_OECONF := "${@bb.data.getVar('EXTRA_OECONF',d,1).replace('--disable-rtmp', '--enable-rtmp --enable-mpegdemux').replace('--disable-dts', '--enable-dts')}"
PACKAGECONFIG += "faac faad libmms hls dash smoothstreaming webp rtmp"
SRC_URI += "file://0001-rtmp-fix-seeking-and-potential-segfault.patch"
diff --git a/meta-openvuplus/recipes-multimedia/vlc/libdca_0.0.5-5.bb b/meta-openvuplus/recipes-multimedia/vlc/libdca_0.0.5-5.bb
deleted file mode 100644
index d80bf2d..0000000
--- a/meta-openvuplus/recipes-multimedia/vlc/libdca_0.0.5-5.bb
+++ /dev/null
@@ -1,21 +0,0 @@
-SUMMARY = "decoding library for DTS Coherent Acoustics streams"
-SECTION = "libs/multimedia"
-LICENSE = "GPLv2+"
-LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
-SRCREV = "4f6b5d6e6fb35994c342de95bf05e20117da549b"
-PR = "r1"
-DEPENDS += "quilt-native"
-
-SRC_URI = "git://anonscm.debian.org/collab-maint/${PN}.git;protocol=git"
-
-S = "${WORKDIR}/git"
-
-inherit autotools-brokensep lib_package pkgconfig
-
-do_unpackpost() {
- QUILT_PATCHES=debian/patches quilt push -a
- # single precision is enough and speeds up libdca by about 10-15%
- sed -i -e 's/double/sample_t/g' ${S}/libdca/*.c ${S}/libdca/*.h
-}
-
-addtask unpackpost after do_patch before do_configure