diff options
author | Jun Zhao <barryjzhao@tencent.com> | 2019-06-14 09:22:04 +0800 |
---|---|---|
committer | Jun Zhao <barryjzhao@tencent.com> | 2019-06-14 13:21:38 +0800 |
commit | 6f82bf9dd30d7a8d8e4c4978eac2fb540629e508 (patch) | |
tree | fe434d46948881fb8c833081eaed02d95da21cd4 /libavformat/hls.c | |
parent | c432a91d252fc44bc4a9a56c785632d1f3fa182f (diff) | |
download | ffmpeg-6f82bf9dd30d7a8d8e4c4978eac2fb540629e508.tar.gz |
lavf/hls: More log message
More log message, it's will help the debugging
Reviewed-by: Steven Liu <lq@chinaffmpeg.org>
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r-- | libavformat/hls.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c index e10cfeb414..8c12fcef77 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -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; } |