gst/gstbus.c (gst_bus_have_pending): Remove intensely irritating debug message.
authorAndy Wingo <wingo@pobox.com>
Thu, 7 Jul 2005 11:09:32 +0000 (11:09 +0000)
committerAndy Wingo <wingo@pobox.com>
Thu, 7 Jul 2005 11:09:32 +0000 (11:09 +0000)
Original commit message from CVS:
2005-07-07  Andy Wingo  <wingo@pobox.com>

* gst/gstbus.c (gst_bus_have_pending): Remove intensely irritating
debug message.

ChangeLog
docs/gst/tmpl/gstbasesink.sgml
docs/gst/tmpl/gstbasesrc.sgml
docs/gst/tmpl/gstbin.sgml
docs/gst/tmpl/gstpipeline.sgml
docs/gst/tmpl/gstquery.sgml
gst/gstbus.c

index 260a324..f1b4f1b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-07  Andy Wingo  <wingo@pobox.com>
+
+       * gst/gstbus.c (gst_bus_have_pending): Remove intensely irritating
+       debug message.
+
 2005-07-07  Wim Taymans  <wim@fluendo.com>
 
        * gst/gstquery.c:
index 65b2f63..7245684 100644 (file)
@@ -45,6 +45,8 @@ GstBaseSink
 @set_caps: 
 @buffer_alloc: 
 @get_times: 
+@start: 
+@stop: 
 @unlock: 
 @event: 
 @preroll: 
index 8ce519f..c46bf02 100644 (file)
@@ -59,6 +59,7 @@ GstBaseSrc
 @parent_class: 
 @get_caps: 
 @set_caps: 
+@negotiate: 
 @start: 
 @stop: 
 @get_times: 
index 3274501..2007814 100644 (file)
@@ -63,6 +63,8 @@ clock providers in the bin.
 @numchildren: 
 @children: 
 @children_cookie: 
+@child_bus: 
+@eosed: 
 
 <!-- ##### SIGNAL GstBin::element-added ##### -->
 <para>
index 1472470..bbd6ecd 100644 (file)
@@ -30,7 +30,6 @@ the pipeline, use gst_object_unref() to free its resources.
 @stream_time: 
 @delay: 
 @play_timeout: 
-@eosed: 
 
 <!-- ##### ARG GstPipeline:delay ##### -->
 <para>
index 4d8e1b2..eb2f4bb 100644 (file)
@@ -21,12 +21,9 @@ Standard predefined Query types
 </para>
 
 @GST_QUERY_NONE: invalid query type
-@GST_QUERY_TOTAL: total length of stream
 @GST_QUERY_POSITION: current position in stream
 @GST_QUERY_LATENCY: latency of stream
 @GST_QUERY_JITTER: current jitter of stream
-@GST_QUERY_START: start of configured segment
-@GST_QUERY_SEGMENT_END: end of configured segment
 @GST_QUERY_RATE: current rate of the stream
 @GST_QUERY_SEEKING: 
 @GST_QUERY_CONVERT: 
index 300eea0..ad74381 100644 (file)
@@ -276,8 +276,6 @@ gst_bus_have_pending (GstBus * bus)
   length = g_queue_get_length (bus->queue);
   g_mutex_unlock (bus->queue_lock);
 
-  GST_DEBUG ("have %d pending", length);
-
   return (length > 0);
 }