You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
avutil/imgutils: correctly check for negative SAR components
These could trigger assert failures previously Found-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -245,7 +245,7 @@ int av_image_check_sar(unsigned int w, unsigned int h, AVRational sar)
|
|||||||
{
|
{
|
||||||
int64_t scaled_dim;
|
int64_t scaled_dim;
|
||||||
|
|
||||||
if (!sar.den)
|
if (sar.den <= 0 || sar.num < 0)
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
|
|
||||||
if (!sar.num || sar.num == sar.den)
|
if (!sar.num || sar.num == sar.den)
|
||||||
|
Reference in New Issue
Block a user