diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-05-02 16:47:16 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-05-02 16:47:16 +0900 |
commit | f8c9a8d16708ac52195a8df70493a1fc91872348 (patch) | |
tree | c78586a9c486bf2468ac4645521ba24a79c3df09 /src/lib/ecore_audio/ecore_audio_sndfile_vio.c | |
parent | b64a2994b3b277cbe7fce17d7ee275fd0d78c925 (diff) |
revert the revert... damn you git!
Revert "Revert "Efl: replace eo_data_get for objects data referencing.""
This reverts commit b64a2994b3b277cbe7fce17d7ee275fd0d78c925.
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_sndfile_vio.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/ecore_audio/ecore_audio_sndfile_vio.c b/src/lib/ecore_audio/ecore_audio_sndfile_vio.c index 06268069aa..7fc595677c 100644 --- a/src/lib/ecore_audio/ecore_audio_sndfile_vio.c +++ b/src/lib/ecore_audio/ecore_audio_sndfile_vio.c | |||
@@ -16,7 +16,7 @@ | |||
16 | static sf_count_t _wrap_get_filelen(void *data) | 16 | static sf_count_t _wrap_get_filelen(void *data) |
17 | { | 17 | { |
18 | Eo *eo_obj = data; | 18 | Eo *eo_obj = data; |
19 | Ecore_Audio_Object *ea_obj = eo_data_get(eo_obj, ECORE_AUDIO_OBJ_CLASS); | 19 | Ecore_Audio_Object *ea_obj = eo_data_scope_get(eo_obj, ECORE_AUDIO_OBJ_CLASS); |
20 | 20 | ||
21 | if (!ea_obj->vio->vio) | 21 | if (!ea_obj->vio->vio) |
22 | goto error; | 22 | goto error; |
@@ -31,7 +31,7 @@ error: | |||
31 | static sf_count_t _wrap_seek(sf_count_t offset, int whence, void *data) | 31 | static sf_count_t _wrap_seek(sf_count_t offset, int whence, void *data) |
32 | { | 32 | { |
33 | Eo *eo_obj = data; | 33 | Eo *eo_obj = data; |
34 | Ecore_Audio_Object *ea_obj = eo_data_get(eo_obj, ECORE_AUDIO_OBJ_CLASS); | 34 | Ecore_Audio_Object *ea_obj = eo_data_scope_get(eo_obj, ECORE_AUDIO_OBJ_CLASS); |
35 | 35 | ||
36 | if (!ea_obj->vio->vio) | 36 | if (!ea_obj->vio->vio) |
37 | goto error; | 37 | goto error; |
@@ -46,7 +46,7 @@ error: | |||
46 | static sf_count_t _wrap_read(void *buffer, sf_count_t count, void *data) | 46 | static sf_count_t _wrap_read(void *buffer, sf_count_t count, void *data) |
47 | { | 47 | { |
48 | Eo *eo_obj = data; | 48 | Eo *eo_obj = data; |
49 | Ecore_Audio_Object *ea_obj = eo_data_get(eo_obj, ECORE_AUDIO_OBJ_CLASS); | 49 | Ecore_Audio_Object *ea_obj = eo_data_scope_get(eo_obj, ECORE_AUDIO_OBJ_CLASS); |
50 | 50 | ||
51 | if (!ea_obj->vio->vio) | 51 | if (!ea_obj->vio->vio) |
52 | goto error; | 52 | goto error; |
@@ -61,7 +61,7 @@ error: | |||
61 | static sf_count_t _wrap_write(const void *buffer, sf_count_t count, void *data) | 61 | static sf_count_t _wrap_write(const void *buffer, sf_count_t count, void *data) |
62 | { | 62 | { |
63 | Eo *eo_obj = data; | 63 | Eo *eo_obj = data; |
64 | Ecore_Audio_Object *ea_obj = eo_data_get(eo_obj, ECORE_AUDIO_OBJ_CLASS); | 64 | Ecore_Audio_Object *ea_obj = eo_data_scope_get(eo_obj, ECORE_AUDIO_OBJ_CLASS); |
65 | 65 | ||
66 | if (!ea_obj->vio->vio) | 66 | if (!ea_obj->vio->vio) |
67 | goto error; | 67 | goto error; |
@@ -76,7 +76,7 @@ error: | |||
76 | static sf_count_t _wrap_tell(void *data) | 76 | static sf_count_t _wrap_tell(void *data) |
77 | { | 77 | { |
78 | Eo *eo_obj = data; | 78 | Eo *eo_obj = data; |
79 | Ecore_Audio_Object *ea_obj = eo_data_get(eo_obj, ECORE_AUDIO_OBJ_CLASS); | 79 | Ecore_Audio_Object *ea_obj = eo_data_scope_get(eo_obj, ECORE_AUDIO_OBJ_CLASS); |
80 | 80 | ||
81 | if (!ea_obj->vio->vio) | 81 | if (!ea_obj->vio->vio) |
82 | goto error; | 82 | goto error; |