mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-06 23:04:54 +00:00
rtsp: warning when max_delay reached
packets are queued due to packet reordering until the queue reach its maximal size or max delay is reached. This commit adds a warning trace when max delay is reached. Signed-off-by: Eloi BAIL <eloi.bail@savoirfairelinux.com> Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
d555bd69e7
commit
1ec611a102
@ -2112,6 +2112,8 @@ redo:
|
||||
}
|
||||
if (len == AVERROR(EAGAIN) && first_queue_st &&
|
||||
rt->transport == RTSP_TRANSPORT_RTP) {
|
||||
av_log(s, AV_LOG_WARNING,
|
||||
"max delay reached. need to consume packet\n");
|
||||
rtsp_st = first_queue_st;
|
||||
ret = ff_rtp_parse_packet(rtsp_st->transport_priv, pkt, NULL, 0);
|
||||
goto end;
|
||||
|
Loading…
Reference in New Issue
Block a user