Adds AdvancedAttributesAwareCodec that can handle attributes that are valid for all codecs and fixes parsing them. Adds handling of ptime for one of the codecs.

cefexperiments 5302
Damian Minkov 12 years ago
parent ce54fcec45
commit cd73dd1c17

@ -1247,10 +1247,13 @@ private static List<Attribute> 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);
}

Loading…
Cancel
Save