On Sun, Aug 04, 2019 at 01:41:48AM +0200, Lynne wrote: > Aug 4, 2019, 12:16 AM by mich...@niedermayer.cc: > > > Signed-off-by: Michael Niedermayer <mich...@niedermayer.cc> > > --- > > libavcodec/atrac9dec.c | 3 +-- > > 1 file changed, 1 insertion(+), 2 deletions(-) > > > > diff --git a/libavcodec/atrac9dec.c b/libavcodec/atrac9dec.c > > index 2e23ea44e8..491e889788 100644 > > --- a/libavcodec/atrac9dec.c > > +++ b/libavcodec/atrac9dec.c > > @@ -124,8 +124,7 @@ static inline int parse_gradient(ATRAC9Context *s, > > ATRAC9BlockData *b, > > if (grad_range[0] >= grad_range[1] || grad_range[1] > 47) > > return AVERROR_INVALIDDATA; > > > > - if (grad_value[0] > 31 || grad_value[1] > 31) > > - return AVERROR_INVALIDDATA; > > + av_assert0(grad_value[0] <= 31 && grad_value[1] <= 31); > > > > Its impossible so just remove it.
will do thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Opposition brings concord. Out of discord comes the fairest harmony. -- Heraclitus
signature.asc
Description: PGP signature
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".