diff options
author | Thilo Borgmann <thilo.borgmann@googlemail.com> | 2012-03-11 16:54:39 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-11 16:55:42 +0100 |
commit | daeffccd98e97a4ec69026f9ef2d65000596a996 (patch) | |
tree | c44e58dcdd4598a40874debe31cda850818782b9 /libavcodec/alsdec.c | |
parent | ad029c24a69add848f8d385d297b180bc1146107 (diff) | |
download | ffmpeg-daeffccd98e97a4ec69026f9ef2d65000596a996.tar.gz |
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.c | 2 |
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; } } |