summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--demux/demux.c4
-rw-r--r--stream/stream.c3
2 files changed, 4 insertions, 3 deletions
diff --git a/demux/demux.c b/demux/demux.c
index 4d70938938..4563a034a2 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -1183,7 +1183,7 @@ static void adjust_seek_range_on_packet(struct demux_stream *ds,
void demux_add_packet(struct sh_stream *stream, demux_packet_t *dp)
{
struct demux_stream *ds = stream ? stream->ds : NULL;
- if (!dp || !dp->len || !ds) {
+ if (!dp || !dp->len || !ds || demux_cancel_test(ds->in->d_thread)) {
talloc_free(dp);
return;
}
@@ -1306,7 +1306,7 @@ static bool read_packet(struct demux_internal *in)
in->eof = false;
in->idle = true;
- if (!in->reading || in->blocked)
+ if (!in->reading || in->blocked || demux_cancel_test(in->d_thread))
return false;
// Check if we need to read a new packet. We do this if all queues are below
diff --git a/stream/stream.c b/stream/stream.c
index 255e583de2..4f63236d6a 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -302,7 +302,8 @@ struct stream *stream_create(const char *url, int flags,
continue;
}
if (r != STREAM_OK) {
- mp_err(log, "Failed to open %s.\n", url);
+ if (!mp_cancel_test(c))
+ mp_err(log, "Failed to open %s.\n", url);
goto done;
}
}