Browse Source

avcodec/libspeexdec: more verbose error message

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.5
Michael Niedermayer 11 years ago
parent
commit
018ce90284
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/libspeexdec.c

+ 1
- 1
libavcodec/libspeexdec.c View File

@@ -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;
}



Loading…
Cancel
Save