summaryrefslogtreecommitdiffstats
path: root/include/media/AudioSystem.h
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-01-13 09:59:31 -0800
committerGlenn Kasten <gkasten@google.com>2014-01-14 18:12:46 -0800
commit5f972c031d4061f4f037c9fda1ea4bd9b6a756cd (patch)
treef70d82aa480a0cbe854395362aba76fbb58315dc /include/media/AudioSystem.h
parent5b27ccd67c845aa20a12a1fb58339e7e81e3d536 (diff)
downloadframeworks_av-5f972c031d4061f4f037c9fda1ea4bd9b6a756cd.zip
frameworks_av-5f972c031d4061f4f037c9fda1ea4bd9b6a756cd.tar.gz
frameworks_av-5f972c031d4061f4f037c9fda1ea4bd9b6a756cd.tar.bz2
AudioRecord::getInputFramesLost() cleanup
Fixed bug that if the binder call failed (for example if the IAudioFlinger binder is dead), then getInputFramesLost was returning garbage. Now it correctly returns zero, which is the error value for this method. The type declarations for getInputFramesLost were inconsistent: a mixture of unsigned int, size_t, and uint32_t. Now it returns uint32_t everywhere, which is what the underlying HAL API returns. Added a FIXME about the side effect behavior. This will need review for multi-client. Change-Id: Ifa2e117a87dbd0c1f2c892a31d1c3dd919bf1a0a
Diffstat (limited to 'include/media/AudioSystem.h')
-rw-r--r--include/media/AudioSystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/AudioSystem.h b/include/media/AudioSystem.h
index ca9aaf7..706344a 100644
--- a/include/media/AudioSystem.h
+++ b/include/media/AudioSystem.h
@@ -138,7 +138,7 @@ public:
audio_stream_type_t stream = AUDIO_STREAM_DEFAULT);
// return the number of input frames lost by HAL implementation, or 0 if the handle is invalid
- static size_t getInputFramesLost(audio_io_handle_t ioHandle);
+ static uint32_t getInputFramesLost(audio_io_handle_t ioHandle);
static int newAudioSessionId();
static void acquireAudioSessionId(int audioSession);