[FFmpeg-devel] [PATCH] avfilter/vf_crop: prevent integer overflows when calculating SAR

James Almer jamrial at gmail.com
Thu Jul 11 15:44:16 EEST 2024


On 7/9/2024 5:32 PM, James Almer wrote:
> Signed-off-by: James Almer <jamrial at gmail.com>
> ---
>   libavfilter/vf_crop.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
> index 6361209941..d4966323f5 100644
> --- a/libavfilter/vf_crop.c
> +++ b/libavfilter/vf_crop.c
> @@ -206,7 +206,7 @@ static int config_input(AVFilterLink *link)
>           AVRational dar = av_mul_q(link->sample_aspect_ratio,
>                                     (AVRational){ link->w, link->h });
>           av_reduce(&s->out_sar.num, &s->out_sar.den,
> -                  dar.num * s->h, dar.den * s->w, INT_MAX);
> +                  (int64_t)dar.num * s->h, (int64_t)dar.den * s->w, INT_MAX);
>       } else
>           s->out_sar = link->sample_aspect_ratio;

Will apply.


More information about the ffmpeg-devel mailing list