[FFmpeg-cvslog] swscale/swscale: Check srcSliceH for bayer

Michael Niedermayer git at videolan.org
Wed Feb 21 19:44:07 EET 2024


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sat Feb 17 01:34:25 2024 +0100| [64098d0cd8ab1d27f78a335ca684f00a419b2160] | committer: Michael Niedermayer

swscale/swscale: Check srcSliceH for bayer

Fixes: Assertion srcSliceH > 1 failed at libswscale/swscale_unscaled.c:1359
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=64098d0cd8ab1d27f78a335ca684f00a419b2160
---

 libswscale/swscale.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 46ba68fe6a..7bea5147db 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -904,7 +904,8 @@ static int scale_internal(SwsContext *c,
 
     if ((srcSliceY  & (macro_height_src - 1)) ||
         ((srcSliceH & (macro_height_src - 1)) && srcSliceY + srcSliceH != c->srcH) ||
-        srcSliceY + srcSliceH > c->srcH) {
+        srcSliceY + srcSliceH > c->srcH ||
+        (isBayer(c->srcFormat) && srcSliceH <= 1)) {
         av_log(c, AV_LOG_ERROR, "Slice parameters %d, %d are invalid\n", srcSliceY, srcSliceH);
         return AVERROR(EINVAL);
     }



More information about the ffmpeg-cvslog mailing list