Fixed RTCP parsing of bitfield structs.

pull/101/head
Frederic-Philippe Metz 11 years ago
parent f8aaf358cd
commit 8a0fbf201f

@ -483,11 +483,11 @@ int rtcp_demux_is_rtcp(const str *s) {
void print_rtcp_common(char** cdrbufcur, const pjmedia_rtcp_common *common) {
*cdrbufcur += sprintf(*cdrbufcur,"version=%u, padding=%u, count=%u, payloadtype=%u, length=%u, ssrc=%u, ",
ntohl(common->version),
ntohl(common->p),
ntohl(common->count),
ntohl(common->pt),
ntohl(common->length),
common->version,
common->p,
common->count,
common->pt,
common->length,
ntohl(common->ssrc));
}

Loading…
Cancel
Save