diff options
author | Glenn Kasten <gkasten@google.com> | 2012-02-08 08:39:39 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-02-08 08:39:39 -0800 |
commit | 63d2daed17ab749baa80bc808fb5083b688b771b (patch) | |
tree | 735cfc77d2082c044816fe367f33401fd5b472c7 /services/audioflinger/AudioFlinger.cpp | |
parent | 4f9b0c54011eb8fd2ccfb393c2dcd51cd07800e0 (diff) | |
parent | c59c004a3a6042c0990d71179f88eee2ce781e3c (diff) | |
download | frameworks_av-63d2daed17ab749baa80bc808fb5083b688b771b.zip frameworks_av-63d2daed17ab749baa80bc808fb5083b688b771b.tar.gz frameworks_av-63d2daed17ab749baa80bc808fb5083b688b771b.tar.bz2 |
Merge "AudioFlinger methods const and inline"
Diffstat (limited to 'services/audioflinger/AudioFlinger.cpp')
-rw-r--r-- | services/audioflinger/AudioFlinger.cpp | 51 |
1 files changed, 2 insertions, 49 deletions
diff --git a/services/audioflinger/AudioFlinger.cpp b/services/audioflinger/AudioFlinger.cpp index cc16f37..8c0f26a 100644 --- a/services/audioflinger/AudioFlinger.cpp +++ b/services/audioflinger/AudioFlinger.cpp @@ -1026,26 +1026,6 @@ void AudioFlinger::ThreadBase::exit() requestExitAndWait(); } -uint32_t AudioFlinger::ThreadBase::sampleRate() const -{ - return mSampleRate; -} - -int AudioFlinger::ThreadBase::channelCount() const -{ - return (int)mChannelCount; -} - -audio_format_t AudioFlinger::ThreadBase::format() const -{ - return mFormat; -} - -size_t AudioFlinger::ThreadBase::frameCount() const -{ - return mFrameCount; -} - status_t AudioFlinger::ThreadBase::setParameters(const String8& keyValuePairs) { status_t status; @@ -1609,16 +1589,6 @@ status_t AudioFlinger::PlaybackThread::setMasterMute(bool muted) return NO_ERROR; } -float AudioFlinger::PlaybackThread::masterVolume() const -{ - return mMasterVolume; -} - -bool AudioFlinger::PlaybackThread::masterMute() const -{ - return mMasterMute; -} - status_t AudioFlinger::PlaybackThread::setStreamVolume(audio_stream_type_t stream, float value) { mStreamTypes[stream].volume = value; @@ -3368,23 +3338,10 @@ void AudioFlinger::ThreadBase::TrackBase::reset() { ALOGV("TrackBase::reset"); } -sp<IMemory> AudioFlinger::ThreadBase::TrackBase::getCblk() const -{ - return mCblkMemory; -} - int AudioFlinger::ThreadBase::TrackBase::sampleRate() const { return (int)mCblk->sampleRate; } -int AudioFlinger::ThreadBase::TrackBase::channelCount() const { - return (const int)mChannelCount; -} - -uint32_t AudioFlinger::ThreadBase::TrackBase::channelMask() const { - return mChannelMask; -} - void* AudioFlinger::ThreadBase::TrackBase::getBuffer(uint32_t offset, uint32_t frames) const { audio_track_cblk_t* cblk = this->cblk(); size_t frameSize = cblk->frameSize; @@ -6610,7 +6567,7 @@ status_t AudioFlinger::EffectModule::setEnabled(bool enabled) return NO_ERROR; } -bool AudioFlinger::EffectModule::isEnabled() +bool AudioFlinger::EffectModule::isEnabled() const { switch (mState) { case RESTART: @@ -6626,7 +6583,7 @@ bool AudioFlinger::EffectModule::isEnabled() } } -bool AudioFlinger::EffectModule::isProcessEnabled() +bool AudioFlinger::EffectModule::isProcessEnabled() const { switch (mState) { case RESTART: @@ -7042,10 +6999,6 @@ status_t AudioFlinger::EffectHandle::command(uint32_t cmdCode, return mEffect->command(cmdCode, cmdSize, pCmdData, replySize, pReplyData); } -sp<IMemory> AudioFlinger::EffectHandle::getCblk() const { - return mCblkMemory; -} - void AudioFlinger::EffectHandle::setControl(bool hasControl, bool signal, bool enabled) { ALOGV("setControl %p control %d", this, hasControl); |