From b8be71db0ce2499d328b7d766f12354bfbe524a3 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Tue, 28 Jan 2014 14:06:03 +0900 Subject: [PATCH] remove commented out code in video wrapper --- src/bin/video.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/bin/video.c b/src/bin/video.c index a96411c..6976614 100644 --- a/src/bin/video.c +++ b/src/bin/video.c @@ -34,15 +34,12 @@ _cb_vid_frame(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED) { Video *sd = evas_object_smart_data_get(data); Evas_Coord ox, oy, ow, oh; -// double len, pos; if (!sd) return; evas_object_geometry_get(data, &ox, &oy, &ow, &oh); evas_object_show(sd->o_vid); evas_object_show(sd->clip); _ob_resize(data, ox, oy, ow, oh); -// len = emotion_object_play_length_get(sd->o_vid); -// pos = emotion_object_position_get(sd->o_vid); evas_object_smart_callback_call(data, "frame_decode", NULL); } @@ -98,9 +95,6 @@ _cb_vid_progress(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUS Video *sd = evas_object_smart_data_get(data); if (!sd) return; evas_object_smart_callback_call(data, "frame_decode", NULL); -// DBG("progress: '%s' '%3.3f", -// emotion_object_progress_info_get(sd->o_vid), -// emotion_object_progress_status_get(sd->o_vid)); } static void @@ -109,9 +103,6 @@ _cb_vid_ref(void *data, Evas_Object *obj EINA_UNUSED, void *event EINA_UNUSED) Video *sd = evas_object_smart_data_get(data); if (!sd) return; evas_object_smart_callback_call(data, "frame_decode", NULL); -// DBG("ref: '%s' num '%i'", -// emotion_object_ref_file_get(sd->o_vid), -// emotion_object_ref_num_get(sd->o_vid)); } static void