diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/emotion_smart.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/emotion/emotion_smart.c b/src/lib/emotion/emotion_smart.c index 73c588bf81..9a30bede6d 100644 --- a/src/lib/emotion/emotion_smart.c +++ b/src/lib/emotion/emotion_smart.c | |||
@@ -731,7 +731,7 @@ emotion_object_buffer_size_get(const Evas_Object *obj) | |||
731 | EAPI Eina_Bool | 731 | EAPI Eina_Bool |
732 | emotion_object_seekable_get(const Evas_Object *obj) | 732 | emotion_object_seekable_get(const Evas_Object *obj) |
733 | { | 733 | { |
734 | return efl_player_seekable_get(obj); | 734 | return efl_playable_seekable_get(obj); |
735 | } | 735 | } |
736 | 736 | ||
737 | EAPI Eina_Bool | 737 | EAPI Eina_Bool |
@@ -757,7 +757,7 @@ emotion_object_audio_handled_get(const Evas_Object *obj) | |||
757 | EAPI double | 757 | EAPI double |
758 | emotion_object_play_length_get(const Evas_Object *obj) | 758 | emotion_object_play_length_get(const Evas_Object *obj) |
759 | { | 759 | { |
760 | return efl_player_length_get(obj); | 760 | return efl_playable_length_get(obj); |
761 | } | 761 | } |
762 | 762 | ||
763 | EAPI void | 763 | EAPI void |
@@ -1171,7 +1171,7 @@ _efl_canvas_video_efl_player_progress_get(const Eo *obj EINA_UNUSED, Efl_Canvas_ | |||
1171 | } | 1171 | } |
1172 | 1172 | ||
1173 | EOLIAN static double | 1173 | EOLIAN static double |
1174 | _efl_canvas_video_efl_player_length_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Video_Data *sd) | 1174 | _efl_canvas_video_efl_playable_length_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Video_Data *sd) |
1175 | { | 1175 | { |
1176 | if (!sd->engine_instance) return 0.0; | 1176 | if (!sd->engine_instance) return 0.0; |
1177 | sd->len = emotion_engine_instance_len_get(sd->engine_instance); | 1177 | sd->len = emotion_engine_instance_len_get(sd->engine_instance); |
@@ -1179,7 +1179,7 @@ _efl_canvas_video_efl_player_length_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Vi | |||
1179 | } | 1179 | } |
1180 | 1180 | ||
1181 | EOLIAN static Eina_Bool | 1181 | EOLIAN static Eina_Bool |
1182 | _efl_canvas_video_efl_player_seekable_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Video_Data *sd) | 1182 | _efl_canvas_video_efl_playable_seekable_get(const Eo *obj EINA_UNUSED, Efl_Canvas_Video_Data *sd) |
1183 | { | 1183 | { |
1184 | if (!sd->engine_instance) return EINA_FALSE; | 1184 | if (!sd->engine_instance) return EINA_FALSE; |
1185 | return emotion_engine_instance_seekable(sd->engine_instance); | 1185 | return emotion_engine_instance_seekable(sd->engine_instance); |