Commit b205635f authored by Colin NG's avatar Colin NG Committed by Steven Liu

avformat/dashdec: Add a re-entrance check point after an interrupt operation

parent 3cff2311
...@@ -1777,6 +1777,12 @@ static int reopen_demux_for_component(AVFormatContext *s, struct representation ...@@ -1777,6 +1777,12 @@ static int reopen_demux_for_component(AVFormatContext *s, struct representation
if (pls->ctx) { if (pls->ctx) {
close_demux_for_component(pls); close_demux_for_component(pls);
} }
if (ff_check_interrupt(&s->interrupt_callback)) {
ret = AVERROR_EXIT;
goto fail;
}
if (!(pls->ctx = avformat_alloc_context())) { if (!(pls->ctx = avformat_alloc_context())) {
ret = AVERROR(ENOMEM); ret = AVERROR(ENOMEM);
goto fail; goto fail;
......
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