summaryrefslogtreecommitdiff
path: root/libavcodec/alsdec.c
diff options
context:
space:
mode:
authorThilo Borgmann <thilo.borgmann@googlemail.com>2012-03-11 16:54:39 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-03-11 16:55:42 +0100
commitdaeffccd98e97a4ec69026f9ef2d65000596a996 (patch)
treec44e58dcdd4598a40874debe31cda850818782b9 /libavcodec/alsdec.c
parentad029c24a69add848f8d385d297b180bc1146107 (diff)
alsdec: pretty print for another log 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 1c6e25932d..0a2768a5b9 100644
--- a/libavcodec/alsdec.c
+++ b/libavcodec/alsdec.c
@@ -696,7 +696,7 @@ static int read_var_block_data(ALSDecContext *ctx, ALSBlockData *bd)
int offset = parcor_rice_table[sconf->coef_table][k][0];
quant_cof[k] = decode_rice(gb, rice_param) + offset;
if (quant_cof[k] < -64 || quant_cof[k] > 63) {
- av_log(avctx, AV_LOG_ERROR, "quant_cof %d is out of range\n", quant_cof[k]);
+ av_log(avctx, AV_LOG_ERROR, "Quantization coefficient %d is out of range.\n", quant_cof[k]);
return AVERROR_INVALIDDATA;
}
}