aboutsummaryrefslogtreecommitdiffstats
path: root/rtp.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-07 23:59:54 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-07 23:59:54 +0000
commit9552ca15733ae21b49c19ebc35c641b84418daf4 (patch)
treed4a39e0a542a062b297fc6215525c1d148b9f828 /rtp.c
parent286bbf2c238f24a3d804d5e93c1a047ad0ebb8c2 (diff)
Merged revisions 37307 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r37307 | file | 2006-07-07 19:57:53 -0400 (Fri, 07 Jul 2006) | 2 lines 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: http://svn.digium.com/svn/asterisk/trunk@37308 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'rtp.c')
-rw-r--r--rtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtp.c b/rtp.c
index 8b290c97c..ce37e93c1 100644
--- a/rtp.c
+++ b/rtp.c
@@ -1015,8 +1015,8 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
ssrc = ntohl(rtpheader[2]);
if (!mark && rtp->rxssrc && rtp->rxssrc != ssrc) {
- if (option_verbose > 1)
- ast_verbose(VERBOSE_PREFIX_2 "Forcing Marker bit, because SSRC has changed\n");
+ if (option_debug || rtpdebug)
+ ast_log(LOG_DEBUG, "Forcing Marker bit, because SSRC has changed\n");
mark = 1;
}