1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-28 20:53:54 +02:00

lavc/h265_profile_level: Avoid integer overflow in bitrate

Fixes CIDs #1439659 and #1439660.
This commit is contained in:
Mark Thompson 2018-09-24 23:00:43 +01:00
parent 321294adb7
commit feb1cf08ab

View File

@ -224,7 +224,7 @@ const H265LevelDescriptor *ff_h265_guess_level(const H265RawProfileTierLevel *pt
max_br = level->max_br_main;
if (!max_br)
continue;
if (bitrate > profile->cpb_nal_factor * hbr_factor * max_br)
if (bitrate > (int64_t)profile->cpb_nal_factor * hbr_factor * max_br)
continue;
if (pic_size < (level->max_luma_ps >> 2))