mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 11:06:31 +00:00
Revert "res_rtp_asterisk.c: Set Mark on rtp when timestamp skew is too big"
This reverts commitf30ad96b3f
. The original change was not RFC compliant and caused issues because it set the RTP marker bit in cases when it shouldn't be set. See the linked issue #1135 for a detailed explanation. Fixes: #1135. (cherry picked from commita47fe8f84f
)
This commit is contained in:
committed by
Asterisk Development Team
parent
648efaaa91
commit
8ad349b10f
@@ -5266,11 +5266,6 @@ static int rtp_raw_write(struct ast_rtp_instance *instance, struct ast_frame *fr
|
||||
}
|
||||
|
||||
if (ast_test_flag(frame, AST_FRFLAG_HAS_TIMING_INFO)) {
|
||||
if (abs(frame->ts * rate - (int)rtp->lastts) > MAX_TIMESTAMP_SKEW) {
|
||||
ast_verbose("(%p) RTP audio difference is %d set mark\n",
|
||||
instance, abs(frame->ts * rate - (int)rtp->lastts));
|
||||
mark = 1;
|
||||
}
|
||||
rtp->lastts = frame->ts * rate;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user