summaryrefslogtreecommitdiff
path: root/libavcodec/alsdec.c
diff options
context:
space:
mode:
authorThilo Borgmann <thilo.borgmann@googlemail.com>2012-03-26 15:25:27 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-03-26 16:16:57 +0200
commit04dc7e7e5e73a1cc01cb2333f24449e400ac9dd7 (patch)
tree2ace948933071d2bf7d43987d5f54687f0af44ca /libavcodec/alsdec.c
parentcece491daa9f4c7c908e016f4e285a49d37cb17c (diff)
ALS error message pretty print
One prettier message. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/alsdec.c')
-rw-r--r--libavcodec/alsdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c
index a9b04b8569..5a166d5594 100644
--- a/libavcodec/alsdec.c
+++ b/libavcodec/alsdec.c
@@ -664,7 +664,7 @@ static int read_var_block_data(ALSDecContext *ctx, ALSBlockData *bd)
2, sconf->max_order + 1));
*bd->opt_order = get_bits(gb, opt_order_length);
if (*bd->opt_order > sconf->max_order) {
- av_log(avctx, AV_LOG_ERROR, "Order too large\n");
+ av_log(avctx, AV_LOG_ERROR, "Predictor order too large!\n");
return -1;
}
} else {