diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2007-03-29 00:33:38 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2007-03-29 00:33:38 +0000 |
commit | b43c1f930477746bf058538238d7d218f43b6e34 (patch) | |
tree | 5573f73be28114446197bfef5aa155d8ddf3f23d /net-im | |
parent | fa983ead5e3625d2629cff1492346a86ccb81606 (diff) | |
download | ports-b43c1f930477746bf058538238d7d218f43b6e34.tar.gz ports-b43c1f930477746bf058538238d7d218f43b6e34.zip |
Notes
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/kopete/files/patch-kopete-jingle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-im/kopete/files/patch-kopete-jingle b/net-im/kopete/files/patch-kopete-jingle index 519a7058332c..e9f13aad44e5 100644 --- a/net-im/kopete/files/patch-kopete-jingle +++ b/net-im/kopete/files/patch-kopete-jingle @@ -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; |