Merge "res_rtp_asterisk: Fix ssrc change for rtcp srtp"

This commit is contained in:
George Joseph 2017-06-14 16:05:37 -05:00 committed by Gerrit Code Review
commit 54a08a2e43
1 changed files with 1 additions and 1 deletions

View File

@ -3447,7 +3447,7 @@ static void ast_rtp_change_source(struct ast_rtp_instance *instance)
ast_debug(3, "Changing ssrc for SRTP from %u to %u\n", rtp->ssrc, ssrc);
res_srtp->change_source(srtp, rtp->ssrc, ssrc);
if (rtcp_srtp != srtp) {
res_srtp->change_source(srtp, rtp->ssrc, ssrc);
res_srtp->change_source(rtcp_srtp, rtp->ssrc, ssrc);
}
}