diff options
author | Daniel Willmann <d.willmann@samsung.com> | 2013-04-19 15:28:00 +0100 |
---|---|---|
committer | Daniel Willmann <d.willmann@samsung.com> | 2013-04-19 15:28:00 +0100 |
commit | 1c0107afd8989a48841fd5bd94bfc0bd322b8030 (patch) | |
tree | 8f6eeb37d0540e866bd36ac05f677dc1b5a97b21 /src/lib/ecore_audio/ecore_audio_private.h | |
parent | de265a994ac7e32f4b543df28798a793a7be1bef (diff) |
ecore_audio: Fix seeking in tone input
Also make seekable be a property of the input as this doesn't make sense
for the output.
Signed-off-by: Daniel Willmann <d.willmann@samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_audio/ecore_audio_private.h b/src/lib/ecore_audio/ecore_audio_private.h index e899a04254..0b0bfec28b 100644 --- a/src/lib/ecore_audio/ecore_audio_private.h +++ b/src/lib/ecore_audio/ecore_audio_private.h | |||
@@ -106,7 +106,6 @@ struct _Ecore_Audio_Object | |||
106 | const char *name; | 106 | const char *name; |
107 | const char *source; | 107 | const char *source; |
108 | 108 | ||
109 | Eina_Bool seekable; | ||
110 | Eina_Bool paused; | 109 | Eina_Bool paused; |
111 | double volume; | 110 | double volume; |
112 | Ecore_Audio_Format format; | 111 | Ecore_Audio_Format format; |
@@ -129,6 +128,7 @@ struct _Ecore_Audio_Output | |||
129 | struct _Ecore_Audio_Input | 128 | struct _Ecore_Audio_Input |
130 | { | 129 | { |
131 | Eina_Bool paused; /**< Is the input paused? */ | 130 | Eina_Bool paused; /**< Is the input paused? */ |
131 | Eina_Bool seekable; | ||
132 | 132 | ||
133 | Eo *output; /**< The output this input is connected to */ | 133 | Eo *output; /**< The output this input is connected to */ |
134 | 134 | ||