Browse Source

lavc/h265_profile_level: Avoid integer overflow in bitrate

Fixes CIDs #1439659 and #1439660.
tags/n4.1
Mark Thompson 7 years ago
parent
commit
feb1cf08ab
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h265_profile_level.c

+ 1
- 1
libavcodec/h265_profile_level.c 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))


Loading…
Cancel
Save