<div dir="ltr">Hi,<br><br>Apparently, the source based timing logic (when using the headset_head_unit profile there is a sink and a source) from:<br><a href="https://github.com/pulseaudio/pulseaudio/blob/master/src/modules/bluetooth/module-bluez5-device.c#L1581">https://github.com/pulseaudio/pulseaudio/blob/master/src/modules/bluetooth/module-bluez5-device.c#L1581<br></a><br>combined with the hard-coded MTU of 48 bytes / packet can cause SCO packets to be badly delayed with some devices.<br><br><br>For example, the following happens with the CYW43438 chip used in the Raspberry Pi 3:<br><br>PulseAudio (hard-coded) MTU - 48 bytes / packet<br><br>Real MTU - 64 bytes / packet<br><br>Packet Size negotiated at the eSCO connect - 60 bytes / packet<br><br>The CYW43438 uses the negotiated packet size of 60 bytes / packet, so it sends bigger, 60 bytes SCO packets less often.<br><br>Based on the above logic from module-bluez5-device.c, PulseAudio sends SCO packets (one at a time) only when SCO packet are received from CYW43438. Because of the packet size of 60 bytes, these packets are sent less often than PulseAudio would need to send its 48 byte packets.<br><br>The result is that the playback (paplay) is way to slow: 12.16 seconds, instead of 9.72 seconds (+25%).<div><br>HCI (+SCO) log:<br><a href="https://www.dropbox.com/s/yy7a1sltmzbsakk/bt-log-bcm.txt?dl=0">https://www.dropbox.com/s/yy7a1sltmzbsakk/bt-log-bcm.txt?dl=0<br></a><br>---<br><br>Using autodetect_mtu=yes resolves the delay, but the problem does not seems to be the MTU.<br><br>---<br><br>The issue, I think is the same as in:<br><br>[pulseaudio-discuss] [PATCH] Fix: Distorted audio during Bluetooth SCO HFP/HSP playback<br><br><a href="https://lists.freedesktop.org/archives/pulseaudio-discuss/2017-January/027448.html">https://lists.freedesktop.org/archives/pulseaudio-discuss/2017-January/027448.html<br></a><br>---<br><br>I tried to change module-bluez5-device.c to always use system clock based timing (as for A2DP) and this seems to fix the problem.<br><br>What is the reason to use this source based timing, instead of using system clock based timing as for A2DP ? It's just optimization? Or it is some requirement of the Bluetooth spec? Using the system clock would be more reliable, I think.<br><br>Thanks,<br>Attila Tőkés</div></div>