Skip to content

Commit

Permalink
Related to ticket #377: fixed bug in incoming RTCP RR handling becaus…
Browse files Browse the repository at this point in the history
…e the RTCP packet structure has been changed in r1444

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@1446 74dad513-b988-da41-8d7b-12977e46ad98
  • Loading branch information
bennylp committed Sep 20, 2007
1 parent fd156c9 commit 7d1fa52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pjmedia/src/pjmedia/rtcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ PJ_DEF(void) pjmedia_rtcp_rx_rtcp( pjmedia_rtcp_session *sess,
+ sizeof(pjmedia_rtcp_sr)));
}
} else if (common->pt == RTCP_RR && common->count > 0)
rr = (pjmedia_rtcp_rr*)(((char*)pkt) +sizeof(pjmedia_rtcp_common) +4);
rr = (pjmedia_rtcp_rr*)(((char*)pkt) + sizeof(pjmedia_rtcp_common));


if (sr) {
Expand Down

0 comments on commit 7d1fa52

Please sign in to comment.