diff options
| author | 2009-07-28 06:11:55 -0700 | |
|---|---|---|
| committer | 2009-07-28 06:11:55 -0700 | |
| commit | d55d179e95baecdd9722dbd1c169608cb819716c (patch) | |
| tree | 844a052e9b68cd44ce4041e8b3258606767e571f /libs/audioflinger/AudioFlinger.cpp | |
| parent | 728d0c2a7f49a8eecc185502775759442d60a5b4 (diff) | |
Fix issue 2004229: DTMF tones play through earpiece (G1).
Diffstat (limited to 'libs/audioflinger/AudioFlinger.cpp')
| -rw-r--r-- | libs/audioflinger/AudioFlinger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/audioflinger/AudioFlinger.cpp b/libs/audioflinger/AudioFlinger.cpp index 133613123c..232ffb05bd 100644 --- a/libs/audioflinger/AudioFlinger.cpp +++ b/libs/audioflinger/AudioFlinger.cpp @@ -3443,8 +3443,8 @@ status_t AudioFlinger::setStreamOutput(uint32_t stream, void *output) srcThread->getTracks(tracks, activeTracks, stream); if (tracks.size()) { dstThread->putTracks(tracks, activeTracks); - dstThread->sendConfigEvent(AudioSystem::STREAM_CONFIG_CHANGED, stream); } + dstThread->sendConfigEvent(AudioSystem::STREAM_CONFIG_CHANGED, stream); } } |