mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
lavc/hevc: check framerate num/den to be strictly positive
Rather than just != 0. These values are read as uint32 and can become negative when cast to int.
This commit is contained in:
parent
fc8df81cb1
commit
eec1a7a6bb
@ -392,7 +392,7 @@ static void export_stream_params(HEVCContext *s, const HEVCSPS *sps)
|
||||
den = sps->vui.vui_time_scale;
|
||||
}
|
||||
|
||||
if (num != 0 && den != 0)
|
||||
if (num > 0 && den > 0)
|
||||
av_reduce(&avctx->framerate.den, &avctx->framerate.num,
|
||||
num, den, 1 << 30);
|
||||
}
|
||||
|
@ -101,7 +101,7 @@ static int hevc_parse_slice_header(AVCodecParserContext *s, H2645NAL *nal,
|
||||
den = sps->vui.vui_time_scale;
|
||||
}
|
||||
|
||||
if (num != 0 && den != 0)
|
||||
if (num > 0 && den > 0)
|
||||
av_reduce(&avctx->framerate.den, &avctx->framerate.num,
|
||||
num, den, 1 << 30);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user