omxaudioenc: Fix deadlock in error case when draining

https://bugzilla.gnome.org/show_bug.cgi?id=784967
This commit is contained in:
Satya Prakash Gupta 2017-07-17 13:44:54 +05:30 committed by Sebastian Dröge
parent 4488ab97af
commit 9db720f13e

View file

@ -1154,6 +1154,7 @@ gst_omx_audio_enc_drain (GstOMXAudioEnc * self)
if (err != OMX_ErrorNone) {
GST_ERROR_OBJECT (self, "Failed to drain component: %s (0x%08x)",
gst_omx_error_to_string (err), err);
g_mutex_unlock (&self->drain_lock);
GST_AUDIO_ENCODER_STREAM_LOCK (self);
return GST_FLOW_ERROR;
}