mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-07 13:30:09 -05:00
Revert "module-raop: zero uppet timestamp bits"
This reverts commit 21d16b1ad5.
The change causes the sound of videos to be way out of sync when streaming from Fedora to Sonos.
It seems the issue is a device-specific quirk, and the change cannot be applied universally to all devices,
thus reverting until a better solution is found that does not affect other devices.
This commit is contained in:
parent
f54938d24a
commit
a4c6f9a27f
1 changed files with 1 additions and 1 deletions
|
|
@ -318,7 +318,7 @@ static int send_udp_sync_packet(struct impl *impl,
|
||||||
pkt[0] |= htonl(0x10000000);
|
pkt[0] |= htonl(0x10000000);
|
||||||
pkt[1] = htonl(rtptime - latency);
|
pkt[1] = htonl(rtptime - latency);
|
||||||
transmitted = ntp_now();
|
transmitted = ntp_now();
|
||||||
pkt[2] = htonl((transmitted >> 32) & 0x0000ffff);
|
pkt[2] = htonl(transmitted >> 32);
|
||||||
pkt[3] = htonl(transmitted & 0xffffffff);
|
pkt[3] = htonl(transmitted & 0xffffffff);
|
||||||
pkt[4] = htonl(rtptime);
|
pkt[4] = htonl(rtptime);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue