add RTP_BUG_IGNORE_MARK_BIT to list of bug tolerances

This commit is contained in:
Anthony Minessale
2010-06-07 14:06:41 -05:00
parent 23b1fc6175
commit d5ba2f3e3b
3 changed files with 23 additions and 3 deletions
+7
View File
@@ -2125,6 +2125,13 @@ static void parse_rtp_bugs(sofia_profile_t *profile, const char *str)
profile->auto_rtp_bugs &= ~RTP_BUG_SONUS_SEND_INVALID_TIMESTAMP_2833;
}
if (switch_stristr("RTP_BUG_IGNORE_MARK_BIT", str)) {
profile->auto_rtp_bugs |= RTP_BUG_IGNORE_MARK_BIT;
}
if (switch_stristr("~RTP_BUG_IGNORE_MARK_BIT", str)) {
profile->auto_rtp_bugs &= ~RTP_BUG_IGNORE_MARK_BIT;
}
}