]> git.sesse.net Git - ffmpeg/commitdiff
Merge commit '81306fd4bdeb5c17d4db771e4fec684773b5790f'
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>
Tue, 16 Feb 2016 16:26:49 +0000 (16:26 +0000)
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>
Tue, 16 Feb 2016 16:27:14 +0000 (16:27 +0000)
* commit '81306fd4bdeb5c17d4db771e4fec684773b5790f':
  hls: eliminate ffurl_* usage

Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
1  2 
libavformat/hls.c

index fc1ff38e05a3673f2c16811c2b09727d8f1f8806,c370b6ec0c6b24b05702005f78c096f629650fe0..762e14041e552b2f65a93ef74e1b782ecd21a109
@@@ -36,8 -34,6 +36,7 @@@
  #include "avformat.h"
  #include "internal.h"
  #include "avio_internal.h"
- #include "url.h"
 +#include "id3v2.h"
  
  #define INITIAL_BUFFER_SIZE 32768
  
@@@ -210,57 -114,13 +209,57 @@@ static int read_chomp_line(AVIOContext 
      return len;
  }
  
 -static void free_segment_list(struct variant *var)
 +static void free_segment_list(struct playlist *pls)
 +{
 +    int i;
 +    for (i = 0; i < pls->n_segments; i++) {
 +        av_freep(&pls->segments[i]->key);
 +        av_freep(&pls->segments[i]->url);
 +        av_freep(&pls->segments[i]);
 +    }
 +    av_freep(&pls->segments);
 +    pls->n_segments = 0;
 +}
 +
 +static void free_init_section_list(struct playlist *pls)
  {
      int i;
 -    for (i = 0; i < var->n_segments; i++)
 -        av_free(var->segments[i]);
 -    av_freep(&var->segments);
 -    var->n_segments = 0;
 +    for (i = 0; i < pls->n_init_sections; i++) {
 +        av_freep(&pls->init_sections[i]->url);
 +        av_freep(&pls->init_sections[i]);
 +    }
 +    av_freep(&pls->init_sections);
 +    pls->n_init_sections = 0;
 +}
 +
 +static void free_playlist_list(HLSContext *c)
 +{
 +    int i;
 +    for (i = 0; i < c->n_playlists; i++) {
 +        struct playlist *pls = c->playlists[i];
 +        free_segment_list(pls);
 +        free_init_section_list(pls);
 +        av_freep(&pls->renditions);
 +        av_freep(&pls->id3_buf);
 +        av_dict_free(&pls->id3_initial);
 +        ff_id3v2_free_extra_meta(&pls->id3_deferred_extra);
 +        av_freep(&pls->init_sec_buf);
 +        av_packet_unref(&pls->pkt);
 +        av_freep(&pls->pb.buffer);
 +        if (pls->input)
-             ffurl_close(pls->input);
++            ff_format_io_close(c->ctx, &pls->input);
 +        if (pls->ctx) {
 +            pls->ctx->pb = NULL;
 +            avformat_close_input(&pls->ctx);
 +        }
 +        av_free(pls);
 +    }
 +    av_freep(&c->playlists);
 +    av_freep(&c->cookies);
 +    av_freep(&c->user_agent);
 +    av_freep(&c->headers);
 +    av_freep(&c->http_proxy);
 +    c->n_playlists = 0;
  }
  
  static void free_variant_list(HLSContext *c)
@@@ -384,264 -200,28 +383,241 @@@ static void handle_key_args(struct key_
      }
  }
  
 -static int open_in(HLSContext *c, AVIOContext **in, const char *url)
 +struct init_section_info {
 +    char uri[MAX_URL_SIZE];
 +    char byterange[32];
 +};
 +
 +static struct segment *new_init_section(struct playlist *pls,
 +                                        struct init_section_info *info,
 +                                        const char *url_base)
  {
 -    AVDictionary *tmp = NULL;
 -    int ret;
 +    struct segment *sec;
 +    char *ptr;
 +    char tmp_str[MAX_URL_SIZE];
  
 -    av_dict_copy(&tmp, c->avio_opts, 0);
 +    if (!info->uri[0])
 +        return NULL;
  
 -    ret = c->ctx->io_open(c->ctx, in, url, AVIO_FLAG_READ, &tmp);
 +    sec = av_mallocz(sizeof(*sec));
 +    if (!sec)
 +        return NULL;
  
 -    av_dict_free(&tmp);
 -    return ret;
 +    ff_make_absolute_url(tmp_str, sizeof(tmp_str), url_base, info->uri);
 +    sec->url = av_strdup(tmp_str);
 +    if (!sec->url) {
 +        av_free(sec);
 +        return NULL;
 +    }
 +
 +    if (info->byterange[0]) {
 +        sec->size = atoi(info->byterange);
 +        ptr = strchr(info->byterange, '@');
 +        if (ptr)
 +            sec->url_offset = atoi(ptr+1);
 +    } else {
 +        /* the entire file is the init section */
 +        sec->size = -1;
 +    }
 +
 +    dynarray_add(&pls->init_sections, &pls->n_init_sections, sec);
 +
 +    return sec;
 +}
 +
 +static void handle_init_section_args(struct init_section_info *info, const char *key,
 +                                           int key_len, char **dest, int *dest_len)
 +{
 +    if (!strncmp(key, "URI=", key_len)) {
 +        *dest     =        info->uri;
 +        *dest_len = sizeof(info->uri);
 +    } else if (!strncmp(key, "BYTERANGE=", key_len)) {
 +        *dest     =        info->byterange;
 +        *dest_len = sizeof(info->byterange);
 +    }
 +}
 +
 +struct rendition_info {
 +    char type[16];
 +    char uri[MAX_URL_SIZE];
 +    char group_id[MAX_FIELD_LEN];
 +    char language[MAX_FIELD_LEN];
 +    char assoc_language[MAX_FIELD_LEN];
 +    char name[MAX_FIELD_LEN];
 +    char defaultr[4];
 +    char forced[4];
 +    char characteristics[MAX_CHARACTERISTICS_LEN];
 +};
 +
 +static struct rendition *new_rendition(HLSContext *c, struct rendition_info *info,
 +                                      const char *url_base)
 +{
 +    struct rendition *rend;
 +    enum AVMediaType type = AVMEDIA_TYPE_UNKNOWN;
 +    char *characteristic;
 +    char *chr_ptr;
 +    char *saveptr;
 +
 +    if (!strcmp(info->type, "AUDIO"))
 +        type = AVMEDIA_TYPE_AUDIO;
 +    else if (!strcmp(info->type, "VIDEO"))
 +        type = AVMEDIA_TYPE_VIDEO;
 +    else if (!strcmp(info->type, "SUBTITLES"))
 +        type = AVMEDIA_TYPE_SUBTITLE;
 +    else if (!strcmp(info->type, "CLOSED-CAPTIONS"))
 +        /* CLOSED-CAPTIONS is ignored since we do not support CEA-608 CC in
 +         * AVC SEI RBSP anyway */
 +        return NULL;
 +
 +    if (type == AVMEDIA_TYPE_UNKNOWN)
 +        return NULL;
 +
 +    /* URI is mandatory for subtitles as per spec */
 +    if (type == AVMEDIA_TYPE_SUBTITLE && !info->uri[0])
 +        return NULL;
 +
 +    /* TODO: handle subtitles (each segment has to parsed separately) */
 +    if (c->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL)
 +        if (type == AVMEDIA_TYPE_SUBTITLE)
 +            return NULL;
 +
 +    rend = av_mallocz(sizeof(struct rendition));
 +    if (!rend)
 +        return NULL;
 +
 +    dynarray_add(&c->renditions, &c->n_renditions, rend);
 +
 +    rend->type = type;
 +    strcpy(rend->group_id, info->group_id);
 +    strcpy(rend->language, info->language);
 +    strcpy(rend->name, info->name);
 +
 +    /* add the playlist if this is an external rendition */
 +    if (info->uri[0]) {
 +        rend->playlist = new_playlist(c, info->uri, url_base);
 +        if (rend->playlist)
 +            dynarray_add(&rend->playlist->renditions,
 +                         &rend->playlist->n_renditions, rend);
 +    }
 +
 +    if (info->assoc_language[0]) {
 +        int langlen = strlen(rend->language);
 +        if (langlen < sizeof(rend->language) - 3) {
 +            rend->language[langlen] = ',';
 +            strncpy(rend->language + langlen + 1, info->assoc_language,
 +                    sizeof(rend->language) - langlen - 2);
 +        }
 +    }
 +
 +    if (!strcmp(info->defaultr, "YES"))
 +        rend->disposition |= AV_DISPOSITION_DEFAULT;
 +    if (!strcmp(info->forced, "YES"))
 +        rend->disposition |= AV_DISPOSITION_FORCED;
 +
 +    chr_ptr = info->characteristics;
 +    while ((characteristic = av_strtok(chr_ptr, ",", &saveptr))) {
 +        if (!strcmp(characteristic, "public.accessibility.describes-music-and-sound"))
 +            rend->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
 +        else if (!strcmp(characteristic, "public.accessibility.describes-video"))
 +            rend->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED;
 +
 +        chr_ptr = NULL;
 +    }
 +
 +    return rend;
 +}
 +
 +static void handle_rendition_args(struct rendition_info *info, const char *key,
 +                                  int key_len, char **dest, int *dest_len)
 +{
 +    if (!strncmp(key, "TYPE=", key_len)) {
 +        *dest     =        info->type;
 +        *dest_len = sizeof(info->type);
 +    } else if (!strncmp(key, "URI=", key_len)) {
 +        *dest     =        info->uri;
 +        *dest_len = sizeof(info->uri);
 +    } else if (!strncmp(key, "GROUP-ID=", key_len)) {
 +        *dest     =        info->group_id;
 +        *dest_len = sizeof(info->group_id);
 +    } else if (!strncmp(key, "LANGUAGE=", key_len)) {
 +        *dest     =        info->language;
 +        *dest_len = sizeof(info->language);
 +    } else if (!strncmp(key, "ASSOC-LANGUAGE=", key_len)) {
 +        *dest     =        info->assoc_language;
 +        *dest_len = sizeof(info->assoc_language);
 +    } else if (!strncmp(key, "NAME=", key_len)) {
 +        *dest     =        info->name;
 +        *dest_len = sizeof(info->name);
 +    } else if (!strncmp(key, "DEFAULT=", key_len)) {
 +        *dest     =        info->defaultr;
 +        *dest_len = sizeof(info->defaultr);
 +    } else if (!strncmp(key, "FORCED=", key_len)) {
 +        *dest     =        info->forced;
 +        *dest_len = sizeof(info->forced);
 +    } else if (!strncmp(key, "CHARACTERISTICS=", key_len)) {
 +        *dest     =        info->characteristics;
 +        *dest_len = sizeof(info->characteristics);
 +    }
 +    /*
 +     * ignored:
 +     * - AUTOSELECT: client may autoselect based on e.g. system language
 +     * - INSTREAM-ID: EIA-608 closed caption number ("CC1".."CC4")
 +     */
 +}
 +
 +/* used by parse_playlist to allocate a new variant+playlist when the
 + * playlist is detected to be a Media Playlist (not Master Playlist)
 + * and we have no parent Master Playlist (parsing of which would have
 + * allocated the variant and playlist already)
 + * *pls == NULL  => Master Playlist or parentless Media Playlist
 + * *pls != NULL => parented Media Playlist, playlist+variant allocated */
 +static int ensure_playlist(HLSContext *c, struct playlist **pls, const char *url)
 +{
 +    if (*pls)
 +        return 0;
 +    if (!new_variant(c, NULL, url, NULL))
 +        return AVERROR(ENOMEM);
 +    *pls = c->playlists[c->n_playlists - 1];
 +    return 0;
 +}
 +
- static int url_connect(struct playlist *pls, AVDictionary *opts, AVDictionary *opts2)
- {
-     AVDictionary *tmp = NULL;
-     int ret;
-     av_dict_copy(&tmp, opts, 0);
-     av_dict_copy(&tmp, opts2, 0);
-     if (pls->parent->protocol_whitelist) {
-         pls->input->protocol_whitelist =  av_strdup(pls->parent->protocol_whitelist);
-         if (!pls->input->protocol_whitelist) {
-             av_dict_free(&tmp);
-             return AVERROR(ENOMEM);
-         }
-     }
-     if ((ret = ffurl_connect(pls->input, &tmp)) < 0) {
-         ffurl_close(pls->input);
-         pls->input = NULL;
-     }
-     av_dict_free(&tmp);
-     return ret;
- }
 +static void update_options(char **dest, const char *name, void *src)
 +{
 +    av_freep(dest);
 +    av_opt_get(src, name, 0, (uint8_t**)dest);
 +    if (*dest && !strlen(*dest))
 +        av_freep(dest);
  }
  
- static int open_url(HLSContext *c, URLContext **uc, const char *url, AVDictionary *opts)
+ static int open_url(AVFormatContext *s, AVIOContext **pb, const char *url,
 -                    const AVDictionary *opts)
++                    AVDictionary *opts, AVDictionary *opts2)
  {
++    HLSContext *c = s->priv_data;
      AVDictionary *tmp = NULL;
-     int ret;
 +    const char *proto_name = avio_find_protocol_name(url);
+     int ret;
+     av_dict_copy(&tmp, opts, 0);
++    av_dict_copy(&tmp, opts2, 0);
 +
 +    if (!proto_name)
 +        return AVERROR_INVALIDDATA;
 +
 +    // only http(s) & file are allowed
 +    if (!av_strstart(proto_name, "http", NULL) && !av_strstart(proto_name, "file", NULL))
 +        return AVERROR_INVALIDDATA;
 +    if (!strncmp(proto_name, url, strlen(proto_name)) && url[strlen(proto_name)] == ':')
 +        ;
 +    else if (strcmp(proto_name, "file") || !strncmp(url, "file,", 5))
 +        return AVERROR_INVALIDDATA;
  
-     av_dict_copy(&tmp, c->avio_opts, 0);
-     av_dict_copy(&tmp, opts, 0);
-     ret = ffurl_open_whitelist(uc, url, AVIO_FLAG_READ, c->interrupt_callback, &tmp, c->ctx->protocol_whitelist);
-     if( ret >= 0) {
+     ret = s->io_open(s, pb, url, AVIO_FLAG_READ, &tmp);
++    if (ret >= 0) {
 +        // update cookies on http response with setcookies.
-         URLContext *u = *uc;
-         update_options(&c->cookies, "cookies", u->priv_data);
++        void *u = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb->opaque;
++        update_options(&c->cookies, "cookies", u);
 +        av_dict_set(&opts, "cookies", c->cookies, 0);
 +    }
  
      av_dict_free(&tmp);
  
@@@ -852,272 -358,25 +828,272 @@@ fail
      return ret;
  }
  
 -static int open_input(struct variant *var)
 +static struct segment *current_segment(struct playlist *pls)
  {
 -    HLSContext *c = var->parent->priv_data;
 -    struct segment *seg = var->segments[var->cur_seq_no - var->start_seq_no];
 +    return pls->segments[pls->cur_seq_no - pls->start_seq_no];
 +}
 +
 +enum ReadFromURLMode {
 +    READ_NORMAL,
 +    READ_COMPLETE,
 +};
 +
- /* read from URLContext, limiting read to current segment */
 +static int read_from_url(struct playlist *pls, struct segment *seg,
 +                         uint8_t *buf, int buf_size,
 +                         enum ReadFromURLMode mode)
 +{
 +    int ret;
 +
 +     /* limit read if the segment was only a part of a file */
 +    if (seg->size >= 0)
 +        buf_size = FFMIN(buf_size, seg->size - pls->cur_seg_offset);
 +
-     if (mode == READ_COMPLETE)
-         ret = ffurl_read_complete(pls->input, buf, buf_size);
-     else
-         ret = ffurl_read(pls->input, buf, buf_size);
++    if (mode == READ_COMPLETE) {
++        ret = avio_read(pls->input, buf, buf_size);
++        if (ret != buf_size)
++            av_log(NULL, AV_LOG_ERROR, "Could not read complete segment.\n");
++    } else
++        ret = avio_read(pls->input, buf, buf_size);
 +
 +    if (ret > 0)
 +        pls->cur_seg_offset += ret;
 +
 +    return ret;
 +}
 +
 +/* Parse the raw ID3 data and pass contents to caller */
 +static void parse_id3(AVFormatContext *s, AVIOContext *pb,
 +                      AVDictionary **metadata, int64_t *dts,
 +                      ID3v2ExtraMetaAPIC **apic, ID3v2ExtraMeta **extra_meta)
 +{
 +    static const char id3_priv_owner_ts[] = "com.apple.streaming.transportStreamTimestamp";
 +    ID3v2ExtraMeta *meta;
 +
 +    ff_id3v2_read_dict(pb, metadata, ID3v2_DEFAULT_MAGIC, extra_meta);
 +    for (meta = *extra_meta; meta; meta = meta->next) {
 +        if (!strcmp(meta->tag, "PRIV")) {
 +            ID3v2ExtraMetaPRIV *priv = meta->data;
 +            if (priv->datasize == 8 && !strcmp(priv->owner, id3_priv_owner_ts)) {
 +                /* 33-bit MPEG timestamp */
 +                int64_t ts = AV_RB64(priv->data);
 +                av_log(s, AV_LOG_DEBUG, "HLS ID3 audio timestamp %"PRId64"\n", ts);
 +                if ((ts & ~((1ULL << 33) - 1)) == 0)
 +                    *dts = ts;
 +                else
 +                    av_log(s, AV_LOG_ERROR, "Invalid HLS ID3 audio timestamp %"PRId64"\n", ts);
 +            }
 +        } else if (!strcmp(meta->tag, "APIC") && apic)
 +            *apic = meta->data;
 +    }
 +}
 +
 +/* Check if the ID3 metadata contents have changed */
 +static int id3_has_changed_values(struct playlist *pls, AVDictionary *metadata,
 +                                  ID3v2ExtraMetaAPIC *apic)
 +{
 +    AVDictionaryEntry *entry = NULL;
 +    AVDictionaryEntry *oldentry;
 +    /* check that no keys have changed values */
 +    while ((entry = av_dict_get(metadata, "", entry, AV_DICT_IGNORE_SUFFIX))) {
 +        oldentry = av_dict_get(pls->id3_initial, entry->key, NULL, AV_DICT_MATCH_CASE);
 +        if (!oldentry || strcmp(oldentry->value, entry->value) != 0)
 +            return 1;
 +    }
 +
 +    /* check if apic appeared */
 +    if (apic && (pls->ctx->nb_streams != 2 || !pls->ctx->streams[1]->attached_pic.data))
 +        return 1;
 +
 +    if (apic) {
 +        int size = pls->ctx->streams[1]->attached_pic.size;
 +        if (size != apic->buf->size - AV_INPUT_BUFFER_PADDING_SIZE)
 +            return 1;
 +
 +        if (memcmp(apic->buf->data, pls->ctx->streams[1]->attached_pic.data, size) != 0)
 +            return 1;
 +    }
 +
 +    return 0;
 +}
 +
 +/* Parse ID3 data and handle the found data */
 +static void handle_id3(AVIOContext *pb, struct playlist *pls)
 +{
 +    AVDictionary *metadata = NULL;
 +    ID3v2ExtraMetaAPIC *apic = NULL;
 +    ID3v2ExtraMeta *extra_meta = NULL;
 +    int64_t timestamp = AV_NOPTS_VALUE;
 +
 +    parse_id3(pls->ctx, pb, &metadata, &timestamp, &apic, &extra_meta);
 +
 +    if (timestamp != AV_NOPTS_VALUE) {
 +        pls->id3_mpegts_timestamp = timestamp;
 +        pls->id3_offset = 0;
 +    }
 +
 +    if (!pls->id3_found) {
 +        /* initial ID3 tags */
 +        av_assert0(!pls->id3_deferred_extra);
 +        pls->id3_found = 1;
 +
 +        /* get picture attachment and set text metadata */
 +        if (pls->ctx->nb_streams)
 +            ff_id3v2_parse_apic(pls->ctx, &extra_meta);
 +        else
 +            /* demuxer not yet opened, defer picture attachment */
 +            pls->id3_deferred_extra = extra_meta;
 +
 +        av_dict_copy(&pls->ctx->metadata, metadata, 0);
 +        pls->id3_initial = metadata;
 +
 +    } else {
 +        if (!pls->id3_changed && id3_has_changed_values(pls, metadata, apic)) {
 +            avpriv_report_missing_feature(pls->ctx, "Changing ID3 metadata in HLS audio elementary stream");
 +            pls->id3_changed = 1;
 +        }
 +        av_dict_free(&metadata);
 +    }
 +
 +    if (!pls->id3_deferred_extra)
 +        ff_id3v2_free_extra_meta(&extra_meta);
 +}
 +
- /* Intercept and handle ID3 tags between URLContext and AVIOContext */
 +static void intercept_id3(struct playlist *pls, uint8_t *buf,
 +                         int buf_size, int *len)
 +{
 +    /* intercept id3 tags, we do not want to pass them to the raw
 +     * demuxer on all segment switches */
 +    int bytes;
 +    int id3_buf_pos = 0;
 +    int fill_buf = 0;
 +    struct segment *seg = current_segment(pls);
 +
 +    /* gather all the id3 tags */
 +    while (1) {
 +        /* see if we can retrieve enough data for ID3 header */
 +        if (*len < ID3v2_HEADER_SIZE && buf_size >= ID3v2_HEADER_SIZE) {
 +            bytes = read_from_url(pls, seg, buf + *len, ID3v2_HEADER_SIZE - *len, READ_COMPLETE);
 +            if (bytes > 0) {
 +
 +                if (bytes == ID3v2_HEADER_SIZE - *len)
 +                    /* no EOF yet, so fill the caller buffer again after
 +                     * we have stripped the ID3 tags */
 +                    fill_buf = 1;
 +
 +                *len += bytes;
 +
 +            } else if (*len <= 0) {
 +                /* error/EOF */
 +                *len = bytes;
 +                fill_buf = 0;
 +            }
 +        }
 +
 +        if (*len < ID3v2_HEADER_SIZE)
 +            break;
 +
 +        if (ff_id3v2_match(buf, ID3v2_DEFAULT_MAGIC)) {
 +            int64_t maxsize = seg->size >= 0 ? seg->size : 1024*1024;
 +            int taglen = ff_id3v2_tag_len(buf);
 +            int tag_got_bytes = FFMIN(taglen, *len);
 +            int remaining = taglen - tag_got_bytes;
 +
 +            if (taglen > maxsize) {
 +                av_log(pls->ctx, AV_LOG_ERROR, "Too large HLS ID3 tag (%d > %"PRId64" bytes)\n",
 +                       taglen, maxsize);
 +                break;
 +            }
 +
 +            /*
 +             * Copy the id3 tag to our temporary id3 buffer.
 +             * We could read a small id3 tag directly without memcpy, but
 +             * we would still need to copy the large tags, and handling
 +             * both of those cases together with the possibility for multiple
 +             * tags would make the handling a bit complex.
 +             */
 +            pls->id3_buf = av_fast_realloc(pls->id3_buf, &pls->id3_buf_size, id3_buf_pos + taglen);
 +            if (!pls->id3_buf)
 +                break;
 +            memcpy(pls->id3_buf + id3_buf_pos, buf, tag_got_bytes);
 +            id3_buf_pos += tag_got_bytes;
 +
 +            /* strip the intercepted bytes */
 +            *len -= tag_got_bytes;
 +            memmove(buf, buf + tag_got_bytes, *len);
 +            av_log(pls->ctx, AV_LOG_DEBUG, "Stripped %d HLS ID3 bytes\n", tag_got_bytes);
 +
 +            if (remaining > 0) {
 +                /* read the rest of the tag in */
 +                if (read_from_url(pls, seg, pls->id3_buf + id3_buf_pos, remaining, READ_COMPLETE) != remaining)
 +                    break;
 +                id3_buf_pos += remaining;
 +                av_log(pls->ctx, AV_LOG_DEBUG, "Stripped additional %d HLS ID3 bytes\n", remaining);
 +            }
 +
 +        } else {
 +            /* no more ID3 tags */
 +            break;
 +        }
 +    }
 +
 +    /* re-fill buffer for the caller unless EOF */
 +    if (*len >= 0 && (fill_buf || *len == 0)) {
 +        bytes = read_from_url(pls, seg, buf + *len, buf_size - *len, READ_NORMAL);
 +
 +        /* ignore error if we already had some data */
 +        if (bytes >= 0)
 +            *len += bytes;
 +        else if (*len == 0)
 +            *len = bytes;
 +    }
 +
 +    if (pls->id3_buf) {
 +        /* Now parse all the ID3 tags */
 +        AVIOContext id3ioctx;
 +        ffio_init_context(&id3ioctx, pls->id3_buf, id3_buf_pos, 0, NULL, NULL, NULL, NULL);
 +        handle_id3(&id3ioctx, pls);
 +    }
 +
 +    if (pls->is_id3_timestamped == -1)
 +        pls->is_id3_timestamped = (pls->id3_mpegts_timestamp != AV_NOPTS_VALUE);
 +}
 +
 +static int open_input(HLSContext *c, struct playlist *pls, struct segment *seg)
 +{
 +    AVDictionary *opts = NULL;
 +    int ret;
 +
 +    // broker prior HTTP options that should be consistent across requests
 +    av_dict_set(&opts, "user-agent", c->user_agent, 0);
 +    av_dict_set(&opts, "cookies", c->cookies, 0);
 +    av_dict_set(&opts, "headers", c->headers, 0);
 +    av_dict_set(&opts, "http_proxy", c->http_proxy, 0);
 +    av_dict_set(&opts, "seekable", "0", 0);
 +
 +    if (seg->size >= 0) {
 +        /* try to restrict the HTTP request to the part we want
 +         * (if this is in fact a HTTP request) */
 +        av_dict_set_int(&opts, "offset", seg->url_offset, 0);
 +        av_dict_set_int(&opts, "end_offset", seg->url_offset + seg->size, 0);
 +    }
 +
 +    av_log(pls->parent, AV_LOG_VERBOSE, "HLS request for url '%s', offset %"PRId64", playlist %d\n",
 +           seg->url, seg->url_offset, pls->index);
 +
      if (seg->key_type == KEY_NONE) {
-         ret = open_url(pls->parent->priv_data, &pls->input, seg->url, opts);
 -        return open_url(var->parent, &var->input, seg->url, c->avio_opts);
++        ret = open_url(pls->parent, &pls->input, seg->url, c->avio_opts, opts);
      } else if (seg->key_type == KEY_AES_128) {
- //         HLSContext *c = var->parent->priv_data;
 -        AVDictionary *opts = NULL;
++        AVDictionary *opts2 = NULL;
          char iv[33], key[33], url[MAX_URL_SIZE];
 -        int ret;
 -        if (strcmp(seg->key, var->key_url)) {
 +        if (strcmp(seg->key, pls->key_url)) {
-             URLContext *uc;
-             if (open_url(pls->parent->priv_data, &uc, seg->key, opts) == 0) {
-                 if (ffurl_read_complete(uc, pls->key, sizeof(pls->key))
-                     != sizeof(pls->key)) {
+             AVIOContext *pb;
 -            if (open_url(var->parent, &pb, seg->key, c->avio_opts) == 0) {
 -                ret = avio_read(pb, var->key, sizeof(var->key));
 -                if (ret != sizeof(var->key)) {
++            if (open_url(pls->parent, &pb, seg->key, c->avio_opts, opts) == 0) {
++                ret = avio_read(pb, pls->key, sizeof(pls->key));
++                if (ret != sizeof(pls->key)) {
                      av_log(NULL, AV_LOG_ERROR, "Unable to read key file %s\n",
                             seg->key);
                  }
-                 ffurl_close(uc);
 -                ff_format_io_close(var->parent, &pb);
++                ff_format_io_close(pls->parent, &pb);
              } else {
                  av_log(NULL, AV_LOG_ERROR, "Unable to open key file %s\n",
                         seg->key);
          else
              snprintf(url, sizeof(url), "crypto:%s", seg->url);
  
-         if ((ret = ffurl_alloc(&pls->input, url, AVIO_FLAG_READ,
-                                &pls->parent->interrupt_callback)) < 0)
-             goto cleanup;
-         av_opt_set(pls->input->priv_data, "key", key, 0);
-         av_opt_set(pls->input->priv_data, "iv", iv, 0);
 -        av_dict_copy(&opts, c->avio_opts, 0);
 -        av_dict_set(&opts, "key", key, 0);
 -        av_dict_set(&opts, "iv", iv, 0);
++        av_dict_copy(&opts2, c->avio_opts, 0);
++        av_dict_set(&opts2, "key", key, 0);
++        av_dict_set(&opts2, "iv", iv, 0);
 -        ret = open_url(var->parent, &var->input, url, opts);
 -        av_dict_free(&opts);
++        ret = open_url(pls->parent, &pls->input, url, opts2, opts);
++
++        av_dict_free(&opts2);
 +
-         if ((ret = url_connect(pls, c->avio_opts, opts)) < 0) {
++        if (ret < 0) {
 +            goto cleanup;
 +        }
 +        ret = 0;
 +    } else if (seg->key_type == KEY_SAMPLE_AES) {
 +        av_log(pls->parent, AV_LOG_ERROR,
 +               "SAMPLE-AES encryption is not supported yet\n");
 +        ret = AVERROR_PATCHWELCOME;
 +    }
 +    else
 +      ret = AVERROR(ENOSYS);
 +
 +    /* Seek to the requested position. If this was a HTTP request, the offset
 +     * should already be where want it to, but this allows e.g. local testing
 +     * without a HTTP server. */
 +    if (ret == 0 && seg->key_type == KEY_NONE && seg->url_offset) {
-         int seekret = ffurl_seek(pls->input, seg->url_offset, SEEK_SET);
++        int seekret = avio_seek(pls->input, seg->url_offset, SEEK_SET);
 +        if (seekret < 0) {
 +            av_log(pls->parent, AV_LOG_ERROR, "Unable to seek to offset %"PRId64" of HLS segment '%s'\n", seg->url_offset, seg->url);
 +            ret = seekret;
-             ffurl_close(pls->input);
-             pls->input = NULL;
++            ff_format_io_close(pls->parent, &pls->input);
 +        }
 +    }
 +
 +cleanup:
 +    av_dict_free(&opts);
 +    pls->cur_seg_offset = 0;
 +    return ret;
 +}
 +
 +static int update_init_section(struct playlist *pls, struct segment *seg)
 +{
 +    static const int max_init_section_size = 1024*1024;
 +    HLSContext *c = pls->parent->priv_data;
 +    int64_t sec_size;
 +    int64_t urlsize;
 +    int ret;
 +
 +    if (seg->init_section == pls->cur_init_section)
 +        return 0;
 +
 +    pls->cur_init_section = NULL;
 +
 +    if (!seg->init_section)
 +        return 0;
 +
-     /* this will clobber playlist URLContext stuff, so this should be
-      * called between segments only */
 +    ret = open_input(c, pls, seg->init_section);
 +    if (ret < 0) {
 +        av_log(pls->parent, AV_LOG_WARNING,
 +               "Failed to open an initialization section in playlist %d\n",
 +               pls->index);
          return ret;
      }
 -    return AVERROR(ENOSYS);
 +
 +    if (seg->init_section->size >= 0)
 +        sec_size = seg->init_section->size;
-     else if ((urlsize = ffurl_size(pls->input)) >= 0)
++    else if ((urlsize = avio_size(pls->input)) >= 0)
 +        sec_size = urlsize;
 +    else
 +        sec_size = max_init_section_size;
 +
 +    av_log(pls->parent, AV_LOG_DEBUG,
 +           "Downloading an initialization section of size %"PRId64"\n",
 +           sec_size);
 +
 +    sec_size = FFMIN(sec_size, max_init_section_size);
 +
 +    av_fast_malloc(&pls->init_sec_buf, &pls->init_sec_buf_size, sec_size);
 +
 +    ret = read_from_url(pls, seg->init_section, pls->init_sec_buf,
 +                        pls->init_sec_buf_size, READ_COMPLETE);
-     ffurl_close(pls->input);
-     pls->input = NULL;
++    ff_format_io_close(pls->parent, &pls->input);
 +
 +    if (ret < 0)
 +        return ret;
 +
 +    pls->cur_init_section = seg->init_section;
 +    pls->init_sec_data_len = ret;
 +    pls->init_sec_buf_read_offset = 0;
 +
 +    /* spec says audio elementary streams do not have media initialization
 +     * sections, so there should be no ID3 timestamps */
 +    pls->is_id3_timestamped = 0;
 +
 +    return 0;
 +}
 +
 +static int64_t default_reload_interval(struct playlist *pls)
 +{
 +    return pls->n_segments > 0 ?
 +                          pls->segments[pls->n_segments - 1]->duration :
 +                          pls->target_duration;
  }
  
  static int read_data(void *opaque, uint8_t *buf, int buf_size)
@@@ -1303,190 -444,34 +1277,189 @@@ reload
              goto reload;
          }
  
 -        ret = open_input(v);
 -        if (ret < 0)
 +        seg = current_segment(v);
 +
 +        /* load/update Media Initialization Section, if any */
 +        ret = update_init_section(v, seg);
 +        if (ret)
              return ret;
 +
 +        ret = open_input(c, v, seg);
 +        if (ret < 0) {
 +            if (ff_check_interrupt(c->interrupt_callback))
 +                return AVERROR_EXIT;
 +            av_log(v->parent, AV_LOG_WARNING, "Failed to open segment of playlist %d\n",
 +                   v->index);
 +            v->cur_seq_no += 1;
 +            goto reload;
 +        }
 +        just_opened = 1;
      }
 -    ret = avio_read(v->input, buf, buf_size);
 -    if (ret > 0)
 +
 +    if (v->init_sec_buf_read_offset < v->init_sec_data_len) {
 +        /* Push init section out first before first actual segment */
 +        int copy_size = FFMIN(v->init_sec_data_len - v->init_sec_buf_read_offset, buf_size);
 +        memcpy(buf, v->init_sec_buf, copy_size);
 +        v->init_sec_buf_read_offset += copy_size;
 +        return copy_size;
 +    }
 +
 +    ret = read_from_url(v, current_segment(v), buf, buf_size, READ_NORMAL);
 +    if (ret > 0) {
 +        if (just_opened && v->is_id3_timestamped != 0) {
 +            /* Intercept ID3 tags here, elementary audio streams are required
 +             * to convey timestamps using them in the beginning of each segment. */
 +            intercept_id3(v, buf, buf_size, &ret);
 +        }
 +
          return ret;
 -    ff_format_io_close(c->ctx, &v->input);
 +    }
-     ffurl_close(v->input);
-     v->input = NULL;
++    ff_format_io_close(v->parent, &v->input);
      v->cur_seq_no++;
  
 -    c->end_of_segment = 1;
      c->cur_seq_no = v->cur_seq_no;
  
 -    if (v->ctx && v->ctx->nb_streams &&
 -        v->parent->nb_streams >= v->stream_offset + v->ctx->nb_streams) {
 -        v->needed = 0;
 -        for (i = v->stream_offset; i < v->stream_offset + v->ctx->nb_streams;
 -             i++) {
 -            if (v->parent->streams[i]->discard < AVDISCARD_ALL)
 -                v->needed = 1;
 +    goto restart;
 +}
 +
 +static int playlist_in_multiple_variants(HLSContext *c, struct playlist *pls)
 +{
 +    int variant_count = 0;
 +    int i, j;
 +
 +    for (i = 0; i < c->n_variants && variant_count < 2; i++) {
 +        struct variant *v = c->variants[i];
 +
 +        for (j = 0; j < v->n_playlists; j++) {
 +            if (v->playlists[j] == pls) {
 +                variant_count++;
 +                break;
 +            }
          }
      }
 -    if (!v->needed) {
 -        av_log(v->parent, AV_LOG_INFO, "No longer receiving variant %d\n",
 -               v->index);
 -        return AVERROR_EOF;
 +
 +    return variant_count >= 2;
 +}
 +
 +static void add_renditions_to_variant(HLSContext *c, struct variant *var,
 +                                      enum AVMediaType type, const char *group_id)
 +{
 +    int i;
 +
 +    for (i = 0; i < c->n_renditions; i++) {
 +        struct rendition *rend = c->renditions[i];
 +
 +        if (rend->type == type && !strcmp(rend->group_id, group_id)) {
 +
 +            if (rend->playlist)
 +                /* rendition is an external playlist
 +                 * => add the playlist to the variant */
 +                dynarray_add(&var->playlists, &var->n_playlists, rend->playlist);
 +            else
 +                /* rendition is part of the variant main Media Playlist
 +                 * => add the rendition to the main Media Playlist */
 +                dynarray_add(&var->playlists[0]->renditions,
 +                             &var->playlists[0]->n_renditions,
 +                             rend);
 +        }
      }
 -    goto restart;
 +}
 +
 +static void add_metadata_from_renditions(AVFormatContext *s, struct playlist *pls,
 +                                         enum AVMediaType type)
 +{
 +    int rend_idx = 0;
 +    int i;
 +
 +    for (i = 0; i < pls->ctx->nb_streams; i++) {
 +        AVStream *st = s->streams[pls->stream_offset + i];
 +
 +        if (st->codec->codec_type != type)
 +            continue;
 +
 +        for (; rend_idx < pls->n_renditions; rend_idx++) {
 +            struct rendition *rend = pls->renditions[rend_idx];
 +
 +            if (rend->type != type)
 +                continue;
 +
 +            if (rend->language[0])
 +                av_dict_set(&st->metadata, "language", rend->language, 0);
 +            if (rend->name[0])
 +                av_dict_set(&st->metadata, "comment", rend->name, 0);
 +
 +            st->disposition |= rend->disposition;
 +        }
 +        if (rend_idx >=pls->n_renditions)
 +            break;
 +    }
 +}
 +
 +/* if timestamp was in valid range: returns 1 and sets seq_no
 + * if not: returns 0 and sets seq_no to closest segment */
 +static int find_timestamp_in_playlist(HLSContext *c, struct playlist *pls,
 +                                      int64_t timestamp, int *seq_no)
 +{
 +    int i;
 +    int64_t pos = c->first_timestamp == AV_NOPTS_VALUE ?
 +                  0 : c->first_timestamp;
 +
 +    if (timestamp < pos) {
 +        *seq_no = pls->start_seq_no;
 +        return 0;
 +    }
 +
 +    for (i = 0; i < pls->n_segments; i++) {
 +        int64_t diff = pos + pls->segments[i]->duration - timestamp;
 +        if (diff > 0) {
 +            *seq_no = pls->start_seq_no + i;
 +            return 1;
 +        }
 +        pos += pls->segments[i]->duration;
 +    }
 +
 +    *seq_no = pls->start_seq_no + pls->n_segments - 1;
 +
 +    return 0;
 +}
 +
 +static int select_cur_seq_no(HLSContext *c, struct playlist *pls)
 +{
 +    int seq_no;
 +
 +    if (!pls->finished && !c->first_packet &&
 +        av_gettime_relative() - pls->last_load_time >= default_reload_interval(pls))
 +        /* reload the playlist since it was suspended */
 +        parse_playlist(c, pls->url, pls, NULL);
 +
 +    /* If playback is already in progress (we are just selecting a new
 +     * playlist) and this is a complete file, find the matching segment
 +     * by counting durations. */
 +    if (pls->finished && c->cur_timestamp != AV_NOPTS_VALUE) {
 +        find_timestamp_in_playlist(c, pls, c->cur_timestamp, &seq_no);
 +        return seq_no;
 +    }
 +
 +    if (!pls->finished) {
 +        if (!c->first_packet && /* we are doing a segment selection during playback */
 +            c->cur_seq_no >= pls->start_seq_no &&
 +            c->cur_seq_no < pls->start_seq_no + pls->n_segments)
 +            /* While spec 3.4.3 says that we cannot assume anything about the
 +             * content at the same sequence number on different playlists,
 +             * in practice this seems to work and doing it otherwise would
 +             * require us to download a segment to inspect its timestamps. */
 +            return c->cur_seq_no;
 +
 +        /* If this is a live stream, start live_start_index segments from the
 +         * start or end */
 +        if (c->live_start_index < 0)
 +            return pls->start_seq_no + FFMAX(pls->n_segments + c->live_start_index, 0);
 +        else
 +            return pls->start_seq_no + FFMIN(c->live_start_index, pls->n_segments - 1);
 +    }
 +
 +    /* Otherwise just start on the first segment. */
 +    return pls->start_seq_no;
  }
  
  static int save_avio_options(AVFormatContext *s)
  
  static int hls_read_header(AVFormatContext *s)
  {
-     URLContext *u = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb->opaque;
++    void *u = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb->opaque;
      HLSContext *c = s->priv_data;
      int ret = 0, i, j, stream_offset = 0;
  
      c->ctx                = s;
      c->interrupt_callback = &s->interrupt_callback;
-     // if the URL context is good, read important options we must broker later
-     if (u && u->prot->priv_data_class) {
 +    c->strict_std_compliance = s->strict_std_compliance;
 +
 +    c->first_packet = 1;
 +    c->first_timestamp = AV_NOPTS_VALUE;
 +    c->cur_timestamp = AV_NOPTS_VALUE;
 +
-         update_options(&c->user_agent, "user-agent", u->priv_data);
++    if (u) {
 +        // get the previous user agent & set back to null if string size is zero
-         update_options(&c->cookies, "cookies", u->priv_data);
++        update_options(&c->user_agent, "user-agent", u);
 +
 +        // get the previous cookies & set back to null if string size is zero
-         update_options(&c->headers, "headers", u->priv_data);
++        update_options(&c->cookies, "cookies", u);
 +
 +        // get the previous headers & set back to null if string size is zero
-         update_options(&c->http_proxy, "http_proxy", u->priv_data);
++        update_options(&c->headers, "headers", u);
 +
 +        // get the previous http proxt & set back to null if string size is zero
++        update_options(&c->http_proxy, "http_proxy", u);
 +    }
  
      if ((ret = parse_playlist(c, s->filename, NULL, s->pb)) < 0)
          goto fail;
@@@ -1727,31 -635,24 +1699,30 @@@ static int recheck_discard_flags(AVForm
  
      for (i = 0; i < s->nb_streams; i++) {
          AVStream *st = s->streams[i];
 -        struct variant *var = c->variants[s->streams[i]->id];
 +        struct playlist *pls = c->playlists[s->streams[i]->id];
          if (st->discard < AVDISCARD_ALL)
 -            var->cur_needed = 1;
 +            pls->cur_needed = 1;
      }
 -    for (i = 0; i < c->n_variants; i++) {
 -        struct variant *v = c->variants[i];
 -        if (v->cur_needed && !v->needed) {
 -            v->needed = 1;
 +    for (i = 0; i < c->n_playlists; i++) {
 +        struct playlist *pls = c->playlists[i];
 +        if (pls->cur_needed && !pls->needed) {
 +            pls->needed = 1;
              changed = 1;
 -            v->cur_seq_no = c->cur_seq_no;
 -            v->pb.eof_reached = 0;
 -            av_log(s, AV_LOG_INFO, "Now receiving variant %d\n", i);
 -        } else if (first && !v->cur_needed && v->needed) {
 -            if (v->input)
 -                ff_format_io_close(s, &v->input);
 -            v->needed = 0;
 +            pls->cur_seq_no = select_cur_seq_no(c, pls);
 +            pls->pb.eof_reached = 0;
 +            if (c->cur_timestamp != AV_NOPTS_VALUE) {
 +                /* catch up */
 +                pls->seek_timestamp = c->cur_timestamp;
 +                pls->seek_flags = AVSEEK_FLAG_ANY;
 +                pls->seek_stream_index = -1;
 +            }
 +            av_log(s, AV_LOG_INFO, "Now receiving playlist %d, segment %d\n", i, pls->cur_seq_no);
 +        } else if (first && !pls->cur_needed && pls->needed) {
 +            if (pls->input)
-                 ffurl_close(pls->input);
-             pls->input = NULL;
++                ff_format_io_close(pls->parent, &pls->input);
 +            pls->needed = 0;
              changed = 1;
 -            av_log(s, AV_LOG_INFO, "No longer receiving variant %d\n", i);
 +            av_log(s, AV_LOG_INFO, "No longer receiving playlist %d\n", i);
          }
      }
      return changed;
@@@ -1910,80 -770,56 +1881,78 @@@ static int hls_read_seek(AVFormatContex
                                 int64_t timestamp, int flags)
  {
      HLSContext *c = s->priv_data;
 -    int i, j, ret;
 +    struct playlist *seek_pls = NULL;
 +    int i, seq_no;
 +    int64_t first_timestamp, seek_timestamp, duration;
  
 -    if ((flags & AVSEEK_FLAG_BYTE) || !c->variants[0]->finished)
 +    if ((flags & AVSEEK_FLAG_BYTE) ||
 +        !(c->variants[0]->playlists[0]->finished || c->variants[0]->playlists[0]->type == PLS_TYPE_EVENT))
          return AVERROR(ENOSYS);
  
 -    c->seek_flags     = flags;
 -    c->seek_timestamp = stream_index < 0 ? timestamp :
 -                        av_rescale_rnd(timestamp, AV_TIME_BASE,
 -                                       s->streams[stream_index]->time_base.den,
 -                                       flags & AVSEEK_FLAG_BACKWARD ?
 -                                       AV_ROUND_DOWN : AV_ROUND_UP);
 -    timestamp = av_rescale_rnd(timestamp, AV_TIME_BASE, stream_index >= 0 ?
 -                               s->streams[stream_index]->time_base.den :
 -                               AV_TIME_BASE, flags & AVSEEK_FLAG_BACKWARD ?
 -                               AV_ROUND_DOWN : AV_ROUND_UP);
 -    if (s->duration < c->seek_timestamp) {
 -        c->seek_timestamp = AV_NOPTS_VALUE;
 +    first_timestamp = c->first_timestamp == AV_NOPTS_VALUE ?
 +                      0 : c->first_timestamp;
 +
 +    seek_timestamp = av_rescale_rnd(timestamp, AV_TIME_BASE,
 +                                    s->streams[stream_index]->time_base.den,
 +                                    flags & AVSEEK_FLAG_BACKWARD ?
 +                                    AV_ROUND_DOWN : AV_ROUND_UP);
 +
 +    duration = s->duration == AV_NOPTS_VALUE ?
 +               0 : s->duration;
 +
 +    if (0 < duration && duration < seek_timestamp - first_timestamp)
          return AVERROR(EIO);
 +
 +    /* find the playlist with the specified stream */
 +    for (i = 0; i < c->n_playlists; i++) {
 +        struct playlist *pls = c->playlists[i];
 +        if (stream_index >= pls->stream_offset &&
 +            stream_index - pls->stream_offset < pls->ctx->nb_streams) {
 +            seek_pls = pls;
 +            break;
 +        }
      }
 +    /* check if the timestamp is valid for the playlist with the
 +     * specified stream index */
 +    if (!seek_pls || !find_timestamp_in_playlist(c, seek_pls, seek_timestamp, &seq_no))
 +        return AVERROR(EIO);
  
 -    ret = AVERROR(EIO);
 -    for (i = 0; i < c->n_variants; i++) {
 +    /* set segment now so we do not need to search again below */
 +    seek_pls->cur_seq_no = seq_no;
 +    seek_pls->seek_stream_index = stream_index - seek_pls->stream_offset;
 +
 +    for (i = 0; i < c->n_playlists; i++) {
          /* Reset reading */
 -        struct variant *var = c->variants[i];
 -        int64_t pos = c->first_timestamp == AV_NOPTS_VALUE ?
 -                      0 : c->first_timestamp;
 -        if (var->input)
 -            ff_format_io_close(s, &var->input);
 -        av_packet_unref(&var->pkt);
 -        reset_packet(&var->pkt);
 -        var->pb.eof_reached = 0;
 +        struct playlist *pls = c->playlists[i];
-         if (pls->input) {
-             ffurl_close(pls->input);
-             pls->input = NULL;
-         }
++        if (pls->input)
++            ff_format_io_close(pls->parent, &pls->input);
 +        av_packet_unref(&pls->pkt);
 +        reset_packet(&pls->pkt);
 +        pls->pb.eof_reached = 0;
          /* Clear any buffered data */
 -        var->pb.buf_end = var->pb.buf_ptr = var->pb.buffer;
 +        pls->pb.buf_end = pls->pb.buf_ptr = pls->pb.buffer;
          /* Reset the pos, to let the mpegts demuxer know we've seeked. */
 -        var->pb.pos = 0;
 -
 -        /* Locate the segment that contains the target timestamp */
 -        for (j = 0; j < var->n_segments; j++) {
 -            if (timestamp >= pos &&
 -                timestamp < pos + var->segments[j]->duration) {
 -                var->cur_seq_no = var->start_seq_no + j;
 -                ret = 0;
 -                break;
 -            }
 -            pos += var->segments[j]->duration;
 +        pls->pb.pos = 0;
 +        /* Flush the packet queue of the subdemuxer. */
 +        ff_read_frame_flush(pls->ctx);
 +
 +        pls->seek_timestamp = seek_timestamp;
 +        pls->seek_flags = flags;
 +
 +        if (pls != seek_pls) {
 +            /* set closest segment seq_no for playlists not handled above */
 +            find_timestamp_in_playlist(c, pls, seek_timestamp, &pls->cur_seq_no);
 +            /* seek the playlist to the given position without taking
 +             * keyframes into account since this playlist does not have the
 +             * specified stream where we should look for the keyframes */
 +            pls->seek_stream_index = -1;
 +            pls->seek_flags |= AVSEEK_FLAG_ANY;
          }
 -        if (ret)
 -            c->seek_timestamp = AV_NOPTS_VALUE;
      }
 -    return ret;
 +
 +    c->cur_timestamp = seek_timestamp;
 +
 +    return 0;
  }
  
  static int hls_probe(AVProbeData *p)