[FFmpeg-devel] [PATCH] avformat/hls: copy rw_timeout from parent to child AVIOContexts.

Steven Liu lq at chinaffmpeg.org
Tue Apr 3 06:31:40 EEST 2018



> On 3 Apr 2018, at 09:12, rshaffer at tunein.com wrote:
> 
> From: Richard Shaffer <rshaffer at tunein.com>
> 
> The rw_timeout option is currently not applied when opening media playlist,
> segment, or encryption key URLs. This can cause the HLS demuxer to block
> indefinitely, even when the rw_timeout option has been specified. This change
> simply enables carrying over the rw_timeout option when the demuxer opens these
> URLs.
> ---
> libavformat/hls.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavformat/hls.c b/libavformat/hls.c
> index c578bf86e3..6663244ddf 100644
> --- a/libavformat/hls.c
> +++ b/libavformat/hls.c
> @@ -1661,7 +1661,7 @@ static int save_avio_options(AVFormatContext *s)
> {
>     HLSContext *c = s->priv_data;
>     static const char * const opts[] = {
> -        "headers", "http_proxy", "user_agent", "user-agent", "cookies", "referer", NULL };
> +        "headers", "http_proxy", "user_agent", "user-agent", "cookies", "referer", "rw_timeout", NULL };
This table is used for http header.
You could add the option into hls_options.
>     const char * const * opt = opts;
>     uint8_t *buf;
>     int ret = 0;
> -- 
> 2.15.1 (Apple Git-101)
> 
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Thanks
Steven







More information about the ffmpeg-devel mailing list