mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-12-04 01:01:30 +00:00
hls: Set stream offset before opening a chained demuxer
This makes sure we don't accidentally check discard flags for the wrong stream. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
cdd2d73d31
commit
c11e33a3d9
@ -523,10 +523,10 @@ static int hls_read_header(AVFormatContext *s)
|
||||
goto fail;
|
||||
}
|
||||
v->ctx->pb = &v->pb;
|
||||
v->stream_offset = stream_offset;
|
||||
ret = avformat_open_input(&v->ctx, v->segments[0]->url, in_fmt, NULL);
|
||||
if (ret < 0)
|
||||
goto fail;
|
||||
v->stream_offset = stream_offset;
|
||||
snprintf(bitrate_str, sizeof(bitrate_str), "%d", v->bandwidth);
|
||||
/* Create new AVStreams for each stream in this variant */
|
||||
for (j = 0; j < v->ctx->nb_streams; j++) {
|
||||
|
Loading…
Reference in New Issue
Block a user