]> git.sesse.net Git - ffmpeg/commitdiff
avformat/hls: make different warning message between open url and parse playlist
authorSteven Liu <lq@chinaffmpeg.org>
Wed, 27 Mar 2019 04:58:30 +0000 (12:58 +0800)
committerSteven Liu <lq@chinaffmpeg.org>
Tue, 2 Apr 2019 04:11:47 +0000 (12:11 +0800)
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
libavformat/hls.c

index 4e38d25678ced70de033d624d6eb517709852d73..f4e449880b9b94a5b09ba1dfc171ed9ef754454b 100644 (file)
@@ -658,7 +658,7 @@ static int open_url(AVFormatContext *s, AVIOContext **pb, const char *url,
         } else if (ret < 0) {
             if (ret != AVERROR_EOF)
                 av_log(s, AV_LOG_WARNING,
-                    "keepalive request failed for '%s', retrying with new connection: %s\n",
+                    "keepalive request failed for '%s' when opening url, retrying with new connection: %s\n",
                     url, av_err2str(ret));
             ret = s->io_open(s, pb, url, AVIO_FLAG_READ, &tmp);
         }
@@ -715,7 +715,7 @@ static int parse_playlist(HLSContext *c, const char *url,
         } else if (ret < 0) {
             if (ret != AVERROR_EOF)
                 av_log(c->ctx, AV_LOG_WARNING,
-                    "keepalive request failed for '%s', retrying with new connection: %s\n",
+                    "keepalive request failed for '%s' when parsing playlist, retrying with new connection: %s\n",
                     url, av_err2str(ret));
             in = NULL;
         }