diff options
author | Martin Storsjö <martin@martin.st> | 2015-02-28 02:00:50 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2016-03-24 10:34:19 +0200 |
commit | fab8156b2f30666adabe227b3d7712fd193873b1 (patch) | |
tree | 025734e80fdf8862c1769bb039d1d895e1bf82c8 /libavformat/rtmpcrypt.c | |
parent | 564b4591bbe223bdc5f36a1131eaef103f23f5d0 (diff) | |
download | ffmpeg-fab8156b2f30666adabe227b3d7712fd193873b1.tar.gz |
avio: Copy URLContext generic options into child URLContexts
Since all URLContexts have the same AVOptions, such AVOptions
will be applied on the outermost context only and removed from the
dict, while they probably make sense on all contexts.
This makes sure that rw_timeout gets propagated to the innermost
URLContext (to make sure it gets passed to the tcp protocol, when
opening a http connection for instance).
Alternatively, such matching options would be kept in the dict
and only removed after the ffurl_connect call.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtmpcrypt.c')
-rw-r--r-- | libavformat/rtmpcrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtmpcrypt.c b/libavformat/rtmpcrypt.c index 75fc1283c5..cf121c635a 100644 --- a/libavformat/rtmpcrypt.c +++ b/libavformat/rtmpcrypt.c @@ -265,7 +265,7 @@ static int rtmpe_open(URLContext *h, const char *uri, int flags) /* open the tcp or ffrtmphttp connection */ if ((ret = ffurl_open(&rt->stream, url, AVIO_FLAG_READ_WRITE, - &h->interrupt_callback, NULL, h->protocols)) < 0) { + &h->interrupt_callback, NULL, h->protocols, h)) < 0) { rtmpe_close(h); return ret; } |