Commit 946c697d authored by jbr's avatar jbr

flacdec: change several AV_LOG_DEBUG to AV_LOG_ERROR

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16752 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b4f4f5f5
......@@ -225,7 +225,7 @@ static int decode_residuals(FLACContext *s, int channel, int pred_order)
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 @@ static int decode_subframe_lpc(FLACContext *s, int channel, int pred_order)
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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment