mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-02 06:31:08 +00:00
libs: encoder: h264_fei: fix potential overflow before widen
Found by static analysis. encoder->mb_width * encoder->mb_height is evaluated using 32-bit arithmetic before widen. Thus, cast at least one of these to guint64 to avoid overflow.
This commit is contained in:
parent
2bfef5a454
commit
1ce66e2ed5
1 changed files with 1 additions and 1 deletions
|
@ -2600,7 +2600,7 @@ ensure_bitrate (GstVaapiEncoderH264Fei * encoder)
|
|||
if (!encoder->use_dct8x8)
|
||||
bits_per_mb += (bits_per_mb * 10) / 100;
|
||||
|
||||
factor = encoder->mb_width * encoder->mb_height * bits_per_mb;
|
||||
factor = (guint64) encoder->mb_width * encoder->mb_height * bits_per_mb;
|
||||
base_encoder->bitrate =
|
||||
gst_util_uint64_scale (factor, GST_VAAPI_ENCODER_FPS_N (encoder),
|
||||
GST_VAAPI_ENCODER_FPS_D (encoder)) / 1000;
|
||||
|
|
Loading…
Reference in a new issue