mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
module-raop: zero uppet timestamp bits
The Audiopro link1 seems to want to upper bits of the timestamp in sync messages as 0. It still seems to work with Sonos. See #3247
This commit is contained in:
parent
fdc860c71b
commit
21d16b1ad5
1 changed files with 1 additions and 1 deletions
|
|
@ -317,7 +317,7 @@ static int send_udp_sync_packet(struct impl *impl,
|
|||
pkt[0] |= htonl(0x10000000);
|
||||
pkt[1] = htonl(rtptime - latency);
|
||||
transmitted = ntp_now();
|
||||
pkt[2] = htonl(transmitted >> 32);
|
||||
pkt[2] = htonl((transmitted >> 32) & 0x0000ffff);
|
||||
pkt[3] = htonl(transmitted & 0xffffffff);
|
||||
pkt[4] = htonl(rtptime);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue