[gst-cvs] gst-plugins-good: pulse: remove some stray debug lines

Wim Taymans wtay at kemper.freedesktop.org
Thu Apr 9 08:30:24 PDT 2009


Module: gst-plugins-good
Branch: master
Commit: 28d733d53b241a0c4a80b30f32e70b4750adf573
URL:    http://cgit.freedesktop.org/gstreamer/gst-plugins-good/commit/?id=28d733d53b241a0c4a80b30f32e70b4750adf573

Author: Wim Taymans <wim.taymans at collabora.co.uk>
Date:   Wed Apr  8 13:52:00 2009 +0200

pulse: remove some stray debug lines

---

 ext/pulse/pulseutil.c |    8 --------
 1 files changed, 0 insertions(+), 8 deletions(-)

diff --git a/ext/pulse/pulseutil.c b/ext/pulse/pulseutil.c
index 6efcf84..169c55b 100644
--- a/ext/pulse/pulseutil.c
+++ b/ext/pulse/pulseutil.c
@@ -123,7 +123,6 @@ gst_pulse_gst_to_channel_map (pa_channel_map * map,
     const GstRingBufferSpec * spec)
 {
   int i;
-
   GstAudioChannelPosition *pos;
 
   pa_channel_map_init (map);
@@ -131,14 +130,10 @@ gst_pulse_gst_to_channel_map (pa_channel_map * map,
   if (!(pos =
           gst_audio_get_channel_positions (gst_caps_get_structure (spec->caps,
                   0)))) {
-/*         g_debug("%s: No channel positions!\n", G_STRFUNC); */
     return NULL;
   }
 
-/*     g_debug("%s: Got channel positions:\n", G_STRFUNC); */
-
   for (i = 0; i < spec->channels; i++) {
-
     if (pos[i] == GST_AUDIO_CHANNEL_POSITION_NONE) {
       /* no valid mappings for these channels */
       g_free (pos);
@@ -147,15 +142,12 @@ gst_pulse_gst_to_channel_map (pa_channel_map * map,
       map->map[i] = gst_pos_to_pa[pos[i]];
     else
       map->map[i] = PA_CHANNEL_POSITION_INVALID;
-
-    /*g_debug("  channel %d: gst: %d pulse: %d\n", i, pos[i], map->map[i]); */
   }
 
   g_free (pos);
   map->channels = spec->channels;
 
   if (!pa_channel_map_valid (map)) {
-/*         g_debug("generated invalid map!\n"); */
     return NULL;
   }
 





More information about the Gstreamer-commits mailing list