Fix build with ortp 0.13.0.
This commit is contained in:
parent
fa983ead5e
commit
b43c1f9304
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=188707
@ -266,7 +266,7 @@
|
||||
guint32 clockts;
|
||||
/* use the sync system time to compute a timestamp */
|
||||
- PayloadType *pt=rtp_profile_get_payload(r->rtpsession->profile,r->rtpsession->payload_type);
|
||||
+ PayloadType *pt=rtp_profile_get_payload(r->rtpsession->profile,r->rtpsession->recv_pt);
|
||||
+ PayloadType *pt=rtp_profile_get_payload(r->rtpsession->rcv.profile,r->rtpsession->rcv.pt);
|
||||
g_return_val_if_fail(pt!=NULL,0);
|
||||
clockts=(guint32)(((double)synctime * (double)pt->clock_rate)/1000.0);
|
||||
ms_trace("ms_rtp_send_process: sync->time=%i clock=%i",synctime,clockts);
|
||||
@ -397,7 +397,7 @@
|
||||
/* we are connected with queues (surely for video)*/
|
||||
/* use the sync system time to compute a timestamp */
|
||||
- PayloadType *pt=rtp_profile_get_payload(r->rtpsession->profile,r->rtpsession->payload_type);
|
||||
+ PayloadType *pt=rtp_profile_get_payload(r->rtpsession->profile,r->rtpsession->send_pt);
|
||||
+ PayloadType *pt=rtp_profile_get_payload(r->rtpsession->snd.profile,r->rtpsession->snd.pt);
|
||||
if (pt==NULL) {
|
||||
ms_warning("ms_rtp_recv_process(): NULL RtpPayload- skipping.");
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user