From 265a494de53b7b62d48d244acb2094aa73e1637e Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 4 Sep 2008 16:25:06 +0000 Subject: [PATCH] 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. --- ChangeLog | 6 ++++++ gst-libs/gst/audio/gstaudiosrc.c | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8df2623214..9bde2ce24c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-09-04 Wim Taymans + + * 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 * sys/xvimage/xvimagesink.c: diff --git a/gst-libs/gst/audio/gstaudiosrc.c b/gst-libs/gst/audio/gstaudiosrc.c index 2afb397937..8974e23c5d 100644 --- a/gst-libs/gst/audio/gstaudiosrc.c +++ b/gst-libs/gst/audio/gstaudiosrc.c @@ -439,10 +439,11 @@ gst_audioringbuffer_stop (GstRingBuffer * buf) csrc->reset (src); GST_DEBUG ("reset done"); } - +#if 0 GST_DEBUG ("stop, waiting..."); GST_AUDIORING_BUFFER_WAIT (buf); GST_DEBUG ("stoped"); +#endif return TRUE; }