Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-01-14 01:26:40 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-01-15 19:54:00 +0300
commit7e297b4bc6afc15b96b9b6b57a5cfc514733fcce (patch)
treec34dbd1bb855f2f9380a0cb8b230b706c8765c70
parentfba2fdaea32edd55aeb3adb8815e3065679433dd (diff)
avcodec/wavpackenc: print channel count in av_log calln2.5.10
Fixes a warning with -Wformat-extra-args (cherry picked from commit 17e7fdf61a04f52c499e2d06eab2cf2d22343aa9) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/wavpackenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wavpackenc.c b/libavcodec/wavpackenc.c
index 2d98e53b95..4bfeadb2e6 100644
--- a/libavcodec/wavpackenc.c
+++ b/libavcodec/wavpackenc.c
@@ -129,7 +129,7 @@ static av_cold int wavpack_encode_init(AVCodecContext *avctx)
s->avctx = avctx;
if (avctx->channels > 255) {
- av_log(avctx, AV_LOG_ERROR, "Too many channels\n", avctx->channels);
+ av_log(avctx, AV_LOG_ERROR, "Invalid channel count: %d\n", avctx->channels);
return AVERROR(EINVAL);
}