Commit 5305f40b authored by Justin Ruggles's avatar Justin Ruggles

flacdec: change several AV_LOG_DEBUG to AV_LOG_ERROR

Originally committed as revision 16752 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9f2db545
...@@ -225,7 +225,7 @@ static int decode_residuals(FLACContext *s, int channel, int pred_order) ...@@ -225,7 +225,7 @@ static int decode_residuals(FLACContext *s, int channel, int pred_order)
method_type = get_bits(&s->gb, 2); method_type = get_bits(&s->gb, 2);
if (method_type > 1){ 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; return -1;
} }
...@@ -328,12 +328,12 @@ static int decode_subframe_lpc(FLACContext *s, int channel, int pred_order) ...@@ -328,12 +328,12 @@ static int decode_subframe_lpc(FLACContext *s, int channel, int pred_order)
coeff_prec = get_bits(&s->gb, 4) + 1; coeff_prec = get_bits(&s->gb, 4) + 1;
if (coeff_prec == 16) 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; return -1;
} }
qlevel = get_sbits(&s->gb, 5); qlevel = get_sbits(&s->gb, 5);
if(qlevel < 0){ 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; 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