raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=b7afdc80ecaebc93822a551c633ad97a6277a60b
commit b7afdc80ecaebc93822a551c633ad97a6277a60b Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Mon Sep 1 12:45:41 2014 +0900 emotion - fix calling pos update cb for gst1 module in frame new @fix --- src/lib/emotion/emotion_smart.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib/emotion/emotion_smart.c b/src/lib/emotion/emotion_smart.c index 0c42135..b1ea284 100644 --- a/src/lib/emotion/emotion_smart.c +++ b/src/lib/emotion/emotion_smart.c @@ -1490,9 +1490,12 @@ _emotion_frame_anim(void *data) E_SMART_OBJ_GET_RETURN(sd, obj, E_OBJ_NAME, EINA_FALSE); + sd->anim = NULL; evas_object_image_pixels_dirty_set(sd->obj, 1); + _emotion_video_pos_update(obj, + emotion_engine_instance_pos_get(sd->engine_instance), + emotion_engine_instance_len_get(sd->engine_instance)); evas_object_smart_callback_call(obj, SIG_FRAME_DECODE, NULL); - sd->anim = NULL; return EINA_FALSE; } --
