]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Change message regarding marker bit forcing when SSRC changes to be shown only during...
authorJoshua Colp <jcolp@digium.com>
Fri, 7 Jul 2006 23:57:53 +0000 (23:57 +0000)
committerJoshua Colp <jcolp@digium.com>
Fri, 7 Jul 2006 23:57:53 +0000 (23:57 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@37307 65c4cc65-6c06-0410-ace0-fbb531ad65f3

rtp.c

diff --git a/rtp.c b/rtp.c
index c08d18abc85a23c8ee6af63d88675faba57aa37c..9b328396a00c581de9c8608249ee515d7ae2f266 100644 (file)
--- a/rtp.c
+++ b/rtp.c
@@ -497,8 +497,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;
        }