mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-30 10:33:13 +00:00
Change message regarding marker bit forcing when SSRC changes to be shown only during debug so it doesn't overload high capacity systems
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@37307 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
4
rtp.c
4
rtp.c
@@ -497,8 +497,8 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
|
|||||||
ssrc = ntohl(rtpheader[2]);
|
ssrc = ntohl(rtpheader[2]);
|
||||||
|
|
||||||
if (!mark && rtp->rxssrc && rtp->rxssrc != ssrc) {
|
if (!mark && rtp->rxssrc && rtp->rxssrc != ssrc) {
|
||||||
if (option_verbose > 1)
|
if (option_debug || rtpdebug)
|
||||||
ast_verbose(VERBOSE_PREFIX_2 "Forcing Marker bit, because SSRC has changed\n");
|
ast_log(LOG_DEBUG, "Forcing Marker bit, because SSRC has changed\n");
|
||||||
mark = 1;
|
mark = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user