[Pkg-pulseaudio-devel] r121 - in /gst-pulse/trunk/debian: changelog control patches/ patches/make-gst-plugin-rank-primary.patch patches/series rules

neurocyte-guest at users.alioth.debian.org neurocyte-guest at users.alioth.debian.org
Thu May 24 22:28:55 UTC 2007


Author: neurocyte-guest
Date: Thu May 24 22:28:55 2007
New Revision: 121

URL: http://svn.debian.org/wsvn/pkg-pulseaudio/?sc=1&rev=121
Log:
Add patch to raise the gstreamer plugin's rank to primary. (from Ubuntu)

Added:
    gst-pulse/trunk/debian/patches/
    gst-pulse/trunk/debian/patches/make-gst-plugin-rank-primary.patch
    gst-pulse/trunk/debian/patches/series
Modified:
    gst-pulse/trunk/debian/changelog
    gst-pulse/trunk/debian/control
    gst-pulse/trunk/debian/rules

Modified: gst-pulse/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-pulseaudio/gst-pulse/trunk/debian/changelog?rev=121&op=diff
==============================================================================
--- gst-pulse/trunk/debian/changelog (original)
+++ gst-pulse/trunk/debian/changelog Thu May 24 22:28:55 2007
@@ -1,8 +1,10 @@
 gst-pulse (0.9.4-2) UNRELEASED; urgency=low
 
   * debian/rules: Port to CDBS
+  * debian/patches/make-gst-plugin-rank-primary.patch:
+    + Added. Raise the rank of the gstreamer plugin.
 
- -- CJ van den Berg <cj at vdbonline.com>  Mon, 21 May 2007 10:02:18 +0200
+ -- CJ van den Berg <cj at vdbonline.com>  Fri, 25 May 2007 00:05:54 +0200
 
 gst-pulse (0.9.4-1) unstable; urgency=low
 

Modified: gst-pulse/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-pulseaudio/gst-pulse/trunk/debian/control?rev=121&op=diff
==============================================================================
--- gst-pulse/trunk/debian/control (original)
+++ gst-pulse/trunk/debian/control Thu May 24 22:28:55 2007
@@ -2,7 +2,7 @@
 Section: sound
 Priority: optional
 Maintainer: CJ van den Berg <cj at vdbonline.com>
-Build-Depends: debhelper (>= 5), cdbs, autotools-dev, libpulse-dev,
+Build-Depends: debhelper (>= 5), cdbs, quilt, autotools-dev, libpulse-dev,
     libgstreamer0.10-dev, libgstreamer-plugins-base0.10-dev, lynx
 Standards-Version: 3.7.2
 

Added: gst-pulse/trunk/debian/patches/make-gst-plugin-rank-primary.patch
URL: http://svn.debian.org/wsvn/pkg-pulseaudio/gst-pulse/trunk/debian/patches/make-gst-plugin-rank-primary.patch?rev=121&op=file
==============================================================================
--- gst-pulse/trunk/debian/patches/make-gst-plugin-rank-primary.patch (added)
+++ gst-pulse/trunk/debian/patches/make-gst-plugin-rank-primary.patch Thu May 24 22:28:55 2007
@@ -1,0 +1,27 @@
+Raise the rank of the gstreamer plugin
+
+From: Sebastian Dröge <slomo at ubuntu.com>
+
+This makes gstreamer try use pulse before other plugins.
+---
+
+ src/plugin.c |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/plugin.c b/src/plugin.c
+index 4695d2b..d634525 100644
+--- a/src/plugin.c
++++ b/src/plugin.c
+@@ -31,10 +31,10 @@ GST_DEBUG_CATEGORY(pulse_debug);
+ 
+ static gboolean plugin_init(GstPlugin* plugin) {
+     
+-    if (!gst_element_register(plugin, "pulsesink", GST_RANK_SECONDARY-1, GST_TYPE_PULSESINK))
++    if (!gst_element_register(plugin, "pulsesink", GST_RANK_PRIMARY, GST_TYPE_PULSESINK))
+         return FALSE;
+ 
+-    if (!gst_element_register(plugin, "pulsesrc", GST_RANK_SECONDARY-1, GST_TYPE_PULSESRC))
++    if (!gst_element_register(plugin, "pulsesrc", GST_RANK_PRIMARY, GST_TYPE_PULSESRC))
+         return FALSE;
+ 
+     if (!gst_element_register(plugin, "pulsemixer", GST_RANK_NONE, GST_TYPE_PULSEMIXER))

Added: gst-pulse/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-pulseaudio/gst-pulse/trunk/debian/patches/series?rev=121&op=file
==============================================================================
--- gst-pulse/trunk/debian/patches/series (added)
+++ gst-pulse/trunk/debian/patches/series Thu May 24 22:28:55 2007
@@ -1,0 +1,2 @@
+# This series applies on GIT commit d5d807e18bc924cb6417e18bee6a201be4fc9d22
+make-gst-plugin-rank-primary.patch

Modified: gst-pulse/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-pulseaudio/gst-pulse/trunk/debian/rules?rev=121&op=diff
==============================================================================
--- gst-pulse/trunk/debian/rules (original)
+++ gst-pulse/trunk/debian/rules Thu May 24 22:28:55 2007
@@ -2,6 +2,7 @@
 
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 
 DEB_CONFIGURE_EXTRA_FLAGS = --disable-static
 DEB_DH_INSTALL_ARGS = --exclude=.la --fail-missing




More information about the Pkg-pulseaudio-devel mailing list