summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2012-03-21 07:22:40 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-21 07:22:40 -0700
commit04e9068f3b70b06a4aaea301934a75ea1cc418f7 (patch)
tree41c3161123da6624c3fb08532d0475f59d9e7078
parent49952644906debfafa1b830a2c532103e7afbcbc (diff)
parent49ba22c1e66a34dfb9266613e2bc836f6a9dc5cd (diff)
downloadvoip-04e9068f3b70b06a4aaea301934a75ea1cc418f7.tar.gz
Merge "Whitespace"
-rw-r--r--jni/rtp/AudioGroup.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/jni/rtp/AudioGroup.cpp b/jni/rtp/AudioGroup.cpp
index 1139577..b9bbd16 100644
--- a/jni/rtp/AudioGroup.cpp
+++ b/jni/rtp/AudioGroup.cpp
@@ -809,9 +809,9 @@ bool AudioGroup::DeviceThread::threadLoop()
AudioTrack track;
AudioRecord record;
if (track.set(AUDIO_STREAM_VOICE_CALL, sampleRate, AUDIO_FORMAT_PCM_16_BIT,
- AUDIO_CHANNEL_OUT_MONO, output) != NO_ERROR || record.set(
- AUDIO_SOURCE_VOICE_COMMUNICATION, sampleRate, AUDIO_FORMAT_PCM_16_BIT,
- AUDIO_CHANNEL_IN_MONO, input) != NO_ERROR) {
+ AUDIO_CHANNEL_OUT_MONO, output) != NO_ERROR ||
+ record.set(AUDIO_SOURCE_VOICE_COMMUNICATION, sampleRate, AUDIO_FORMAT_PCM_16_BIT,
+ AUDIO_CHANNEL_IN_MONO, input) != NO_ERROR) {
ALOGE("cannot initialize audio device");
return false;
}