mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-17 22:06:41 +00:00
gst-libs/gst/audio/gstaudiosrc.c: Disable a code path that is now called but causes a deadlock for some reason and is...
Original commit message from CVS: * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_stop): Disable a code path that is now called but causes a deadlock for some reason and is unneeded.
This commit is contained in:
parent
fb3d85f292
commit
265a494de5
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2008-09-04 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
|
* gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_stop):
|
||||||
|
Disable a code path that is now called but causes a deadlock for some
|
||||||
|
reason and is unneeded.
|
||||||
|
|
||||||
2008-09-04 Stefan Kost <ensonic@users.sf.net>
|
2008-09-04 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
* sys/xvimage/xvimagesink.c:
|
* sys/xvimage/xvimagesink.c:
|
||||||
|
|
|
@ -439,10 +439,11 @@ gst_audioringbuffer_stop (GstRingBuffer * buf)
|
||||||
csrc->reset (src);
|
csrc->reset (src);
|
||||||
GST_DEBUG ("reset done");
|
GST_DEBUG ("reset done");
|
||||||
}
|
}
|
||||||
|
#if 0
|
||||||
GST_DEBUG ("stop, waiting...");
|
GST_DEBUG ("stop, waiting...");
|
||||||
GST_AUDIORING_BUFFER_WAIT (buf);
|
GST_AUDIORING_BUFFER_WAIT (buf);
|
||||||
GST_DEBUG ("stoped");
|
GST_DEBUG ("stoped");
|
||||||
|
#endif
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue