diff options
author | Glenn Kasten <gkasten@google.com> | 2012-11-08 10:35:06 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-11-08 10:35:07 -0800 |
commit | 659004c2949620d8adb29e1d950a2dd1c75ba9a9 (patch) | |
tree | 0619d1c2fa1515119ddd92648724e89a1073e76a | |
parent | 755e8e1dcf36f282b727ff22d87d3c2fac70d30a (diff) | |
parent | b1c0993b215c5c3eebd1c6bafc22bba23d57a70b (diff) | |
download | frameworks_av-659004c2949620d8adb29e1d950a2dd1c75ba9a9.zip frameworks_av-659004c2949620d8adb29e1d950a2dd1c75ba9a9.tar.gz frameworks_av-659004c2949620d8adb29e1d950a2dd1c75ba9a9.tar.bz2 |
Merge "Add all-channel AudioTrack::setVolume() API"
-rw-r--r-- | include/media/AudioTrack.h | 7 | ||||
-rw-r--r-- | media/libmedia/AudioTrack.cpp | 9 | ||||
-rw-r--r-- | media/libmedia/ToneGenerator.cpp | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/include/media/AudioTrack.h b/include/media/AudioTrack.h index 1a19999..5f235cb 100644 --- a/include/media/AudioTrack.h +++ b/include/media/AudioTrack.h @@ -265,9 +265,14 @@ public: /* Set volume for this track, mostly used for games' sound effects * left and right volumes. Levels must be >= 0.0 and <= 1.0. + * This is the older API. New applications should use setVolume(float) when possible. */ status_t setVolume(float left, float right); - void getVolume(float* left, float* right) const; + + /* Set volume for all channels. This is the preferred API for new applications, + * especially for multi-channel content. + */ + status_t setVolume(float volume); /* Set the send level for this track. An auxiliary effect should be attached * to the track with attachEffect(). Level must be >= 0.0 and <= 1.0. diff --git a/media/libmedia/AudioTrack.cpp b/media/libmedia/AudioTrack.cpp index f7921ba..324fd6d 100644 --- a/media/libmedia/AudioTrack.cpp +++ b/media/libmedia/AudioTrack.cpp @@ -509,14 +509,9 @@ status_t AudioTrack::setVolume(float left, float right) return NO_ERROR; } -void AudioTrack::getVolume(float* left, float* right) const +status_t AudioTrack::setVolume(float volume) { - if (left != NULL) { - *left = mVolume[LEFT]; - } - if (right != NULL) { - *right = mVolume[RIGHT]; - } + return setVolume(volume, volume); } status_t AudioTrack::setAuxEffectSendLevel(float level) diff --git a/media/libmedia/ToneGenerator.cpp b/media/libmedia/ToneGenerator.cpp index 253602d..42584fe 100644 --- a/media/libmedia/ToneGenerator.cpp +++ b/media/libmedia/ToneGenerator.cpp @@ -1036,7 +1036,7 @@ bool ToneGenerator::initAudioTrack() { goto initAudioTrack_exit; } - mpAudioTrack->setVolume(mVolume, mVolume); + mpAudioTrack->setVolume(mVolume); mState = TONE_INIT; |