raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=222f2a652fc3b7864a1701152ee3fafe48c43baa
commit 222f2a652fc3b7864a1701152ee3fafe48c43baa Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Mon Sep 1 11:21:36 2014 +0900 emotion_test - add printfs for other cb's --- src/tests/emotion/emotion_test_main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tests/emotion/emotion_test_main.c b/src/tests/emotion/emotion_test_main.c index 6790684..5b27980 100644 --- a/src/tests/emotion/emotion_test_main.c +++ b/src/tests/emotion/emotion_test_main.c @@ -364,19 +364,21 @@ video_obj_frame_resize_cb(void *data, Evas_Object *obj, void *event_info EINA_UN static void video_obj_length_change_cb(void *data, Evas_Object *obj, void *event_info EINA_UNUSED) { + printf("len change!\n"); video_obj_time_changed(obj, data); } static void video_obj_position_update_cb(void *data, Evas_Object *obj, void *event_info EINA_UNUSED) { + printf("pos up!\n"); video_obj_time_changed(obj, data); } static void video_obj_stopped_cb(void *data EINA_UNUSED, Evas_Object *obj, void *event_info EINA_UNUSED) { - printf("video stopped!\n"); + printf("video stopped!!!\n"); if (loop) { emotion_object_position_set(obj, 0.0); --
