FS-7500: set ssrc from frame not rtp session so the ssrc changing coded can detect a shift
This commit is contained in:
parent
853873725b
commit
b747687bb2
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue