diff --git a/lib/installer-exclude/libjitsi.jar b/lib/installer-exclude/libjitsi.jar index 22b5ac281..7ce3fbdd3 100644 Binary files a/lib/installer-exclude/libjitsi.jar and b/lib/installer-exclude/libjitsi.jar differ diff --git a/src/net/java/sip/communicator/impl/protocol/sip/sdp/SdpUtils.java b/src/net/java/sip/communicator/impl/protocol/sip/sdp/SdpUtils.java index fd53672ab..246d0f980 100644 --- a/src/net/java/sip/communicator/impl/protocol/sip/sdp/SdpUtils.java +++ b/src/net/java/sip/communicator/impl/protocol/sip/sdp/SdpUtils.java @@ -1247,10 +1247,13 @@ private static List findAdvancedAttributes( attrValue = attrValue.trim(); - /* have to match payload type or wildcard */ + /* have to match payload type or wildcard if(!attrValue.startsWith(payloadType + " ") && !attrValue.startsWith("* ")) continue; + // Skip the check as it will skip all attributes + // that are for the whole stream, and not per codec + */ ret.add(attr); }