]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/hls.c
Merge commit '5d2daebf3cc8de4cee1973db6a2229beaad3b7cd'
[ffmpeg] / libavformat / hls.c
index f17fd456080499923adb28745d75d5a81e4b857b..deba61f1368228bc1a9247088f9292fac7739b38 100644 (file)
@@ -495,19 +495,6 @@ static int ensure_playlist(HLSContext *c, struct playlist **pls, const char *url
     return 0;
 }
 
-static int open_in(HLSContext *c, AVIOContext **in, const char *url)
-{
-    AVDictionary *tmp = NULL;
-    int ret;
-
-    av_dict_copy(&tmp, c->avio_opts, 0);
-
-    ret = avio_open2(in, url, AVIO_FLAG_READ, c->interrupt_callback, &tmp);
-
-    av_dict_free(&tmp);
-    return ret;
-}
-
 static int url_connect(struct playlist *pls, AVDictionary *opts, AVDictionary *opts2)
 {
     AVDictionary *tmp = NULL;