[FFmpeg-cvslog] alsdec: pretty print for another log message
Thilo Borgmann
git at videolan.org
Sun Mar 11 18:26:35 CET 2012
ffmpeg | branch: master | Thilo Borgmann <thilo.borgmann at googlemail.com> | Sun Mar 11 16:54:39 2012 +0100| [daeffccd98e97a4ec69026f9ef2d65000596a996] | committer: Michael Niedermayer
alsdec: pretty print for another log message
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=daeffccd98e97a4ec69026f9ef2d65000596a996
---
libavcodec/alsdec.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c
index 1c6e259..0a2768a 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;
}
}
More information about the ffmpeg-cvslog
mailing list