mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst/gstclock.c: Add some more debugging to the clock slaving code.
Original commit message from CVS: * gst/gstclock.c: (gst_clock_add_observation): Add some more debugging to the clock slaving code. * win32/common/libgstbase.def: Add new basetransform method.
This commit is contained in:
parent
f716d86e48
commit
207bbf4f14
3 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-08-25 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/gstclock.c: (gst_clock_add_observation):
|
||||
Add some more debugging to the clock slaving code.
|
||||
|
||||
* win32/common/libgstbase.def:
|
||||
Add new basetransform method.
|
||||
|
||||
2008-08-25 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/gstbin.c: (gst_bin_element_set_state):
|
||||
|
|
|
@ -1263,6 +1263,10 @@ gst_clock_add_observation (GstClock * clock, GstClockTime slave,
|
|||
|
||||
GST_CLOCK_SLAVE_LOCK (clock);
|
||||
|
||||
GST_CAT_LOG_OBJECT (GST_CAT_CLOCK, clock,
|
||||
"adding observation slave %" GST_TIME_FORMAT ", master %" GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS (slave), GST_TIME_ARGS (master));
|
||||
|
||||
clock->times[(4 * clock->time_index)] = slave;
|
||||
clock->times[(4 * clock->time_index) + 2] = master;
|
||||
|
||||
|
|
|
@ -41,6 +41,7 @@ EXPORTS
|
|||
gst_base_transform_is_in_place
|
||||
gst_base_transform_is_passthrough
|
||||
gst_base_transform_is_qos_enabled
|
||||
gst_base_transform_reconfigure
|
||||
gst_base_transform_set_gap_aware
|
||||
gst_base_transform_set_in_place
|
||||
gst_base_transform_set_passthrough
|
||||
|
|
Loading…
Reference in a new issue