summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>2012-09-05 14:37:17 +0200
committerAmit Pundir <amit.pundir@linaro.org>2013-07-25 04:46:46 +0530
commite63678083043ed596b9449d219ae977ac6959ebe (patch)
treefc840e67058517073ba089a16ffa159dce75f34f
parent1faa4aa55cd59258077b47532944b156086e17b2 (diff)
downloadex-e63678083043ed596b9449d219ae977ac6959ebe.tar.gz
ex: Fix mismatch between header and implementationlinaro_android_4.3.1linaro_android_4.3
The header defines GetChannelCount() as returning a size_t while the implementation defines it as returning a SLuint32. Change-Id: Iaa837d9a39540c338582496a33a4bbd8e3c63b55 Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
-rw-r--r--variablespeed/jni/variablespeed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/variablespeed/jni/variablespeed.h b/variablespeed/jni/variablespeed.h
index 07cba0fe..cf856da8 100644
--- a/variablespeed/jni/variablespeed.h
+++ b/variablespeed/jni/variablespeed.h
@@ -86,7 +86,7 @@ class AudioEngine {
bool HasSampleRateAndChannels();
SLuint32 GetSLSampleRate();
SLuint32 GetSLChannels();
- size_t GetChannelCount();
+ SLuint32 GetChannelCount();
// The single global audio engine instance.
static AudioEngine* audioEngine_;