mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
videoaggregator: fix crash when receiving buffer without timestamps
Unset out buffer in clip function when we unref the buffer to be clipped, otherwise aggregator will continue to use the already- freed buffer. Fixes crash when buffers without timestamps are being fed to aggregator. Partly because aggregator ignores the error flow return. https://bugzilla.gnome.org/show_bug.cgi?id=743334
This commit is contained in:
parent
199ce92474
commit
21168dd199
1 changed files with 2 additions and 1 deletions
|
@ -1512,8 +1512,9 @@ gst_videoaggregator_sink_clip (GstAggregator * agg,
|
|||
|
||||
start_time = GST_BUFFER_TIMESTAMP (buf);
|
||||
if (start_time == -1) {
|
||||
GST_DEBUG_OBJECT (pad, "Timestamped buffers required!");
|
||||
GST_WARNING_OBJECT (pad, "Timestamped buffers required!");
|
||||
gst_buffer_unref (buf);
|
||||
*outbuf = NULL;
|
||||
return GST_FLOW_ERROR;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue