mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
avformat/hls: Pass a copy of the URL for probing
The segments / url can be modified by the io read when reloading
This may be an alternative or additional fix for Ticket8673
as a further alternative the reload stuff could be disabled during
probing
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit b5e39880fb
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6959358683
commit
0f6fa27b24
@ -1606,6 +1606,7 @@ static int hls_read_header(AVFormatContext *s)
|
||||
for (i = 0; i < c->n_playlists; i++) {
|
||||
struct playlist *pls = c->playlists[i];
|
||||
AVInputFormat *in_fmt = NULL;
|
||||
char *url;
|
||||
|
||||
if (!(pls->ctx = avformat_alloc_context())) {
|
||||
ret = AVERROR(ENOMEM);
|
||||
@ -1630,8 +1631,9 @@ static int hls_read_header(AVFormatContext *s)
|
||||
ffio_init_context(&pls->pb, pls->read_buffer, INITIAL_BUFFER_SIZE, 0, pls,
|
||||
read_data, NULL, NULL);
|
||||
pls->pb.seekable = 0;
|
||||
ret = av_probe_input_buffer(&pls->pb, &in_fmt, pls->segments[0]->url,
|
||||
NULL, 0, 0);
|
||||
url = av_strdup(pls->segments[0]->url);
|
||||
ret = av_probe_input_buffer(&pls->pb, &in_fmt, url, NULL, 0, 0);
|
||||
av_free(url);
|
||||
if (ret < 0) {
|
||||
/* Free the ctx - it isn't initialized properly at this point,
|
||||
* so avformat_close_input shouldn't be called. If
|
||||
|
Loading…
Reference in New Issue
Block a user