1
Fork 0

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:
Dmitry Sharshakov 2023-12-17 08:45:40 +03:00 committed by Wim Taymans
parent 065e819f18
commit eab90d6029
1 changed files with 1 additions and 1 deletions

View File

@ -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)