mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
gst/gstbus.c (gst_bus_have_pending): Remove intensely irritating debug message.
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.
This commit is contained in:
parent
74e6ce0a7b
commit
a1457cff29
7 changed files with 10 additions and 6 deletions
|
@ -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>
|
2005-07-07 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* gst/gstquery.c:
|
* gst/gstquery.c:
|
||||||
|
|
|
@ -45,6 +45,8 @@ GstBaseSink
|
||||||
@set_caps:
|
@set_caps:
|
||||||
@buffer_alloc:
|
@buffer_alloc:
|
||||||
@get_times:
|
@get_times:
|
||||||
|
@start:
|
||||||
|
@stop:
|
||||||
@unlock:
|
@unlock:
|
||||||
@event:
|
@event:
|
||||||
@preroll:
|
@preroll:
|
||||||
|
|
|
@ -59,6 +59,7 @@ GstBaseSrc
|
||||||
@parent_class:
|
@parent_class:
|
||||||
@get_caps:
|
@get_caps:
|
||||||
@set_caps:
|
@set_caps:
|
||||||
|
@negotiate:
|
||||||
@start:
|
@start:
|
||||||
@stop:
|
@stop:
|
||||||
@get_times:
|
@get_times:
|
||||||
|
|
|
@ -63,6 +63,8 @@ clock providers in the bin.
|
||||||
@numchildren:
|
@numchildren:
|
||||||
@children:
|
@children:
|
||||||
@children_cookie:
|
@children_cookie:
|
||||||
|
@child_bus:
|
||||||
|
@eosed:
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstBin::element-added ##### -->
|
<!-- ##### SIGNAL GstBin::element-added ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
|
@ -30,7 +30,6 @@ the pipeline, use gst_object_unref() to free its resources.
|
||||||
@stream_time:
|
@stream_time:
|
||||||
@delay:
|
@delay:
|
||||||
@play_timeout:
|
@play_timeout:
|
||||||
@eosed:
|
|
||||||
|
|
||||||
<!-- ##### ARG GstPipeline:delay ##### -->
|
<!-- ##### ARG GstPipeline:delay ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
|
@ -21,12 +21,9 @@ Standard predefined Query types
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
@GST_QUERY_NONE: invalid query type
|
@GST_QUERY_NONE: invalid query type
|
||||||
@GST_QUERY_TOTAL: total length of stream
|
|
||||||
@GST_QUERY_POSITION: current position in stream
|
@GST_QUERY_POSITION: current position in stream
|
||||||
@GST_QUERY_LATENCY: latency of stream
|
@GST_QUERY_LATENCY: latency of stream
|
||||||
@GST_QUERY_JITTER: current jitter 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_RATE: current rate of the stream
|
||||||
@GST_QUERY_SEEKING:
|
@GST_QUERY_SEEKING:
|
||||||
@GST_QUERY_CONVERT:
|
@GST_QUERY_CONVERT:
|
||||||
|
|
|
@ -276,8 +276,6 @@ gst_bus_have_pending (GstBus * bus)
|
||||||
length = g_queue_get_length (bus->queue);
|
length = g_queue_get_length (bus->queue);
|
||||||
g_mutex_unlock (bus->queue_lock);
|
g_mutex_unlock (bus->queue_lock);
|
||||||
|
|
||||||
GST_DEBUG ("have %d pending", length);
|
|
||||||
|
|
||||||
return (length > 0);
|
return (length > 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue