mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
bluetooth: set initial packet size to 60
Raise initial MTU size to fix frame size when hci can do 60 byte frames. Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/507>
This commit is contained in:
parent
9de895fe23
commit
c7c9ca22ab
2 changed files with 8 additions and 5 deletions
|
|
@ -326,8 +326,8 @@ static int sco_acquire_cb(pa_bluetooth_transport *t, bool optional, size_t *imtu
|
|||
if (sock < 0)
|
||||
goto fail;
|
||||
|
||||
if (imtu) *imtu = 48;
|
||||
if (omtu) *omtu = 48;
|
||||
if (imtu) *imtu = 60;
|
||||
if (omtu) *omtu = 60;
|
||||
|
||||
if (t->device->autodetect_mtu) {
|
||||
struct sco_options sco_opt;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue