wavparse: check for not NULL before clearing adapter
In case wavparse receives a manually injected FLUSH_STOP event while operating in pull mode we get criticals because we'd try to clear a NULL adapter. https://bugzilla.gnome.org/show_bug.cgi?id=777123
This commit is contained in:
parent
44f09d74ff
commit
f05c0c036e
@ -2445,7 +2445,8 @@ gst_wavparse_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
|||||||
{
|
{
|
||||||
GstClockTime dur;
|
GstClockTime dur;
|
||||||
|
|
||||||
gst_adapter_clear (wav->adapter);
|
if (wav->adapter)
|
||||||
|
gst_adapter_clear (wav->adapter);
|
||||||
wav->discont = TRUE;
|
wav->discont = TRUE;
|
||||||
dur = wav->segment.duration;
|
dur = wav->segment.duration;
|
||||||
gst_segment_init (&wav->segment, wav->segment.format);
|
gst_segment_init (&wav->segment, wav->segment.format);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user