can't do anything with it yet. Ideally a first step would be a
passthrough mode.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@46439
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
/* RTP Extension present */
hdrlen += 4;
hdrlen += (ntohl(rtpheader[3]) & 0xffff) << 2;
+ if (option_debug) {
+ int profile;
+ profile = (ntohl(rtpheader[3]) & 0xffff0000) >> 16;
+ if (profile == 0x505a)
+ ast_log(LOG_DEBUG, "Found Zfone extension in RTP stream - zrtp - not supported.\n");
+ else
+ ast_log(LOG_DEBUG, "Found unknown RTP Extensions %x\n", profile);
+ }
}
if (res < hdrlen) {