mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-09 14:14:39 +02:00
dcstr: fix division by zero
Also check for possible overflows. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
This commit is contained in:
parent
93c39db5f1
commit
b0a043f51b
@ -33,6 +33,7 @@ static int dcstr_probe(AVProbeData *p)
|
|||||||
static int dcstr_read_header(AVFormatContext *s)
|
static int dcstr_read_header(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
unsigned codec, align;
|
unsigned codec, align;
|
||||||
|
int mult;
|
||||||
AVStream *st;
|
AVStream *st;
|
||||||
|
|
||||||
st = avformat_new_stream(s, NULL);
|
st = avformat_new_stream(s, NULL);
|
||||||
@ -46,7 +47,12 @@ static int dcstr_read_header(AVFormatContext *s)
|
|||||||
align = avio_rl32(s->pb);
|
align = avio_rl32(s->pb);
|
||||||
avio_skip(s->pb, 4);
|
avio_skip(s->pb, 4);
|
||||||
st->duration = avio_rl32(s->pb);
|
st->duration = avio_rl32(s->pb);
|
||||||
st->codecpar->channels *= avio_rl32(s->pb);
|
mult = avio_rl32(s->pb);
|
||||||
|
if (st->codecpar->channels <= 0 || mult <= 0 || mult > INT_MAX / st->codecpar->channels) {
|
||||||
|
av_log(s, AV_LOG_ERROR, "invalid number of channels %d x %d\n", st->codecpar->channels, mult);
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
|
}
|
||||||
|
st->codecpar->channels *= mult;
|
||||||
if (!align || align > INT_MAX / st->codecpar->channels)
|
if (!align || align > INT_MAX / st->codecpar->channels)
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
st->codecpar->block_align = align * st->codecpar->channels;
|
st->codecpar->block_align = align * st->codecpar->channels;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user