Mercurial > libavcodec.hg
changeset 8652:1a88ffbd3233 libavcodec
flacdec: change several AV_LOG_DEBUG to AV_LOG_ERROR
author | jbr |
---|---|
date | Sat, 24 Jan 2009 16:03:17 +0000 |
parents | 7b19ec801069 |
children | cc6f01be6614 |
files | flacdec.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/flacdec.c Sat Jan 24 16:02:30 2009 +0000 +++ b/flacdec.c Sat Jan 24 16:03:17 2009 +0000 @@ -225,7 +225,7 @@ method_type = get_bits(&s->gb, 2); if (method_type > 1){ - av_log(s->avctx, AV_LOG_DEBUG, "illegal residual coding method %d\n", method_type); + av_log(s->avctx, AV_LOG_ERROR, "illegal residual coding method %d\n", method_type); return -1; } @@ -328,12 +328,12 @@ coeff_prec = get_bits(&s->gb, 4) + 1; if (coeff_prec == 16) { - av_log(s->avctx, AV_LOG_DEBUG, "invalid coeff precision\n"); + av_log(s->avctx, AV_LOG_ERROR, "invalid coeff precision\n"); return -1; } qlevel = get_sbits(&s->gb, 5); if(qlevel < 0){ - av_log(s->avctx, AV_LOG_DEBUG, "qlevel %d not supported, maybe buggy stream\n", qlevel); + av_log(s->avctx, AV_LOG_ERROR, "qlevel %d not supported, maybe buggy stream\n", qlevel); return -1; }