mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
glmixer: Unmap video frame in error case
https://bugzilla.gnome.org/show_bug.cgi?id=788127
This commit is contained in:
parent
0fc911c7fe
commit
0ffa10652a
1 changed files with 4 additions and 2 deletions
|
@ -616,8 +616,10 @@ gst_gl_mixer_process_textures (GstGLMixer * mix, GstBuffer * outbuf)
|
|||
out_tex = (GstGLMemory *) out_frame.map[0].memory;
|
||||
|
||||
if (!gst_aggregator_iterate_sinkpads (GST_AGGREGATOR (mix),
|
||||
(GstAggregatorPadForeachFunc) _upload_frames, NULL))
|
||||
return FALSE;
|
||||
(GstAggregatorPadForeachFunc) _upload_frames, NULL)) {
|
||||
res = FALSE;
|
||||
goto out;
|
||||
}
|
||||
|
||||
g_mutex_lock (&priv->gl_resource_lock);
|
||||
if (!priv->gl_resource_ready)
|
||||
|
|
Loading…
Reference in a new issue