mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-21 19:55:33 -04:00
universal7885: audio: Add BT SCO to routes list
- Issue with returning a valid device descriptor since BT SCO is not defined in IOProfile. - First attempt to retrieve devicedescriptor from the available HwModule may fail due to address and encoded format conditions. - Further device descriptor query is based on IOProfile with devices defined in audio_policy_configuration. - This change adds BT SCO to IOProfile. Change-Id: I52225070e97dd702f965ca5dbb5db9d128df1faf Signed-off-by: SamarV-121 <samarvispute121@gmail.com>
This commit is contained in:
parent
e2f39c96d0
commit
c4245cb9d6
1 changed files with 14 additions and 2 deletions
|
|
@ -49,7 +49,15 @@
|
|||
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
|
||||
samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/>
|
||||
</devicePort>
|
||||
<devicePort tagName="Bt Sco All" role="sink" type="AUDIO_DEVICE_OUT_BLUETOOTH_SCO_HEADSET">
|
||||
<devicePort tagName="Bt Sco" role="sink" type="AUDIO_DEVICE_OUT_BLUETOOTH_SCO">
|
||||
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
|
||||
samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/>
|
||||
</devicePort>
|
||||
<devicePort tagName="Bt Sco Headset" role="sink" type="AUDIO_DEVICE_OUT_BLUETOOTH_SCO_HEADSET">
|
||||
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
|
||||
samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/>
|
||||
</devicePort>
|
||||
<devicePort tagName="Bt Sco Car Kit" role="sink" type="AUDIO_DEVICE_OUT_BLUETOOTH_SCO_CARKIT">
|
||||
<profile name="" format="AUDIO_FORMAT_PCM_16_BIT"
|
||||
samplingRates="48000" channelMasks="AUDIO_CHANNEL_OUT_STEREO"/>
|
||||
</devicePort>
|
||||
|
|
@ -105,7 +113,11 @@
|
|||
sources="primary-out,fast"/>
|
||||
<route type="mix" sink="Wired Headphone"
|
||||
sources="primary-out,fast"/>
|
||||
<route type="mix" sink="Bt Sco All"
|
||||
<route type="mix" sink="Bt Sco"
|
||||
sources="primary-out,fast"/>
|
||||
<route type="mix" sink="Bt Sco Headset"
|
||||
sources="primary-out,fast"/>
|
||||
<route type="mix" sink="Bt Sco Car Kit"
|
||||
sources="primary-out,fast"/>
|
||||
<route type="mix" sink="primary-in"
|
||||
sources="Built-In Mic,Built-In Back Mic,Wired Headset Mic,Bt Sco Headset Mic,Aux Device In,Voice Call Mic,FM Mic"/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue