diff options
author | Daniel Willmann <d.willmann@samsung.com> | 2013-04-26 18:24:15 +0100 |
---|---|---|
committer | Daniel Willmann <d.willmann@samsung.com> | 2013-04-26 18:49:24 +0100 |
commit | 72870c0b6ebc564cff283ce7549972bccd79e6df (patch) | |
tree | 6f5d7f0ca172ab8e08fde73875c53c2d3dcae137 /src/lib/ecore_audio/ecore_audio_private.h | |
parent | 3fdc608da16d5071a5b0f3a2b3be4a1e2f7124bc (diff) |
ecore_audio: Remove duplicate variables/move to appropriate place
* The idler for the write callback is now in the output struct because
different outputs might need it.
* Remove paused attribute from output - we have it in Ecore_Audio_Object
already
Signed-off-by: Daniel Willmann <d.willmann@samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_private.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/ecore_audio/ecore_audio_private.h b/src/lib/ecore_audio/ecore_audio_private.h index 0b0bfec28b..a7a8915aa5 100644 --- a/src/lib/ecore_audio/ecore_audio_private.h +++ b/src/lib/ecore_audio/ecore_audio_private.h | |||
@@ -117,9 +117,8 @@ struct _Ecore_Audio_Object | |||
117 | */ | 117 | */ |
118 | struct _Ecore_Audio_Output | 118 | struct _Ecore_Audio_Output |
119 | { | 119 | { |
120 | Eina_Bool paused; | ||
121 | |||
122 | Eina_List *inputs; /**< The inputs that are connected to this output */ | 120 | Eina_List *inputs; /**< The inputs that are connected to this output */ |
121 | Ecore_Idler *write_idler; | ||
123 | }; | 122 | }; |
124 | 123 | ||
125 | /** | 124 | /** |