diff --git a/src/lib/elementary/elc_player.c b/src/lib/elementary/elc_player.c index 9e063cfc05..ff0c166bb0 100644 --- a/src/lib/elementary/elc_player.c +++ b/src/lib/elementary/elc_player.c @@ -437,7 +437,7 @@ _play_finished(void *data, const Efl_Event *event EINA_UNUSED) } static void -_on_videfl_del(Elm_Player_Data *sd) +_on_video_del(Elm_Player_Data *sd) { elm_object_disabled_set(sd->forward, EINA_TRUE); elm_object_disabled_set(sd->info, EINA_TRUE); @@ -458,12 +458,12 @@ _on_videfl_del(Elm_Player_Data *sd) } static void -_videfl_del(void *data, +_video_del(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED) { - _on_videfl_del(data); + _on_video_del(data); } static Evas_Object * @@ -574,7 +574,7 @@ _elm_player_content_set(Eo *obj, Elm_Player_Data *sd, const char *part, Evas_Obj sd->emotion = elm_video_emotion_get(sd->video); emotion_object_priority_set(sd->emotion, EINA_TRUE); evas_object_event_callback_add - (sd->video, EVAS_CALLBACK_DEL, _videfl_del, sd); + (sd->video, EVAS_CALLBACK_DEL, _video_del, sd); seekable = elm_video_is_seekable_get(sd->video); length = elm_video_play_length_get(sd->video); diff --git a/src/lib/emotion/emotion_modules.c b/src/lib/emotion/emotion_modules.c index 5b9666f07a..944ea0184d 100644 --- a/src/lib/emotion/emotion_modules.c +++ b/src/lib/emotion/emotion_modules.c @@ -578,9 +578,9 @@ emotion_engine_instance_format_get(const Emotion_Engine_Instance *inst) } void -emotion_engine_instance_videfl_data_size_get(const Emotion_Engine_Instance *inst, int *w, int *h) +emotion_engine_instance_video_data_size_get(const Emotion_Engine_Instance *inst, int *w, int *h) { - EMOTION_ENGINE_INSTANCE_CALL(inst, videfl_data_size_get, w, h); + EMOTION_ENGINE_INSTANCE_CALL(inst, video_data_size_get, w, h); } Eina_Bool diff --git a/src/lib/emotion/emotion_modules.h b/src/lib/emotion/emotion_modules.h index 4a0244177d..d5dd1dd6a2 100644 --- a/src/lib/emotion/emotion_modules.h +++ b/src/lib/emotion/emotion_modules.h @@ -91,7 +91,7 @@ struct _Emotion_Engine int (*seekable) (void *ef); void (*frame_done) (void *ef); Emotion_Format (*format_get) (void *ef); - void (*videfl_data_size_get) (void *ef, int *w, int *h); + void (*video_data_size_get) (void *ef, int *w, int *h); int (*yuv_rows_get) (void *ef, int w, int h, unsigned char **yrows, unsigned char **urows, unsigned char **vrows); int (*bgra_data_get) (void *ef, unsigned char **bgra_data); void (*event_feed) (void *ef, int event); diff --git a/src/lib/emotion/emotion_private.h b/src/lib/emotion/emotion_private.h index e884dc3448..34e2bc3c9b 100644 --- a/src/lib/emotion/emotion_private.h +++ b/src/lib/emotion/emotion_private.h @@ -51,7 +51,7 @@ Eina_Bool emotion_engine_instance_audio_handled(Emotion_Engine_Instance *in Eina_Bool emotion_engine_instance_seekable(Emotion_Engine_Instance *inst); void emotion_engine_instance_frame_done(Emotion_Engine_Instance *inst); Emotion_Format emotion_engine_instance_format_get(const Emotion_Engine_Instance *inst); -void emotion_engine_instance_videfl_data_size_get(const Emotion_Engine_Instance *inst, int *w, int *h); +void emotion_engine_instance_video_data_size_get(const Emotion_Engine_Instance *inst, int *w, int *h); Eina_Bool emotion_engine_instance_yuv_rows_get(const Emotion_Engine_Instance *inst, int w, int h, unsigned char **yrows, unsigned char **urows, unsigned char **vrows); Eina_Bool emotion_engine_instance_bgra_data_get(const Emotion_Engine_Instance *inst, unsigned char **bgra_data); void emotion_engine_instance_event_feed(Emotion_Engine_Instance *inst, int event); diff --git a/src/lib/emotion/emotion_smart.c b/src/lib/emotion/emotion_smart.c index 42b5e35041..0cfa31787b 100644 --- a/src/lib/emotion/emotion_smart.c +++ b/src/lib/emotion/emotion_smart.c @@ -1878,7 +1878,7 @@ _pixels_get(void *data, Evas_Object *obj) sd = data; if (!sd->engine_instance) return; - emotion_engine_instance_videfl_data_size_get(sd->engine_instance, &w, &h); + emotion_engine_instance_video_data_size_get(sd->engine_instance, &w, &h); w = (w >> 1) << 1; h = (h >> 1) << 1; diff --git a/src/lib/evas/canvas/evas_object_image.c b/src/lib/evas/canvas/evas_object_image.c index 1fb8b0d936..a67a8bc67a 100644 --- a/src/lib/evas/canvas/evas_object_image.c +++ b/src/lib/evas/canvas/evas_object_image.c @@ -3427,7 +3427,7 @@ _evas_object_image_preloading_check(Evas_Object *eo_obj) } Evas_Object * -_evas_object_image_videfl_parent_get(Evas_Object *eo_obj) +_evas_object_image_video_parent_get(Evas_Object *eo_obj) { Evas_Image_Data *o = efl_data_scope_get(eo_obj, MY_CLASS); return o->video_surface ? o->pixels->video.parent : NULL; diff --git a/src/lib/evas/canvas/evas_render.c b/src/lib/evas/canvas/evas_render.c index 5f82dd5b7f..eb4f8f62fd 100644 --- a/src/lib/evas/canvas/evas_render.c +++ b/src/lib/evas/canvas/evas_render.c @@ -1349,7 +1349,7 @@ _evas_render_can_use_overlay(Evas_Public_Data *e, Evas_Object *eo_obj) Eina_Bool surface_below, stacking_check, object_above = EINA_FALSE; Eina_Bool ignore_window; - video_parent = _evas_object_image_videfl_parent_get(eo_obj); + video_parent = _evas_object_image_video_parent_get(eo_obj); /* Check if any one is the stack make this object mapped */ eo_tmp = eo_obj; diff --git a/src/lib/evas/include/evas_private.h b/src/lib/evas/include/evas_private.h index 1d80b7ab90..e5c1bbf5cf 100644 --- a/src/lib/evas/include/evas_private.h +++ b/src/lib/evas/include/evas_private.h @@ -1646,7 +1646,7 @@ Evas_Object *_evas_object_image_source_get(Evas_Object *obj); Eina_Bool _evas_object_image_preloading_get(const Evas_Object *obj); void _evas_object_image_preloading_set(Evas_Object *obj, Eina_Bool preloading); void _evas_object_image_preloading_check(Evas_Object *obj); -Evas_Object *_evas_object_image_videfl_parent_get(Evas_Object *obj); +Evas_Object *_evas_object_image_video_parent_get(Evas_Object *obj); void _evas_object_image_video_overlay_show(Evas_Object *obj); void _evas_object_image_video_overlay_hide(Evas_Object *obj); void _evas_object_image_video_overlay_do(Evas_Object *obj); diff --git a/src/modules/emotion/generic/emotion_generic.c b/src/modules/emotion/generic/emotion_generic.c index c3fba86a77..4aacecad4b 100644 --- a/src/modules/emotion/generic/emotion_generic.c +++ b/src/modules/emotion/generic/emotion_generic.c @@ -1118,7 +1118,7 @@ em_format_get(void *ef EINA_UNUSED) } static void -em_videfl_data_size_get(void *data, int *w, int *h) +em_video_data_size_get(void *data, int *w, int *h) { Emotion_Generic_Video *ev = data; @@ -1684,7 +1684,7 @@ static const Emotion_Engine em_template_engine = em_seekable, /* seekable */ em_frame_done, /* frame_done */ em_format_get, /* format_get */ - em_videfl_data_size_get, /* videfl_data_size_get */ + em_video_data_size_get, /* video_data_size_get */ em_yuv_rows_get, /* yuv_rows_get */ em_bgra_data_get, /* bgra_data_get */ em_event_feed, /* event_feed */ diff --git a/src/modules/emotion/gstreamer/emotion_gstreamer.c b/src/modules/emotion/gstreamer/emotion_gstreamer.c index 3810401f53..a599481a16 100644 --- a/src/modules/emotion/gstreamer/emotion_gstreamer.c +++ b/src/modules/emotion/gstreamer/emotion_gstreamer.c @@ -656,7 +656,7 @@ em_format_get(void *video) } static void -em_videfl_data_size_get(void *video, int *w, int *h) +em_video_data_size_get(void *video, int *w, int *h) { Emotion_Gstreamer_Video *ev; Emotion_Video_Stream *vstream; @@ -1168,7 +1168,7 @@ static const Emotion_Engine em_engine = em_seekable, /* seekable */ em_frame_done, /* frame_done */ em_format_get, /* format_get */ - em_videfl_data_size_get, /* videfl_data_size_get */ + em_video_data_size_get, /* video_data_size_get */ em_yuv_rows_get, /* yuv_rows_get */ em_bgra_data_get, /* bgra_data_get */ em_event_feed, /* event_feed */ diff --git a/src/modules/emotion/gstreamer1/emotion_gstreamer.c b/src/modules/emotion/gstreamer1/emotion_gstreamer.c index 4b14581d25..700cf90ee9 100644 --- a/src/modules/emotion/gstreamer1/emotion_gstreamer.c +++ b/src/modules/emotion/gstreamer1/emotion_gstreamer.c @@ -558,7 +558,7 @@ em_format_get(void *video) } static void -em_videfl_data_size_get(void *video, int *w, int *h) +em_video_data_size_get(void *video, int *w, int *h) { em_size_get(video, w, h); } @@ -1149,7 +1149,7 @@ static const Emotion_Engine em_engine = em_seekable, /* seekable */ em_frame_done, /* frame_done */ em_format_get, /* format_get */ - em_videfl_data_size_get, /* videfl_data_size_get */ + em_video_data_size_get, /* video_data_size_get */ em_yuv_rows_get, /* yuv_rows_get */ em_bgra_data_get, /* bgra_data_get */ em_event_feed, /* event_feed */ diff --git a/src/modules/emotion/libvlc/emotion_libvlc.c b/src/modules/emotion/libvlc/emotion_libvlc.c index b78769382a..1e8f9d69b4 100644 --- a/src/modules/emotion/libvlc/emotion_libvlc.c +++ b/src/modules/emotion/libvlc/emotion_libvlc.c @@ -803,7 +803,7 @@ em_format_get(void *video EINA_UNUSED) } static void -em_videfl_data_size_get(void *video EINA_UNUSED, int *w EINA_UNUSED, int *h EINA_UNUSED) +em_video_data_size_get(void *video EINA_UNUSED, int *w EINA_UNUSED, int *h EINA_UNUSED) { } @@ -1345,7 +1345,7 @@ static const Emotion_Engine em_engine = em_seekable, /* seekable */ em_frame_done, /* frame_done */ em_format_get, /* format_get */ - em_videfl_data_size_get, /* videfl_data_size_get */ + em_video_data_size_get, /* video_data_size_get */ em_yuv_rows_get, /* yuv_rows_get */ em_bgra_data_get, /* bgra_data_get */ em_event_feed, /* event_feed */ diff --git a/src/modules/emotion/xine/emotion_xine.c b/src/modules/emotion/xine/emotion_xine.c index 852a564c42..dc89ee0eb1 100644 --- a/src/modules/emotion/xine/emotion_xine.c +++ b/src/modules/emotion/xine/emotion_xine.c @@ -630,7 +630,7 @@ em_format_get(void *ef) } static void -em_videfl_data_size_get(void *ef, int *w, int *h) +em_video_data_size_get(void *ef, int *w, int *h) { Emotion_Xine_Video *ev; volatile Emotion_Xine_Video_Frame *fr; @@ -1519,7 +1519,7 @@ static const Emotion_Engine em_engine = em_seekable, /* seekable */ em_frame_done, /* frame_done */ em_format_get, /* format_get */ - em_videfl_data_size_get, /* videfl_data_size_get */ + em_video_data_size_get, /* video_data_size_get */ em_yuv_rows_get, /* yuv_rows_get */ em_bgra_data_get, /* bgra_data_get */ em_event_feed, /* event_feed */