From 04dc7e7e5e73a1cc01cb2333f24449e400ac9dd7 Mon Sep 17 00:00:00 2001 From: Thilo Borgmann Date: Mon, 26 Mar 2012 15:25:27 +0200 Subject: [PATCH] ALS error message pretty print One prettier message. Signed-off-by: Michael Niedermayer --- libavcodec/alsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.11.0