FS-7500: set ssrc from frame not rtp session so the ssrc changing coded can detect a shift

This commit is contained in:
Anthony Minessale 2014-11-25 17:47:36 -05:00 committed by Michael Jerris
parent 853873725b
commit b747687bb2
1 changed files with 1 additions and 1 deletions

View File

@ -7065,7 +7065,7 @@ SWITCH_DECLARE(int) switch_rtp_write_frame(switch_rtp_t *rtp_session, switch_fra
send_msg->header.version = 2; send_msg->header.version = 2;
send_msg->header.m = frame->m; send_msg->header.m = frame->m;
send_msg->header.ts = htonl(frame->timestamp); send_msg->header.ts = htonl(frame->timestamp);
send_msg->header.ssrc = htonl(rtp_session->ssrc); send_msg->header.ssrc = htonl(frame->ssrc);
} }
} else { } else {