Commit 47c84c0b authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/wavdec: add basic sanity check for the sample count

Fixes Ticket3708
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2a9b4c0f
......@@ -402,6 +402,11 @@ break_loop:
avio_seek(pb, data_ofs, SEEK_SET);
if (data_size > 0 && sample_count && data_size / sample_count / st->codec->channels > 8) {
av_log(s, AV_LOG_WARNING, "ignoring wrong sample_count %"PRId64"\n", sample_count);
sample_count = 0;
}
if (!sample_count || av_get_exact_bits_per_sample(st->codec->codec_id) > 0)
if ( st->codec->channels
&& data_size
......
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