diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-21 20:08:56 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-21 20:08:56 +0100 |
commit | 018ce902840a16447ca049046e558b56e60484b2 (patch) | |
tree | 158c0ff395618597d0f41c6cb423f2c2eb6aba4a | |
parent | d96d8e121f1e423ba31dca972c07613cf32076c6 (diff) | |
download | ffmpeg-018ce902840a16447ca049046e558b56e60484b2.tar.gz |
avcodec/libspeexdec: more verbose error message
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/libspeexdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libspeexdec.c b/libavcodec/libspeexdec.c index 1e4c05a9aa..479c0108cd 100644 --- a/libavcodec/libspeexdec.c +++ b/libavcodec/libspeexdec.c @@ -59,7 +59,7 @@ static av_cold int libspeex_decode_init(AVCodecContext *avctx) quality = avctx->extradata[37]; if (quality > 10) { - av_log(avctx, AV_LOG_ERROR, "Unsupported quality mode.\n"); + av_log(avctx, AV_LOG_ERROR, "Unsupported quality mode %d.\n", quality); return AVERROR_PATCHWELCOME; } |