mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-27 09:52:17 +00:00
avformat/http: print error that causes reconnection
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
7990beedee
commit
63974bd494
@ -1242,7 +1242,7 @@ static int http_read_stream(URLContext *h, uint8_t *buf, int size)
|
||||
#endif /* CONFIG_ZLIB */
|
||||
read_ret = http_buf_read(h, buf, size);
|
||||
if (read_ret < 0 && s->reconnect && !h->is_streamed && s->filesize > 0 && s->off < s->filesize) {
|
||||
av_log(h, AV_LOG_INFO, "Will reconnect at %"PRId64".\n", s->off);
|
||||
av_log(h, AV_LOG_INFO, "Will reconnect at %"PRId64" error=%s.\n", s->off, av_err2str(read_ret));
|
||||
seek_ret = http_seek_internal(h, s->off, SEEK_SET, 1);
|
||||
if (seek_ret != s->off) {
|
||||
av_log(h, AV_LOG_ERROR, "Failed to reconnect at %"PRId64".\n", s->off);
|
||||
|
Loading…
Reference in New Issue
Block a user