Juha Heinanen writes:
> while doing some sbc tests, i noticed that sbc modifies sdp even when
> rtp relay is not enabled. it leaves the sbc otherwise intact, but
> replaces
>
> m=audio 51228 UDP/TLS/RTP/SAVP 96 97 98 8 0 101
>
> with
>
> m=audio 51228 <unknown media type> 96 97 98 8 0 101
>
> why is it doing it?
looks like the problem is that UDP/TLS/RTP/SAVP is not known to sems.
in core/AmSdp.c:
inline string transport_p_2_str(int tp)
{
switch(tp){
case TP_RTPAVP: return "RTP/AVP";
case TP_UDP: return "udp";
case TP_RTPSAVP: return "RTP/SAVP";
case TP_RTPSAVPF: return "RTP/SAVPF";
case TP_UDPTL: return "udptl";
default: return "<unknown media type>";
}
}
-- juha
_______________________________________________
Sems mailing list
[email protected]
http://lists.iptel.org/mailman/listinfo/sems