summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorwiz <wiz>2006-02-13 19:19:44 +0000
committerwiz <wiz>2006-02-13 19:19:44 +0000
commit86530b507c503f63a0375a7941a73f5a4cf1b7f1 (patch)
tree92a2bc3d84112a63a89f487a4488993c88a19ace /multimedia
parentcab5a48c0215343b4b4a620dc10d7393013e6fac (diff)
downloadpkgsrc-86530b507c503f63a0375a7941a73f5a4cf1b7f1.tar.gz
Update to 0.10.3:
Changes since 0.10.2: * typefind improvements * Ogg decoding and encoding fixes * Improved audio and video sink classes * Bug and leak fixes * Improved video scaling * On-the-fly visualisation switching * Subtitle support Bugs fixed since 0.10.2: * 330244 : gsttextoverlay.c:895: 'struct _GstCollectData' has no mem... * 324000 : [playbin] post error or message on unknown input * 153004 : [typefind] can't identify mp3 file with one single mpeg f... * 323874 : [playbin] leaks sinks and threads when using gconfaudiosink * 324626 : ffmpegcolorspace support for fourcc " UYVY " * 326447 : check that all elements in -base pass queries they can't ... * 328263 : Fix build with gcc 2.95 * 328279 : [decodebin] timeout issue when pre-rolling * 329326 : Fix oggmux removing pads from collect pads
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/gst-plugins0.10-base/Makefile3
-rw-r--r--multimedia/gst-plugins0.10-base/distinfo9
-rw-r--r--multimedia/gst-plugins0.10-base/patches/patch-ac58
-rw-r--r--multimedia/gst-plugins0.10-base/plugins.mk4
4 files changed, 7 insertions, 67 deletions
diff --git a/multimedia/gst-plugins0.10-base/Makefile b/multimedia/gst-plugins0.10-base/Makefile
index 1c09c5a3f00..8ebb5a7e029 100644
--- a/multimedia/gst-plugins0.10-base/Makefile
+++ b/multimedia/gst-plugins0.10-base/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.3 2006/02/05 23:10:15 joerg Exp $
+# $NetBSD: Makefile,v 1.4 2006/02/13 19:19:44 wiz Exp $
#
.include "Makefile.common"
-PKGREVISION= 1
COMMENT+= base plugins
USE_TOOLS+= perl:run
diff --git a/multimedia/gst-plugins0.10-base/distinfo b/multimedia/gst-plugins0.10-base/distinfo
index f3bf12dec8f..d9c7f9191dd 100644
--- a/multimedia/gst-plugins0.10-base/distinfo
+++ b/multimedia/gst-plugins0.10-base/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.3 2006/01/29 09:19:42 rillig Exp $
+$NetBSD: distinfo,v 1.4 2006/02/13 19:19:44 wiz Exp $
-SHA1 (gst-plugins-base-0.10.2.tar.bz2) = e9b5b3943b58dfeaeda290206a59cffbf74d0c74
-RMD160 (gst-plugins-base-0.10.2.tar.bz2) = c3259792839d7277c2e8a8d6b34545cf845e2e19
-Size (gst-plugins-base-0.10.2.tar.bz2) = 1038764 bytes
+SHA1 (gst-plugins-base-0.10.3.tar.bz2) = 1ca536d0b66534ff6435745b4f88f44588ea6332
+RMD160 (gst-plugins-base-0.10.3.tar.bz2) = 0c0d51124407c2fb08fe6dd89dab649ad6c70369
+Size (gst-plugins-base-0.10.3.tar.bz2) = 1082763 bytes
SHA1 (patch-ab) = 94492cdfab49737e419b39c11b65d76f9bee2e3b
-SHA1 (patch-ac) = 415192264d501d993ef6401d1ebb520aa99256fc
diff --git a/multimedia/gst-plugins0.10-base/patches/patch-ac b/multimedia/gst-plugins0.10-base/patches/patch-ac
deleted file mode 100644
index 76e4591c4fe..00000000000
--- a/multimedia/gst-plugins0.10-base/patches/patch-ac
+++ /dev/null
@@ -1,58 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2006/01/29 09:19:43 rillig Exp $
-
-Keywords: c90
-
---- gst-libs/gst/rtp/gstbasertpdepayload.c.orig 2005-12-20 12:36:56.000000000 +0100
-+++ gst-libs/gst/rtp/gstbasertpdepayload.c 2006-01-29 10:01:08.000000000 +0100
-@@ -173,12 +173,13 @@ static gboolean
- gst_base_rtp_depayload_setcaps (GstPad * pad, GstCaps * caps)
- {
- GstBaseRTPDepayload *filter;
-+ GstBaseRTPDepayloadClass *bclass;
-
- filter = GST_BASE_RTP_DEPAYLOAD (gst_pad_get_parent (pad));
- g_return_val_if_fail (filter != NULL, FALSE);
- g_return_val_if_fail (GST_IS_BASE_RTP_DEPAYLOAD (filter), FALSE);
-
-- GstBaseRTPDepayloadClass *bclass = GST_BASE_RTP_DEPAYLOAD_GET_CLASS (filter);
-+ bclass = GST_BASE_RTP_DEPAYLOAD_GET_CLASS (filter);
-
- if (bclass->set_caps)
- return bclass->set_caps (filter, caps);
-@@ -241,6 +242,7 @@ gst_base_rtp_depayload_add_to_queue (Gst
- GstBuffer * in)
- {
- GQueue *queue = filter->queue;
-+ int i;
-
- /* our first packet, just push it */
- QUEUE_LOCK (filter);
-@@ -255,7 +257,7 @@ gst_base_rtp_depayload_add_to_queue (Gst
- queueseq = gst_rtp_buffer_get_seq (GST_BUFFER (g_queue_peek_head (queue)));
-
- /* look for right place to insert it */
-- int i = 0;
-+ i = 0;
-
- while (seqnum > queueseq) {
- gpointer data;
-@@ -350,6 +352,8 @@ gst_base_rtp_depayload_queue_release (Gs
- GQueue *queue = filter->queue;
- guint32 headts, tailts;
- GstBaseRTPDepayloadClass *bclass;
-+ gfloat q_size_secs;
-+ guint maxtsunits;
-
- if (g_queue_is_empty (queue))
- return;
-@@ -359,8 +363,8 @@ gst_base_rtp_depayload_queue_release (Gs
- */
- GST_DEBUG_OBJECT (filter, "clockrate %d, queue_delay %d", filter->clock_rate,
- filter->queue_delay);
-- gfloat q_size_secs = (gfloat) filter->queue_delay / 1000;
-- guint maxtsunits = (gfloat) filter->clock_rate * q_size_secs;
-+ q_size_secs = (gfloat) filter->queue_delay / 1000;
-+ maxtsunits = (gfloat) filter->clock_rate * q_size_secs;
-
- QUEUE_LOCK (filter);
- headts =
diff --git a/multimedia/gst-plugins0.10-base/plugins.mk b/multimedia/gst-plugins0.10-base/plugins.mk
index 30e07467993..6a5b51e4592 100644
--- a/multimedia/gst-plugins0.10-base/plugins.mk
+++ b/multimedia/gst-plugins0.10-base/plugins.mk
@@ -1,4 +1,4 @@
-# $NetBSD: plugins.mk,v 1.2 2006/01/25 19:52:47 wiz Exp $
+# $NetBSD: plugins.mk,v 1.3 2006/02/13 19:19:44 wiz Exp $
#
# This file is shared across the gst-plugins-{base,good} packages to
# simplify their code. It provides a framework to write simple packages
@@ -6,7 +6,7 @@
# this file, but use the correct Makefile.common instead.
#
-DISTNAME?= gst-plugins-${GST_PLUGINS0.10_TYPE}-0.10.2
+DISTNAME?= gst-plugins-${GST_PLUGINS0.10_TYPE}-0.10.3
PKGNAME= ${DISTNAME:S/plugins/plugins0.10/}
CATEGORIES= multimedia gnome
MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-plugins-${GST_PLUGINS0.10_TYPE}/