Skip to content

Commit 6443f08

Browse files
committed
avformat/whip: change rtx log log mode to VERBOSE
Signed-off-by: Jack Lau <jacklau1222@qq.com>
1 parent f4d6c7a commit 6443f08

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libavformat/whip.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1970,13 +1970,13 @@ static int whip_write_packet(AVFormatContext *s, AVPacket *pkt)
19701970
const RtpHistoryItem * it = rtp_history_find(whip, seq);
19711971
if (it) {
19721972
ret = send_rtx_packet(s, it->pkt, it->size);
1973-
av_log(whip, AV_LOG_INFO,
1973+
av_log(whip, AV_LOG_VERBOSE,
19741974
"WHIP: NACK, packet found: size: %d, seq=%d, rtx size=%d, lateset stored packet seq:%d\n",
19751975
it->size, seq, ret, whip->history[whip->hist_head-1].seq);
19761976
} else {
1977-
av_log(whip, AV_LOG_INFO,
1978-
"WHIP: NACK, packet not found, seq=%d, blp=%d, latest stored packet seq: %d, latest rtx seq: %d\n",
1979-
seq, blp, whip->history[whip->hist_head-1].seq, whip->rtx_seq);
1977+
av_log(whip, AV_LOG_VERBOSE,
1978+
"WHIP: NACK, packet not found, seq=%d, latest stored packet seq: %d, latest rtx seq: %d\n",
1979+
seq, whip->history[whip->hist_head-1].seq, whip->rtx_seq);
19801980
}
19811981
}
19821982
i = i + 4;

0 commit comments

Comments
 (0)