1<?xml version="1.0" encoding="UTF-8"?>
2<!-- Le Audio HAL Audio Policy Configuration file -->
3<module name="bluetooth" halVersion="2.1">
4    <mixPorts>
5        <mixPort name="le audio output" role="source">
6            <profile name="" format="AUDIO_FORMAT_PCM_16_BIT,AUDIO_FORMAT_PCM_24_BIT,AUDIO_FORMAT_PCM_32_BIT"
7                     samplingRates="8000,16000,24000,32000,44100,48000"
8                     channelMasks="AUDIO_CHANNEL_OUT_MONO,AUDIO_CHANNEL_OUT_STEREO"/>
9        </mixPort>
10        <mixPort name="le audio input" role="sink">
11            <profile name="" format="AUDIO_FORMAT_PCM_16_BIT,AUDIO_FORMAT_PCM_24_BIT,AUDIO_FORMAT_PCM_32_BIT"
12                     samplingRates="8000,16000,24000,32000,44100,48000"
13                     channelMasks="AUDIO_CHANNEL_IN_MONO,AUDIO_CHANNEL_IN_STEREO"/>
14        </mixPort>
15    </mixPorts>
16    <devicePorts>
17        <devicePort tagName="BLE Headset Out" type="AUDIO_DEVICE_OUT_BLE_HEADSET" role="sink"/>
18        <devicePort tagName="BLE Speaker Out" type="AUDIO_DEVICE_OUT_BLE_SPEAKER" role="sink"/>
19        <devicePort tagName="BLE Headset In" type="AUDIO_DEVICE_IN_BLE_HEADSET" role="source"/>
20    </devicePorts>
21    <routes>
22        <route type="mix" sink="BLE Headset Out" sources="le audio output"/>
23        <route type="mix" sink="BLE Speaker Out" sources="le audio output"/>
24        <route type="mix" sink="le audio input" sources="BLE Headset In"/>
25    </routes>
26</module>
27