mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
ext/lame/gstlame.c: Don't take the stream lock
Original commit message from CVS: * ext/lame/gstlame.c: (gst_lame_sink_event): Don't take the stream lock
This commit is contained in:
parent
4b19f76c97
commit
fda997a953
1 changed files with 0 additions and 5 deletions
|
@ -904,9 +904,6 @@ gst_lame_sink_event (GstPad * pad, GstEvent * event)
|
|||
/* forward event */
|
||||
gst_pad_push_event (lame->srcpad, event);
|
||||
|
||||
/* make streaming stop */
|
||||
GST_STREAM_LOCK (pad);
|
||||
GST_STREAM_UNLOCK (pad);
|
||||
break;
|
||||
case GST_EVENT_FLUSH_STOP:
|
||||
{
|
||||
|
@ -916,13 +913,11 @@ gst_lame_sink_event (GstPad * pad, GstEvent * event)
|
|||
GST_DEBUG_OBJECT (lame, "handling FLUSH stop event");
|
||||
|
||||
/* clear buffers */
|
||||
GST_STREAM_LOCK (pad);
|
||||
mp3_buffer_size = 7200;
|
||||
mp3_data = g_malloc (mp3_buffer_size);
|
||||
mp3_size = lame_encode_flush (lame->lgf, mp3_data, mp3_buffer_size);
|
||||
|
||||
gst_pad_push_event (lame->srcpad, event);
|
||||
GST_STREAM_UNLOCK (pad);
|
||||
break;
|
||||
}
|
||||
case GST_EVENT_TAG:
|
||||
|
|
Loading…
Reference in a new issue