summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-31 22:07:36 +0200
committerwm4 <wm4@nowhere>2014-05-31 22:07:36 +0200
commit498c997474fcb68d1f2a0c3d6ee656889b8ae1cb (patch)
tree1584857ab8d6c4d41fcfae984e2a3102f1075e3f /demux
parent5567aa131b3b55867c374074c6bc3f0e7f7b3647 (diff)
downloadmpv-498c997474fcb68d1f2a0c3d6ee656889b8ae1cb.tar.bz2
mpv-498c997474fcb68d1f2a0c3d6ee656889b8ae1cb.tar.xz
player: hide audio/video codec and file format messages
None of these are very important usually. For error analysis, the plain log is useless anyway, and this information is still printed with "-v".
Diffstat (limited to 'demux')
-rw-r--r--demux/demux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/demux/demux.c b/demux/demux.c
index ba231b5af6..f4baa5a5fa 100644
--- a/demux/demux.c
+++ b/demux/demux.c
@@ -607,10 +607,10 @@ static struct demuxer *open_given_type(struct mpv_global *global,
if (ret >= 0) {
demuxer->params = NULL;
if (demuxer->filetype)
- mp_info(log, "Detected file format: %s (%s)\n",
- demuxer->filetype, desc->desc);
+ mp_verbose(log, "Detected file format: %s (%s)\n",
+ demuxer->filetype, desc->desc);
else
- mp_info(log, "Detected file format: %s\n", desc->desc);
+ mp_verbose(log, "Detected file format: %s\n", desc->desc);
if (stream_manages_timeline(demuxer->stream)) {
// Incorrect, but fixes some behavior with DVD/BD
demuxer->ts_resets_possible = false;