Displaying 1 result from an estimated 1 matches for "process_type121".
2003 Feb 23
0
Question about some Cisco-specific code in "rtp.c"
The file "rtp.c" currently contains the following hack for special-case
handling of some Cisco-specific protocol:
} else if (payloadtype == 121) {
/* CISCO proprietary DTMF bridge */
f = process_type121(rtp, rtp->rawdata +
AST_FRIENDLY_OFFSET + hdrlen, res - hdrlen);
As I noted in my earlier message, I'm planning to update the code to
improve the handling of dynamic RTP payload type numbers (like 121) - in
particular, to fix bogus hard-wired cases like this.
In this case, though, I'...