diff options
author | Jean-Michel Trivi <jmtrivi@google.com> | 2014-10-30 10:18:58 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-10-30 10:18:58 +0000 |
commit | 1f4b82a20d75b5aa8d7801d342ac3a9b48fa0863 (patch) | |
tree | 7eea37b097f7838631a82a73cbc231a569c3f02c /services/audioflinger | |
parent | ff05cbdb4939c2140726b6b7ce8907a9c90716e8 (diff) | |
parent | b14e6dc871e6cb5c7beea9049a778f342c177a83 (diff) | |
download | frameworks_av-1f4b82a20d75b5aa8d7801d342ac3a9b48fa0863.zip frameworks_av-1f4b82a20d75b5aa8d7801d342ac3a9b48fa0863.tar.gz frameworks_av-1f4b82a20d75b5aa8d7801d342ac3a9b48fa0863.tar.bz2 |
am b14e6dc8: Merge "Always use an address for remote submix" into lmp-mr1-dev automerge: 6e8212b
* commit 'b14e6dc871e6cb5c7beea9049a778f342c177a83':
Always use an address for remote submix
Diffstat (limited to 'services/audioflinger')
-rw-r--r-- | services/audioflinger/AudioFlinger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/audioflinger/AudioFlinger.cpp b/services/audioflinger/AudioFlinger.cpp index b6c365e..7b65de7 100644 --- a/services/audioflinger/AudioFlinger.cpp +++ b/services/audioflinger/AudioFlinger.cpp @@ -1976,13 +1976,13 @@ sp<AudioFlinger::RecordThread> AudioFlinger::openInput_l(audio_module_handle_t m status_t status = inHwHal->open_input_stream(inHwHal, *input, device, &halconfig, &inStream, flags, address.string(), source); ALOGV("openInput_l() openInputStream returned input %p, SamplingRate %d" - ", Format %#x, Channels %x, flags %#x, status %d", + ", Format %#x, Channels %x, flags %#x, status %d addr %s", inStream, halconfig.sample_rate, halconfig.format, halconfig.channel_mask, flags, - status); + status, address.string()); // If the input could not be opened with the requested parameters and we can handle the // conversion internally, try to open again with the proposed parameters. The AudioFlinger can |