diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-11 18:58:08 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-01-15 12:30:40 +0100 |
commit | d7f7586c3fcc9a58873a65d0497b5184e49b4d65 (patch) | |
tree | b47003dbc31cc8be04546ed64e5929042ef8ce29 | |
parent | f05e0e76d6574b72cbc048557b039a713ca30be4 (diff) | |
download | ffmpeg-d7f7586c3fcc9a58873a65d0497b5184e49b4d65.tar.gz |
avcodec/wavpackenc: Check the number of channels
They are stored in a byte, thus more than 255 is not possible
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 59c915a403af32c4ff5126625b0cc7e38f4beff9)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/wavpackenc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/wavpackenc.c b/libavcodec/wavpackenc.c index 321f6d395c..ce41db8149 100644 --- a/libavcodec/wavpackenc.c +++ b/libavcodec/wavpackenc.c @@ -128,6 +128,11 @@ 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); + return AVERROR(EINVAL); + } + if (!avctx->frame_size) { int block_samples; if (!(avctx->sample_rate & 1)) |