You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avformat/hlsenc: Fix filename and options
Regression since bc9a5965c8
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -542,7 +542,7 @@ static int hls_start(AVFormatContext *s)
|
||||
err = AVERROR(ENOMEM);
|
||||
goto fail;
|
||||
}
|
||||
err = s->io_open(s, &oc->pb, oc->filename, AVIO_FLAG_WRITE, NULL);
|
||||
err = s->io_open(s, &oc->pb, filename, AVIO_FLAG_WRITE, &options);
|
||||
av_free(filename);
|
||||
av_dict_free(&options);
|
||||
if (err < 0)
|
||||
|
Reference in New Issue
Block a user