[FFmpeg-cvslog] lavf/hls: Remove the dead code in parse_playlist()

Jun Zhao git at videolan.org
Wed Apr 4 06:05:45 EEST 2018


ffmpeg | branch: master | Jun Zhao <mypopydev at gmail.com> | Wed Apr  4 11:04:56 2018 +0800| [51e3010575ca55ee64ffe3c48087d263e9c1e65f] | committer: Steven Liu

lavf/hls: Remove the dead code in  parse_playlist()

Signed-off-by: Jun Zhao <mypopydev at gmail.com>
Reviewed-by: Steven Liu <lq at onvideo.cn>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=51e3010575ca55ee64ffe3c48087d263e9c1e65f
---

 libavformat/hls.c | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/libavformat/hls.c b/libavformat/hls.c
index c578bf86e3..ae0545a086 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)



More information about the ffmpeg-cvslog mailing list