mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +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. (cherry picked from commiteec1a7a6bb
) Signed-off-by: Anton Khirnov <anton@khirnov.net> (cherry picked from commit9cadadb9a1
) Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
f749aaf108
commit
86c595cc1b
@ -105,7 +105,7 @@ static int hevc_parse_slice_header(AVCodecParserContext *s, H2645NAL *nal,
|
||||
den = ps->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);
|
||||
|
||||
|
@ -372,7 +372,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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user