Commit cc913f74 authored by Michael Niedermayer's avatar Michael Niedermayer

hls: check that the streams have been initialized before checking their discard flags.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ffda8f0f
...@@ -427,7 +427,7 @@ reload: ...@@ -427,7 +427,7 @@ reload:
c->end_of_segment = 1; c->end_of_segment = 1;
c->cur_seq_no = v->cur_seq_no; c->cur_seq_no = v->cur_seq_no;
if (v->ctx && v->ctx->nb_streams) { if (v->ctx && v->ctx->nb_streams && v->parent->nb_streams >= v->stream_offset + v->ctx->nb_streams) {
v->needed = 0; v->needed = 0;
for (i = v->stream_offset; i < v->stream_offset + v->ctx->nb_streams; for (i = v->stream_offset; i < v->stream_offset + v->ctx->nb_streams;
i++) { i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment