Merge "audioflinger: fix issue with camcorder and A2DP" into ics-mr1

This commit is contained in:
Eric Laurent
2012-03-19 08:32:35 -07:00
committed by Android (Google) Code Review

View File

@@ -794,7 +794,8 @@ status_t AudioFlinger::setParameters(int ioHandle, const String8& keyValuePairs)
// indicate output device change to all input threads for pre processing
AudioParameter param = AudioParameter(keyValuePairs);
int value;
if (param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) {
if ((param.getInt(String8(AudioParameter::keyRouting), value) == NO_ERROR) &&
(value != 0)) {
for (size_t i = 0; i < mRecordThreads.size(); i++) {
mRecordThreads.valueAt(i)->setParameters(keyValuePairs);
}