Merge remote-tracking branch 'origin/wvp-28181-2.0' into wvp-28181-2.0
commit
3e76214d07
|
@ -138,12 +138,21 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
|
||||||
// 解析sdp消息, 使用jainsip 自带的sdp解析方式
|
// 解析sdp消息, 使用jainsip 自带的sdp解析方式
|
||||||
String contentString = new String(request.getRawContent());
|
String contentString = new String(request.getRawContent());
|
||||||
|
|
||||||
// jainSip不支持y=字段, 移除移除以解析。
|
// jainSip不支持y=字段, 移除以解析。
|
||||||
int ssrcIndex = contentString.indexOf("y=");
|
int ssrcIndex = contentString.indexOf("y=");
|
||||||
|
// 检查是否有y字段
|
||||||
|
String ssrcDefault = "0000000000";
|
||||||
|
String ssrc;
|
||||||
|
SessionDescription sdp;
|
||||||
|
if (ssrcIndex >= 0) {
|
||||||
//ssrc规定长度为10字节,不取余下长度以避免后续还有“f=”字段
|
//ssrc规定长度为10字节,不取余下长度以避免后续还有“f=”字段
|
||||||
String ssrc = contentString.substring(ssrcIndex + 2, ssrcIndex + 12);
|
ssrc = contentString.substring(ssrcIndex + 2, ssrcIndex + 12);
|
||||||
String substring = contentString.substring(0, contentString.indexOf("y="));
|
String substring = contentString.substring(0, contentString.indexOf("y="));
|
||||||
SessionDescription sdp = SdpFactory.getInstance().createSessionDescription(substring);
|
sdp = SdpFactory.getInstance().createSessionDescription(substring);
|
||||||
|
}else {
|
||||||
|
ssrc = ssrcDefault;
|
||||||
|
sdp = SdpFactory.getInstance().createSessionDescription(contentString);
|
||||||
|
}
|
||||||
|
|
||||||
// 获取支持的格式
|
// 获取支持的格式
|
||||||
Vector mediaDescriptions = sdp.getMediaDescriptions(true);
|
Vector mediaDescriptions = sdp.getMediaDescriptions(true);
|
||||||
|
|
Loading…
Reference in New Issue