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 7c14581 commit 4bb3833Copy full SHA for 4bb3833
libavformat/whip.c
@@ -1969,10 +1969,13 @@ static int whip_write_packet(AVFormatContext *s, AVPacket *pkt)
1969
1970
const RtpHistoryItem * it = rtp_history_find(whip, seq);
1971
if (it) {
1972
- send_rtx_packet(s, it->pkt, it->size);
1973
- av_log(whip, AV_LOG_INFO, "WHIP: NACK packet found: size: %d, seq=%d, blp=%d\n", it->size, seq, blp);
+ ret = send_rtx_packet(s, it->pkt, it->size);
+ av_log(whip, AV_LOG_INFO,
1974
+ "WHIP: NACK, packet found: size: %d, seq=%d, rtx size=%d, lateset stored packet seq:%d\n",
1975
+ it->size, seq, ret, whip->history[whip->hist_head-1].seq);
1976
} else {
- av_log(whip, AV_LOG_INFO, "WHIP: NACK packet, seq=%d, blp=%d, not found, the latest packet seq: %d, rtx seq: %d\n",
1977
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);
1980
}
1981
0 commit comments