Commit f657ca0d authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'd8798276'

* commit 'd8798276':
  r3d: Add more input value validation

Conflicts:
	libavformat/r3d.c

See: 99b1b2b1
See: df92ac18Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 2a930fa2 d8798276
......@@ -85,7 +85,7 @@ static int r3d_read_red1(AVFormatContext *s)
framerate.num = avio_rb16(s->pb);
framerate.den = avio_rb16(s->pb);
if (framerate.num && framerate.den) {
if (framerate.num > 0 && framerate.den > 0) {
#if FF_API_R_FRAME_RATE
st->r_frame_rate =
#endif
......@@ -283,8 +283,8 @@ static int r3d_read_reda(AVFormatContext *s, AVPacket *pkt, Atom *atom)
dts = avio_rb32(s->pb);
st->codec->sample_rate = avio_rb32(s->pb);
if (st->codec->sample_rate < 0) {
av_log(s, AV_LOG_ERROR, "negative sample rate\n");
if (st->codec->sample_rate <= 0) {
av_log(s, AV_LOG_ERROR, "Bad sample rate\n");
return AVERROR_INVALIDDATA;
}
......
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