From 7df2632f713bcee53cf7c0d09bea26595100cc37 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 5 Dec 2014 23:55:48 +0100 Subject: 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. --- demux/demux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'demux') 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); -- cgit v1.2.3