Re: [FFmpeg-devel] [PATCH 1/7] avcodec/sunrast: Use ptrdiff_t for stride

2022-10-03 Thread Andreas Rheinhardt
James Almer: > On 9/30/2022 2:02 PM, Andreas Rheinhardt wrote: >> Fixes segfaults with negative linesizes; in particular, >> this affected the sunraster-(1|8|24)bit-(raw|rle) and >> sunraster-8bit_gray-raw FATE tests. >> >> Signed-off-by: Andreas Rheinhardt >> --- >>   libavcodec/sunrast.c | 5 +++

Re: [FFmpeg-devel] [PATCH 1/7] avcodec/sunrast: Use ptrdiff_t for stride

2022-10-03 Thread James Almer
On 9/30/2022 2:02 PM, Andreas Rheinhardt wrote: Fixes segfaults with negative linesizes; in particular, this affected the sunraster-(1|8|24)bit-(raw|rle) and sunraster-8bit_gray-raw FATE tests. Signed-off-by: Andreas Rheinhardt --- libavcodec/sunrast.c | 5 +++-- 1 file changed, 3 insertions

Re: [FFmpeg-devel] [PATCH 1/7] avcodec/sunrast: Use ptrdiff_t for stride

2022-10-03 Thread Andreas Rheinhardt
Andreas Rheinhardt: > Fixes segfaults with negative linesizes; in particular, > this affected the sunraster-(1|8|24)bit-(raw|rle) and > sunraster-8bit_gray-raw FATE tests. > > Signed-off-by: Andreas Rheinhardt > --- > libavcodec/sunrast.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions

[FFmpeg-devel] [PATCH 1/7] avcodec/sunrast: Use ptrdiff_t for stride

2022-09-30 Thread Andreas Rheinhardt
Fixes segfaults with negative linesizes; in particular, this affected the sunraster-(1|8|24)bit-(raw|rle) and sunraster-8bit_gray-raw FATE tests. Signed-off-by: Andreas Rheinhardt --- libavcodec/sunrast.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavcodec/sunrast