omxaudioenc: First set ports to flushing before waiting for the srcpad streaming thread to finish

This commit is contained in:
Sebastian Dröge 2011-11-18 10:00:31 -08:00
parent be4e1e184e
commit 9917fbe4c5

View file

@ -641,6 +641,11 @@ gst_omx_audio_enc_stop (GstBaseAudioEncoder * encoder)
self = GST_OMX_AUDIO_ENC (encoder);
GST_DEBUG_OBJECT (self, "Stopping encoder");
gst_omx_port_set_flushing (self->in_port, TRUE);
gst_omx_port_set_flushing (self->out_port, TRUE);
gst_pad_stop_task (GST_BASE_AUDIO_ENCODER_SRC_PAD (encoder));
if (gst_omx_component_get_state (self->component, 0) > OMX_StateIdle)
@ -655,9 +660,6 @@ gst_omx_audio_enc_stop (GstBaseAudioEncoder * encoder)
g_cond_broadcast (self->drain_cond);
g_mutex_unlock (self->drain_lock);
gst_omx_port_set_flushing (self->in_port, TRUE);
gst_omx_port_set_flushing (self->out_port, TRUE);
gst_omx_component_get_state (self->component, 5 * GST_SECOND);
return TRUE;