summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2016-09-22 11:44:59 +0200
committerStefan Schmidt <stefan@osg.samsung.com>2016-09-22 11:44:59 +0200
commit903dbde84a45c5376f2d4ac88ac74bacc1a1bf2f (patch)
tree296d75c4a5d2b9afcfe820f377182007f41ea698
parent9e5941ed387a56966938799abb118d1a6aafdf5c (diff)
downloadefl-903dbde84a45c5376f2d4ac88ac74bacc1a1bf2f.tar.gz
modules: emotion: fix event name after EFL Canvas Video convert
In commit 7b90e1147442d6a8023422400bffd77e2815fe0b the event name changed but this module was not updated. Luckily we are building it on Jenkins or it would have gone unnoticed for a long time.
-rw-r--r--src/modules/emotion/libvlc/emotion_libvlc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/emotion/libvlc/emotion_libvlc.c b/src/modules/emotion/libvlc/emotion_libvlc.c
index f994e4d8d9..31b47c9e5d 100644
--- a/src/modules/emotion/libvlc/emotion_libvlc.c
+++ b/src/modules/emotion/libvlc/emotion_libvlc.c
@@ -280,7 +280,7 @@ evas_resize_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
evas_object_image_size_get(ev->evas_obj, &w, &h);
_emotion_frame_resize(ev->obj, w, h, w / (double) h);
- efl_event_callback_call(ev->obj, EMOTION_OBJECT_EVENT_FRAME_DECODE, NULL);
+ efl_event_callback_call(ev->obj, EFL_CANVAS_VIDEO_EVENT_FRAME_DECODE, NULL);
}
/* Fetch all libvlc tracks. */