summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-05 23:55:48 +0100
committerwm4 <wm4@nowhere>2014-12-05 23:58:04 +0100
commit7df2632f713bcee53cf7c0d09bea26595100cc37 (patch)
tree5c4ee986040c025644cbad2533d7425ed89b85e1 /demux
parent09c701b797c44293dc0e22874b4acf0246b3d148 (diff)
downloadmpv-7df2632f713bcee53cf7c0d09bea26595100cc37.tar.bz2
mpv-7df2632f713bcee53cf7c0d09bea26595100cc37.tar.xz
demux: silence unseekable message
This message was added in commit a0acb6ea. But it showed up in all sorts of inappropriate contexts, such as when opening m3u from an unseekable http URL, or playing DVDs. So I guess this didn't work out. Disabling it again.
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);