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:
Wim Taymans 2008-09-04 16:25:06 +00:00
parent fb3d85f292
commit 265a494de5
2 changed files with 8 additions and 1 deletions

View file

@ -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:

View file

@ -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;
} }