summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/avio_internal.h5
-rw-r--r--libavformat/aviobuf.c4
-rw-r--r--libavformat/hls.c8
3 files changed, 7 insertions, 10 deletions
diff --git a/libavformat/avio_internal.h b/libavformat/avio_internal.h
index ba9bd4e2a4..3867be6e97 100644
--- a/libavformat/avio_internal.h
+++ b/libavformat/avio_internal.h
@@ -24,11 +24,6 @@
#include "libavutil/log.h"
-typedef struct AVIOInternal {
- URLContext *h;
- void *hlsopts;
-} AVIOInternal;
-
extern const AVClass ff_avio_class;
int ffio_init_context(AVIOContext *s,
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index 00f7c5a180..f2f03f639f 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -42,6 +42,10 @@
*/
#define SHORT_SEEK_THRESHOLD 4096
+typedef struct AVIOInternal {
+ URLContext *h;
+} AVIOInternal;
+
static void *ff_avio_child_next(void *obj, void *prev)
{
AVIOContext *s = obj;
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 61ab5c8435..714d1e0e9a 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -584,7 +584,7 @@ static int ensure_playlist(HLSContext *c, struct playlist **pls, const char *url
static void update_options(char **dest, const char *name, void *src)
{
av_freep(dest);
- av_opt_get(src, name, 0, (uint8_t**)dest);
+ av_opt_get(src, name, AV_OPT_SEARCH_CHILDREN, (uint8_t**)dest);
if (*dest && !strlen(*dest))
av_freep(dest);
}
@@ -614,8 +614,7 @@ static int open_url(AVFormatContext *s, AVIOContext **pb, const char *url,
ret = s->io_open(s, pb, url, AVIO_FLAG_READ, &tmp);
if (ret >= 0) {
// update cookies on http response with setcookies.
- AVIOInternal *internal = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb->opaque;
- void *u = internal ? internal->hlsopts : NULL;
+ void *u = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb;
update_options(&c->cookies, "cookies", u);
av_dict_set(&opts, "cookies", c->cookies, 0);
}
@@ -1497,8 +1496,7 @@ static int nested_io_open(AVFormatContext *s, AVIOContext **pb, const char *url,
static int hls_read_header(AVFormatContext *s)
{
- AVIOInternal *internal = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb->opaque;
- void *u = internal ? internal->hlsopts : NULL;
+ void *u = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb;
HLSContext *c = s->priv_data;
int ret = 0, i, j, stream_offset = 0;