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-02-13 08:48:17 +0530
commitfed163bf41840913317b2b6f4c4798bbeb93227d (patch)
tree827cc05953b2f9be698b9d131166d4fd52b91952
parent3ec1c0bbcbdbb67fbada2336639e06d4a9b549b1 (diff)
downloadex-linaro_android_4.2.2.tar.gz
ex: Fix mismatch between header and implementationlinaro_android_4.2.2
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_;