summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>2012-09-05 14:37:17 +0200
committerUbuntu <vishal.bhoj@linaro.org>2014-06-05 10:02:26 +0000
commit6f3f66a5736c32f333133f69a25a1668c7b7abec (patch)
tree5325b5872c9f435947547aa9c2e5e7b9659d3238
parentc4832282a659324af7ab34c329000e35ced326f5 (diff)
downloadex-linaro_android_4.4.4.tar.gz
ex: Fix mismatch between header and implementationlinaro_android_4.4.4linaro_android_4.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 b48dbc25..74710e52 100644
--- a/variablespeed/jni/variablespeed.h
+++ b/variablespeed/jni/variablespeed.h
@@ -87,7 +87,7 @@ class AudioEngine {
bool HasSampleRateAndChannels();
SLuint32 GetSLSampleRate();
SLuint32 GetSLChannels();
- size_t GetChannelCount();
+ SLuint32 GetChannelCount();
// The single global audio engine instance.
static AudioEngine* audioEngine_;