mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
gst/gstpipeline.c: Lock/unlock mismatch.
Original commit message from CVS: * gst/gstpipeline.c: (gst_pipeline_use_clock): Lock/unlock mismatch.
This commit is contained in:
parent
1d788a4f5a
commit
f96e2fabad
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-03-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
|
* gst/gstpipeline.c: (gst_pipeline_use_clock):
|
||||||
|
Lock/unlock mismatch.
|
||||||
|
|
||||||
2005-03-25 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-03-25 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* docs/faq/gst-uninstalled:
|
* docs/faq/gst-uninstalled:
|
||||||
|
|
|
@ -443,7 +443,7 @@ gst_pipeline_use_clock (GstPipeline * pipeline, GstClock * clock)
|
||||||
|
|
||||||
gst_object_replace ((GstObject **) & pipeline->fixed_clock,
|
gst_object_replace ((GstObject **) & pipeline->fixed_clock,
|
||||||
(GstObject *) clock);
|
(GstObject *) clock);
|
||||||
GST_LOCK (pipeline);
|
GST_UNLOCK (pipeline);
|
||||||
|
|
||||||
GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline using fixed clock %p (%s)", clock,
|
GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline using fixed clock %p (%s)", clock,
|
||||||
(clock ? GST_OBJECT_NAME (clock) : "nil"));
|
(clock ? GST_OBJECT_NAME (clock) : "nil"));
|
||||||
|
|
Loading…
Reference in a new issue