summaryrefslogtreecommitdiffstats
path: root/demux
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-21 21:41:18 +0100
committerwm4 <wm4@nowhere>2013-12-21 22:13:04 +0100
commiteba5d025d2ba682de358b792dd15e80529d6a0f1 (patch)
treeb4617680bce71ff4a44f113e967b3b5bbc651520 /demux
parent3fa584e2800fff5850e67a4018597cb707d9cc0b (diff)
downloadmpv-eba5d025d2ba682de358b792dd15e80529d6a0f1.tar.bz2
mpv-eba5d025d2ba682de358b792dd15e80529d6a0f1.tar.xz
msg: convert defines to enum
Also get rid of MSGL_HINT and the many MSGL_DBG* levels.
Diffstat (limited to 'demux')
-rw-r--r--demux/ebml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/ebml.c b/demux/ebml.c
index 6565b9c3a9..fbc9998602 100644
--- a/demux/ebml.c
+++ b/demux/ebml.c
@@ -698,7 +698,7 @@ int ebml_read_element(struct stream *s, struct ebml_parse_ctx *ctx,
void *target, const struct ebml_elem_desc *desc)
{
ctx->has_errors = false;
- int msglevel = ctx->no_error_messages ? MSGL_DBG2 : MSGL_WARN;
+ int msglevel = ctx->no_error_messages ? MSGL_DEBUG : MSGL_WARN;
uint64_t length = ebml_read_length(s, &ctx->bytes_read);
if (s->eof) {
MP_MSG(ctx, msglevel, "Unexpected end of file "