diff --git a/omx/gstomxvideoenc.c b/omx/gstomxvideoenc.c index b354c29365..54eec08eb1 100644 --- a/omx/gstomxvideoenc.c +++ b/omx/gstomxvideoenc.c @@ -574,10 +574,8 @@ gst_omx_video_enc_change_state (GstElement * element, GstStateChange transition) gst_omx_port_set_flushing (self->out_port, FALSE); self->downstream_flow_ret = GST_FLOW_OK; - g_mutex_lock (self->drain_lock); self->draining = FALSE; - g_cond_broadcast (self->drain_cond); - g_mutex_unlock (self->drain_lock); + self->started = FALSE; break; case GST_STATE_CHANGE_PAUSED_TO_PLAYING: break; @@ -609,6 +607,7 @@ gst_omx_video_enc_change_state (GstElement * element, GstStateChange transition) break; case GST_STATE_CHANGE_PAUSED_TO_READY: self->downstream_flow_ret = GST_FLOW_WRONG_STATE; + self->started = FALSE; break; case GST_STATE_CHANGE_READY_TO_NULL: if (!gst_omx_video_enc_close (self))