summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2013-12-19 12:46:24 +0100
committerSebastian Dröge <sebastian@centricular.com>2013-12-19 13:12:28 +0100
commita28ff05158e7a79d8486f8b52b308d4c65feb759 (patch)
treec0dab440a330921ab95ddd56c040bfadc0961b95
parent4f5de7e8dadbc4b45625898e3b9314cb9a94e916 (diff)
Return GST_FLOW_FLUSHING when the sink is unlocked
-rw-r--r--src/modules/emotion/gstreamer1/emotion_sink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/emotion/gstreamer1/emotion_sink.c b/src/modules/emotion/gstreamer1/emotion_sink.c
index 7aa5fdbaf..decfb705f 100644
--- a/src/modules/emotion/gstreamer1/emotion_sink.c
+++ b/src/modules/emotion/gstreamer1/emotion_sink.c
@@ -340,7 +340,7 @@ evas_video_sink_render(GstBaseSink* bsink, GstBuffer* buffer)
if (priv->unlocked) {
ERR("LOCKED");
eina_lock_release(&priv->m);
- return GST_FLOW_OK;
+ return GST_FLOW_FLUSHING;
}
send = emotion_gstreamer_buffer_alloc(priv, buffer, EINA_FALSE);