Commit 018ce902 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/libspeexdec: more verbose error message

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d96d8e12
...@@ -59,7 +59,7 @@ static av_cold int libspeex_decode_init(AVCodecContext *avctx) ...@@ -59,7 +59,7 @@ static av_cold int libspeex_decode_init(AVCodecContext *avctx)
quality = avctx->extradata[37]; quality = avctx->extradata[37];
if (quality > 10) { 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; return AVERROR_PATCHWELCOME;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment