derekf pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=fddbf75fc914b1eff8354e129fc3b6c1144c06bd

commit fddbf75fc914b1eff8354e129fc3b6c1144c06bd
Author: Derek Foreman <der...@osg.samsung.com>
Date:   Mon Apr 17 17:06:28 2017 -0500

    Fix sed error that changed "video" to "videfl"
    
    commit c662934be8bcbaba60d1688e77533acbea5d09b9 seems to have accidentally
    renamed a few instances of _video_ to _videfl_, this hopefully changes
    them all back.
---
 src/lib/elementary/elc_player.c                    | 8 ++++----
 src/lib/emotion/emotion_modules.c                  | 4 ++--
 src/lib/emotion/emotion_modules.h                  | 2 +-
 src/lib/emotion/emotion_private.h                  | 2 +-
 src/lib/emotion/emotion_smart.c                    | 2 +-
 src/lib/evas/canvas/evas_object_image.c            | 2 +-
 src/lib/evas/canvas/evas_render.c                  | 2 +-
 src/lib/evas/include/evas_private.h                | 2 +-
 src/modules/emotion/generic/emotion_generic.c      | 4 ++--
 src/modules/emotion/gstreamer/emotion_gstreamer.c  | 4 ++--
 src/modules/emotion/gstreamer1/emotion_gstreamer.c | 4 ++--
 src/modules/emotion/libvlc/emotion_libvlc.c        | 4 ++--
 src/modules/emotion/xine/emotion_xine.c            | 4 ++--
 13 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/src/lib/elementary/elc_player.c b/src/lib/elementary/elc_player.c
index 9e063cf..ff0c166 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 5b9666f..944ea01 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 4a02441..d5dd1dd 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 e884dc3..34e2bc3 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 42b5e35..0cfa317 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 1fb8b0d..a67a8bc 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 5f82dd5..eb4f8f6 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 1d80b7a..e5c1bbf 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 c3fba86..4aaceca 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 3810401..a599481 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 4b14581..700cf90 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 b787693..1e8f9d6 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 852a564..dc89ee0 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 */

-- 


Reply via email to