gst-plugins-bad: remove (gstreamer 0.x)

This commit is contained in:
Michael Gehring 2017-05-16 07:57:44 +00:00
parent 74defa08fd
commit 4a63f843ef
7 changed files with 0 additions and 100 deletions

View File

@ -687,8 +687,6 @@ libgmime-2.6.so.0 gmime-2.6.4_1
libtotem-plparser.so.18 totem-pl-parser-3.10.0_1
libtotem-plparser-mini.so.18 totem-pl-parser-3.10.0_1
libgladeui-2.so.6 libgladeui3-3.10.0_1
libgstcodecparsers-0.10.so.23 gst-plugins-bad-0.10.23_1
libgstbasevideo-0.10.so.23 gst-plugins-bad-0.10.23_1
libtdb.so.1 libtdb-1.2.2_1
libgssdp-1.0.so.3 gssdp-0.9.0_1
libgupnp-1.0.so.4 gupnp-0.18.0_1

View File

@ -1 +0,0 @@
gst-plugins-bad

View File

@ -1,26 +0,0 @@
--- ext/vp8/gstvp8utils.h 2015-04-21 03:31:33.134952881 +0300
+++ ext/vp8/gstvp8utils.h 2015-04-21 03:32:45.553520671 +0300
@@ -25,23 +25,6 @@
G_BEGIN_DECLS
-/* Some compatibility defines for older libvpx versions */
-#ifndef VPX_IMG_FMT_I420
-#define VPX_IMG_FMT_I420 IMG_FMT_I420
-#endif
-
-#ifndef VPX_PLANE_Y
-#define VPX_PLANE_Y PLANE_Y
-#endif
-
-#ifndef VPX_PLANE_U
-#define VPX_PLANE_U PLANE_U
-#endif
-
-#ifndef VPX_PLANE_V
-#define VPX_PLANE_V PLANE_V
-#endif
-
const char * gst_vpx_error_name (vpx_codec_err_t status);
G_END_DECLS

View File

@ -1,22 +0,0 @@
--- gst/vmnc/vmncdec.c
+++ gst/vmnc/vmncdec.c
@@ -370,7 +370,7 @@ vmnc_handle_wmvi_rectangle (GstVMncDec *
if (dec->imagedata)
g_free (dec->imagedata);
- dec->imagedata = g_malloc (dec->format.width * dec->format.height *
+ dec->imagedata = g_malloc0 (dec->format.width * dec->format.height *
dec->format.bytes_per_pixel);
GST_DEBUG_OBJECT (dec, "Allocated image data at %p", dec->imagedata);
@@ -901,6 +901,10 @@ vmnc_handle_packet (GstVMncDec * dec, co
GST_WARNING_OBJECT (dec, "Rectangle out of range, type %d", r.type);
return ERROR_INVALID;
}
+ } else if (r.width > 16384 || r.height > 16384) {
+ GST_WARNING_OBJECT (dec, "Width or height too high: %ux%u", r.width,
+ r.height);
+ return ERROR_INVALID;
}
switch (r.type) {

View File

@ -1,11 +0,0 @@
--- ext/modplug/gstmodplug.cc.orig 2014-04-03 12:41:52.051813074 +0200
+++ ext/modplug/gstmodplug.cc 2014-04-03 12:42:08.906719756 +0200
@@ -50,7 +50,7 @@
#define WORDS_BIGENDIAN 0
#endif
-#include <stdafx.h>
+#include <libmodplug/stdafx.h>
#include <libmodplug/sndfile.h>
#include "gstmodplug.h"

View File

@ -1,37 +0,0 @@
# Template file for 'gst-plugins-bad'.
pkgname=gst-plugins-bad
version=0.10.23
revision=23
lib32disabled=yes
build_style=gnu-configure
configure_args="--enable-experimental --disable-static --disable-nsf"
hostmakedepends="automake libtool pkg-config intltool glib-devel gettext-devel"
makedepends="gettext-devel libpng-devel alsa-lib-devel celt-devel libressl-devel
gst-plugins-base-devel libdca-devel orc-devel libmms-devel exempi-devel
libexif-devel libmpcdec-devel faac-devel SDL-devel libpng-devel
faad2-devel libdvdread-devel libdvdnav-devel librsvg-devel libsndfile-devel
xvidcore-devel jasper-devel libmodplug-devel neon-devel libcurl-devel
libvpx-devel libvdpau-devel libgsm-devel librtmp-devel"
# Requires libgstfft-0.10.so.0 from gst-plugins-base-0.10.36.
depends="gst-plugins-base>=0.10.36"
short_desc="GStreamer plugins from the bad set"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="GPL-2, LGPL-2.1"
homepage="http://gstreamer.freedesktop.org"
distfiles="$homepage/src/$pkgname/$pkgname-$version.tar.xz"
checksum=03cf0786391c64625569072e904082a08861f05a63d64b2f8e8dad3f26d81bf9
pre_configure() {
NOCONFIGURE=1 ./autogen.sh
}
gst-plugins-bad-devel_package() {
depends="gst-plugins-base-devel ${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
vmove usr/share/gtk-doc
}
}

View File

@ -1 +0,0 @@
ignore="0.11.* 1.*"