mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
module-rtp-sap: allow overriding NTP value
It seems like most devices use value 0 there, so for further enhanced compatibility it's preferred to do so as well
This commit is contained in:
parent
065e819f18
commit
eab90d6029
1 changed files with 1 additions and 1 deletions
|
|
@ -690,7 +690,7 @@ static struct session *session_new_announce(struct impl *impl, struct node *node
|
|||
sess->announce = true;
|
||||
|
||||
sdp->hash = pw_rand32();
|
||||
sdp->ntp = (uint32_t) time(NULL) + 2208988800U;
|
||||
sdp->ntp = pw_properties_get_uint32(props, "rtp.ntp", (uint32_t) time(NULL) + 2208988800U);
|
||||
sess->props = props;
|
||||
|
||||
if ((str = pw_properties_get(props, "sess.name")) == NULL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue