Commit 3680b243 authored by Sean McGovern's avatar Sean McGovern Committed by Kostya Shishkov

wmapro: prevent division by zero when sample rate is unspecified

This fixes Bugzilla #327:
Signed-off-by: 's avatarKostya Shishkov <kostya.shishkov@gmail.com>
parent 03737412
......@@ -335,6 +335,11 @@ static av_cold int decode_init(AVCodecContext *avctx)
return AVERROR_INVALIDDATA;
}
if (s->avctx->sample_rate <= 0) {
av_log(avctx, AV_LOG_ERROR, "invalid sample rate\n");
return AVERROR_INVALIDDATA;
}
s->num_channels = avctx->channels;
if (s->num_channels < 0) {
......
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