summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
Diffstat (limited to 'demux')
-rw-r--r--demux/demux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demux/demux.c b/demux/demux.c
index 55242caec6..4f185a517e 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -877,10 +877,10 @@ static struct demuxer *open_given_type(struct mpv_global *global,
else
mp_verbose(log, "Detected file format: %s\n", desc->desc);
if (!in->d_thread->seekable)
- mp_warn(log, "Stream is not seekable.\n");
+ mp_verbose(log, "Stream is not seekable.\n");
// Pretend we can seek if we can't seek, but there's a cache.
if (!in->d_thread->seekable && stream->uncached_stream) {
- mp_warn(log, "Enabling seeking because stream cache is active.\n");
+ mp_verbose(log, "Enabling seeking because stream cache is active.\n");
in->d_thread->seekable = true;
}
demux_init_cache(demuxer);