Displaying 1 result from an estimated 1 matches for "static_rtp_pt".
2004 May 05
1
Asterisk devel. - Mediatrix dtmf bug solved
...CMU/8000
a=rtpmap:96 telephone-event/8000
a=fmtp:96 0-15
[...]
Then we've got this nice debug from (*):
May 5 10:48:15 NOTICE[139648000]: rtp.c:418 ast_rtp_read: Unknown RTP codec
96 received
May 5 10:48:15 NOTICE[139648000]: rtp.c:418 ast_rtp_read: Unknown RTP codec
96 received
We had this static_RTP_PT[xx] structure in rtp.c :(asterisk source):
[...]
[34] = {1, AST_FORMAT_H263},
[97] = {1, AST_FORMAT_ILBC},
[101] = {0, AST_RTP_DTMF},
[110] = {1, AST_FORMAT_SPEEX},
[121] = {0, AST_RTP_CISCO_DTMF}, // Must be type 121
[...]
as there is no 96 entry and function ast_rtp_read() is returning 'Unkn...