glmixer: Unmap video frame in error case

https://bugzilla.gnome.org/show_bug.cgi?id=788127
This commit is contained in:
Ponnam Srinivas 2017-09-25 17:20:58 +05:30 committed by Sebastian Dröge
parent 0fc911c7fe
commit 0ffa10652a

View file

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