From bd2f8e8f79e91e8dc1559078c0e1149e2e6bcc36 Mon Sep 17 00:00:00 2001 From: Duncan Salerno <duncan.salerno@gmail.com> Date: Tue, 9 Oct 2012 19:08:53 +0100 Subject: [PATCH] Fix second use of AVOptions in HLS Signed-off-by: Michael Niedermayer <michaelni@gmx.at> --- libavformat/hls.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/hls.c b/libavformat/hls.c index 1f5309b642d..6675a1a4a34 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -368,6 +368,9 @@ static int open_input(struct variant *var) goto cleanup; av_opt_set(var->input->priv_data, "key", key, 0); av_opt_set(var->input->priv_data, "iv", iv, 0); + /* Need to repopulate options */ + av_dict_free(&opts); + av_dict_set(&opts, "seekable", "0", 0); if ((ret = ffurl_connect(var->input, &opts)) < 0) { ffurl_close(var->input); var->input = NULL; -- GitLab