]> git.sesse.net Git - ffmpeg/commitdiff
lavf/hls: More log message
authorJun Zhao <barryjzhao@tencent.com>
Fri, 14 Jun 2019 01:22:04 +0000 (09:22 +0800)
committerJun Zhao <barryjzhao@tencent.com>
Fri, 14 Jun 2019 05:21:38 +0000 (13:21 +0800)
More log message, it's will help the debugging

Reviewed-by: Steven Liu <lq@chinaffmpeg.org>
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
libavformat/hls.c

index e10cfeb41411d410174f3cab14eaa7684214a321..8c12fcef77b25a6efae4e8119f1129e127f2e0c2 100644 (file)
@@ -849,6 +849,7 @@ static int parse_playlist(HLSContext *c, const char *url,
             if (ptr)
                 seg_offset = strtoll(ptr+1, NULL, 10);
         } else if (av_strstart(line, "#", NULL)) {
+            av_log(c->ctx, AV_LOG_INFO, "Skip ('%s')\n", line);
             continue;
         } else if (line[0]) {
             if (is_variant) {
@@ -1398,8 +1399,8 @@ restart:
         v->needed = playlist_needed(v);
 
         if (!v->needed) {
-            av_log(v->parent, AV_LOG_INFO, "No longer receiving playlist %d\n",
-                v->index);
+            av_log(v->parent, AV_LOG_INFO, "No longer receiving playlist %d ('%s')\n",
+                   v->index, v->url);
             return AVERROR_EOF;
         }