Home
last modified time | relevance | path

Searched refs:subPatch (Results 1 – 1 of 1) sorted by relevance

/frameworks/av/services/audioflinger/
DPatchPanel.cpp424 struct audio_patch subPatch; in createPatchConnections() local
425 subPatch.num_sources = 1; in createPatchConnections()
426 subPatch.sources[0] = audioPatch->sources[0]; in createPatchConnections()
427 subPatch.num_sinks = 1; in createPatchConnections()
429 patch->mRecordThread->getAudioPortConfig(&subPatch.sinks[0]); in createPatchConnections()
430 subPatch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_MIC; in createPatchConnections()
432 status_t status = createAudioPatch(&subPatch, &patch->mRecordPatchHandle); in createPatchConnections()
440 patch->mPlaybackThread->getAudioPortConfig(&subPatch.sources[0]); in createPatchConnections()
441 subPatch.sinks[0] = audioPatch->sinks[0]; in createPatchConnections()
442 status = createAudioPatch(&subPatch, &patch->mPlaybackPatchHandle); in createPatchConnections()