pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/multimedia/gst-plugins0.10-base Update to 0.10.3:
details: https://anonhg.NetBSD.org/pkgsrc/rev/b7873db2f31d
branches: trunk
changeset: 508047:b7873db2f31d
user: wiz <wiz%pkgsrc.org@localhost>
date: Mon Feb 13 19:19:44 2006 +0000
description:
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:
multimedia/gst-plugins0.10-base/Makefile | 3 +-
multimedia/gst-plugins0.10-base/distinfo | 9 +--
multimedia/gst-plugins0.10-base/patches/patch-ac | 58 ------------------------
multimedia/gst-plugins0.10-base/plugins.mk | 4 +-
4 files changed, 7 insertions(+), 67 deletions(-)
diffs (109 lines):
diff -r 5a681747e839 -r b7873db2f31d multimedia/gst-plugins0.10-base/Makefile
--- a/multimedia/gst-plugins0.10-base/Makefile Mon Feb 13 19:18:56 2006 +0000
+++ b/multimedia/gst-plugins0.10-base/Makefile Mon Feb 13 19:19:44 2006 +0000
@@ -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 -r 5a681747e839 -r b7873db2f31d multimedia/gst-plugins0.10-base/distinfo
--- a/multimedia/gst-plugins0.10-base/distinfo Mon Feb 13 19:18:56 2006 +0000
+++ b/multimedia/gst-plugins0.10-base/distinfo Mon Feb 13 19:19:44 2006 +0000
@@ -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 -r 5a681747e839 -r b7873db2f31d multimedia/gst-plugins0.10-base/patches/patch-ac
--- a/multimedia/gst-plugins0.10-base/patches/patch-ac Mon Feb 13 19:18:56 2006 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r 5a681747e839 -r b7873db2f31d multimedia/gst-plugins0.10-base/plugins.mk
--- a/multimedia/gst-plugins0.10-base/plugins.mk Mon Feb 13 19:18:56 2006 +0000
+++ b/multimedia/gst-plugins0.10-base/plugins.mk Mon Feb 13 19:19:44 2006 +0000
@@ -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}/
Home |
Main Index |
Thread Index |
Old Index