From 51e3010575ca55ee64ffe3c48087d263e9c1e65f Mon Sep 17 00:00:00 2001 From: Jun Zhao <mypopydev@gmail.com> Date: Wed, 4 Apr 2018 11:04:56 +0800 Subject: [PATCH] lavf/hls: Remove the dead code in parse_playlist() Signed-off-by: Jun Zhao <mypopydev@gmail.com> Reviewed-by: Steven Liu <lq@onvideo.cn> --- libavformat/hls.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index c578bf86e3b..ae0545a0867 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -743,7 +743,6 @@ static int parse_playlist(HLSContext *c, const char *url, } if (!in) { -#if 1 AVDictionary *opts = NULL; /* Some HLS servers don't like being sent the range header */ av_dict_set(&opts, "seekable", "0", 0); @@ -766,12 +765,6 @@ static int parse_playlist(HLSContext *c, const char *url, c->playlist_pb = in; else close_in = 1; -#else - ret = open_in(c, &in, url); - if (ret < 0) - return ret; - close_in = 1; -#endif } if (av_opt_get(in, "location", AV_OPT_SEARCH_CHILDREN, &new_url) >= 0) -- GitLab