Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/
DPatchPanel.cpp367 struct audio_patch subPatch; in createPatchConnections() local
368 subPatch.num_sources = 1; in createPatchConnections()
369 subPatch.sources[0] = audioPatch->sources[0]; in createPatchConnections()
370 subPatch.num_sinks = 1; in createPatchConnections()
372 patch->mRecordThread->getAudioPortConfig(&subPatch.sinks[0]); in createPatchConnections()
373 subPatch.sinks[0].ext.mix.usecase.source = AUDIO_SOURCE_MIC; in createPatchConnections()
375 status_t status = createAudioPatch(&subPatch, &patch->mRecordPatchHandle); in createPatchConnections()
382 patch->mPlaybackThread->getAudioPortConfig(&subPatch.sources[0]); in createPatchConnections()
383 subPatch.sinks[0] = audioPatch->sinks[0]; in createPatchConnections()
384 status = createAudioPatch(&subPatch, &patch->mPlaybackPatchHandle); in createPatchConnections()