We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d913ee1 commit 15ae96aCopy full SHA for 15ae96a
libavformat/whip.c
@@ -1964,13 +1964,13 @@ static int whip_write_packet(AVFormatContext *s, AVPacket *pkt)
1964
const RtpHistoryItem * it = rtp_history_find(whip, seq);
1965
if (it) {
1966
ret = send_rtx_packet(s, it->pkt, it->size);
1967
- av_log(whip, AV_LOG_INFO,
+ av_log(whip, AV_LOG_VERBOSE,
1968
"WHIP: NACK, packet found: size: %d, seq=%d, rtx size=%d, lateset stored packet seq:%d\n",
1969
it->size, seq, ret, whip->history[whip->hist_head-1].seq);
1970
} else {
1971
1972
- "WHIP: NACK, packet not found, seq=%d, blp=%d, latest stored packet seq: %d, latest rtx seq: %d\n",
1973
- seq, blp, whip->history[whip->hist_head-1].seq, whip->rtx_seq);
+ "WHIP: NACK, packet not found, seq=%d, latest stored packet seq: %d, latest rtx seq: %d\n",
+ seq, whip->history[whip->hist_head-1].seq, whip->rtx_seq);
1974
}
1975
1976
i = i + 4;
0 commit comments