]> git.sesse.net Git - ffmpeg/commitdiff
Merge commit '0c73a5a53cc97f4291bbe9e1e68226edf6161744'
authorMichael Niedermayer <michael@niedermayer.cc>
Thu, 30 Jul 2015 15:42:19 +0000 (17:42 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Thu, 30 Jul 2015 15:52:23 +0000 (17:52 +0200)
* commit '0c73a5a53cc97f4291bbe9e1e68226edf6161744':
  hls: Save and forward avio options

Conflicts:
libavformat/hls.c

Merged-by: Michael Niedermayer <michael@niedermayer.cc>
1  2 
libavformat/hls.c

index 05e08a953ddadba6ea9937e7de29398bba86588d,467a4913a53c8168d688906ea86d372b76d6d109..4691a605021360bbb2bcf9a1ce1a05928d060f4d
@@@ -165,23 -94,16 +165,24 @@@ struct variant 
  };
  
  typedef struct HLSContext {
 +    AVClass *class;
      int n_variants;
      struct variant **variants;
 +    int n_playlists;
 +    struct playlist **playlists;
 +    int n_renditions;
 +    struct rendition **renditions;
 +
      int cur_seq_no;
 -    int end_of_segment;
 +    int live_start_index;
      int first_packet;
      int64_t first_timestamp;
 -    int64_t seek_timestamp;
 -    int seek_flags;
 +    int64_t cur_timestamp;
      AVIOInterruptCB *interrupt_callback;
 +    char *user_agent;                    ///< holds HTTP user agent set as an AVOption to the HTTP protocol context
 +    char *cookies;                       ///< holds HTTP cookie values set in either the initial response or as an AVOption to the HTTP protocol context
 +    char *headers;                       ///< holds HTTP headers set as an AVOption to the HTTP protocol context
+     AVDictionary *avio_opts;
  } HLSContext;
  
  static int read_chomp_line(AVIOContext *s, char *buf, int maxlen)
@@@ -351,183 -200,70 +352,237 @@@ static void handle_key_args(struct key_
      }
  }
  
 -static int url_connect(struct variant *var, AVDictionary *opts)
 +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 (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) */
 +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;
 +}
 +
 +/* pls = NULL  => Master Playlist or parentless Media Playlist
 + * pls = !NULL => parented Media Playlist, playlist+variant allocated */
+ 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;
+ }
 -    av_opt_set_dict(var->input, &tmp);
++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 ((ret = ffurl_connect(var->input, NULL)) < 0) {
 -        ffurl_close(var->input);
 -        var->input = NULL;
++    av_opt_set_dict(pls->input, &tmp);
 -static int open_url(HLSContext *c, URLContext **uc, const char *url)
++    if ((ret = ffurl_connect(pls->input, NULL)) < 0) {
++        ffurl_close(pls->input);
++        pls->input = NULL;
+     }
+     av_dict_free(&tmp);
+     return ret;
+ }
++static int open_url(HLSContext *c, URLContext **uc, const char *url, AVDictionary *opts)
+ {
+     AVDictionary *tmp = NULL;
+     int ret;
+     av_dict_copy(&tmp, c->avio_opts, 0);
++    av_dict_copy(&tmp, opts, 0);
+     ret = ffurl_open(uc, url, AVIO_FLAG_READ, c->interrupt_callback, &tmp);
+     av_dict_free(&tmp);
+     return ret;
+ }
  static int parse_playlist(HLSContext *c, const char *url,
 -                          struct variant *var, AVIOContext *in)
 +                          struct playlist *pls, AVIOContext *in)
  {
 -    int ret = 0, is_segment = 0, is_variant = 0, bandwidth = 0;
 +    int ret = 0, is_segment = 0, is_variant = 0;
      int64_t duration = 0;
      enum KeyType key_type = KEY_NONE;
      uint8_t iv[16] = "";
      int has_iv = 0;
      char key[MAX_URL_SIZE] = "";
 -    char line[1024];
 +    char line[MAX_URL_SIZE];
      const char *ptr;
      int close_in = 0;
 +    int64_t seg_offset = 0;
 +    int64_t seg_size = -1;
      uint8_t *new_url = NULL;
 +    struct variant_info variant_info;
 +    char tmp_str[MAX_URL_SIZE];
  
      if (!in) {
++#if 1
 +        AVDictionary *opts = NULL;
 +        close_in = 1;
 +        /* Some HLS servers don't like being sent the range header */
 +        av_dict_set(&opts, "seekable", "0", 0);
 +
 +        // 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);
 +
 +        ret = avio_open2(&in, url, AVIO_FLAG_READ,
 +                         c->interrupt_callback, &opts);
 +        av_dict_free(&opts);
 +        if (ret < 0)
 +            return ret;
++#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)
@@@ -680,277 -375,20 +735,275 @@@ fail
      return ret;
  }
  
 -static int open_input(struct variant *var)
 +enum ReadFromURLMode {
 +    READ_NORMAL,
 +    READ_COMPLETE,
 +};
 +
 +/* read from URLContext, limiting read to current segment */
 +static int read_from_url(struct playlist *pls, uint8_t *buf, int buf_size,
 +                         enum ReadFromURLMode mode)
 +{
 +    int ret;
 +    struct segment *seg = pls->segments[pls->cur_seq_no - pls->start_seq_no];
 +
 +     /* 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 (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)
  {
 -    struct segment *seg = var->segments[var->cur_seq_no - var->start_seq_no];
 +    /* 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;
 +
 +    /* 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, 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)) {
 +            struct segment *seg = pls->segments[pls->cur_seq_no - pls->start_seq_no];
 +            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, 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, 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 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_input(HLSContext *c, struct playlist *pls)
 +{
 +    AVDictionary *opts = NULL;
 +    AVDictionary *opts2 = NULL;
 +    int ret;
 +    struct segment *seg = pls->segments[pls->cur_seq_no - pls->start_seq_no];
 +
 +    // 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, "seekable", "0", 0);
 +
 +    // Same opts for key request (ffurl_open mutilates the opts so it cannot be used twice)
 +    av_dict_copy(&opts2, opts, 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 = ffurl_open(&pls->input, seg->url, AVIO_FLAG_READ,
-                           &pls->parent->interrupt_callback, &opts);
 -        return  open_url(var->parent->priv_data, &var->input, seg->url);
++        ret = open_url(pls->parent->priv_data, &pls->input, seg->url, opts);
      } else if (seg->key_type == KEY_AES_128) {
 -        HLSContext *c = var->parent->priv_data;
++//         HLSContext *c = var->parent->priv_data;
          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 (ffurl_open(&uc, seg->key, AVIO_FLAG_READ,
-                            &pls->parent->interrupt_callback, &opts2) == 0) {
 -            if (open_url(var->parent->priv_data, &uc, seg->key) == 0) {
 -                if (ffurl_read_complete(uc, var->key, sizeof(var->key))
 -                    != sizeof(var->key)) {
++            if (open_url(pls->parent->priv_data, &uc, seg->key, opts2) == 0) {
 +                if (ffurl_read_complete(uc, pls->key, sizeof(pls->key))
 +                    != sizeof(pls->key)) {
                      av_log(NULL, AV_LOG_ERROR, "Unable to read key file %s\n",
                             seg->key);
                  }
              snprintf(url, sizeof(url), "crypto+%s", seg->url);
          else
              snprintf(url, sizeof(url), "crypto:%s", seg->url);
 -        if ((ret = ffurl_alloc(&var->input, url, AVIO_FLAG_READ,
 -                               &var->parent->interrupt_callback)) < 0)
 -            return ret;
 -        av_opt_set(var->input->priv_data, "key", key, 0);
 -        av_opt_set(var->input->priv_data, "iv", iv, 0);
 -        return url_connect(var, c->avio_opts);
 +        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);
 +
-         if ((ret = ffurl_connect(pls->input, &opts)) < 0) {
-             ffurl_close(pls->input);
-             pls->input = NULL;
++        if ((ret = url_connect(pls, c->avio_opts, opts)) < 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) {
 +        int seekret = ffurl_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;
 +        }
      }
 -    return AVERROR(ENOSYS);
 +
 +cleanup:
 +    av_dict_free(&opts);
 +    av_dict_free(&opts2);
 +    pls->cur_seg_offset = 0;
 +    return ret;
 +}
 +
 +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)
@@@ -1109,154 -470,48 +1161,174 @@@ reload
      v->input = NULL;
      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;
  }
  
 -    const char *opts[] = { "headers", "user_agent", NULL }, **opt = opts;
+ static int save_avio_options(AVFormatContext *s)
+ {
+     HLSContext *c = s->priv_data;
++    const char *opts[] = { "headers", "user_agent", "user-agent", "cookies", NULL }, **opt = opts;
+     uint8_t *buf;
+     int ret = 0;
+     while (*opt) {
+         if (av_opt_get(s->pb, *opt, AV_OPT_SEARCH_CHILDREN, &buf) >= 0) {
+             ret = av_dict_set(&c->avio_opts, *opt, buf,
+                               AV_DICT_DONT_STRDUP_VAL);
+             if (ret < 0)
+                 return ret;
+         }
+         opt++;
+     }
+     return ret;
+ }
  static int hls_read_header(AVFormatContext *s)
  {
 +    URLContext *u = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb->opaque;
      HLSContext *c = s->priv_data;
      int ret = 0, i, j, stream_offset = 0;
  
      if ((ret = parse_playlist(c, s->filename, NULL, s->pb)) < 0)
          goto fail;
  
+     if ((ret = save_avio_options(s)) < 0)
+         goto fail;
++    /* Some HLS servers don't like being sent the range header */
++    av_dict_set(&c->avio_opts, "seekable", "0", 0);
++
      if (c->n_variants == 0) {
          av_log(NULL, AV_LOG_WARNING, "Empty playlist\n");
          ret = AVERROR_EOF;
@@@ -1628,9 -775,10 +1706,12 @@@ static int hls_close(AVFormatContext *s
  {
      HLSContext *c = s->priv_data;
  
 +    free_playlist_list(c);
      free_variant_list(c);
 +    free_rendition_list(c);
+     av_dict_free(&c->avio_opts);
      return 0;
  }