From: hung kuishing <hungkuishing@outlook.com> To: "ffmpeg-devel@ffmpeg.org" <ffmpeg-devel@ffmpeg.org> Subject: [FFmpeg-devel] [PATCH] libavfilter/vf_stack.c: check input height for avoiding crashed Date: Mon, 24 Jul 2023 02:49:51 +0000 Message-ID: <PH7PR11MB7430696BC3C12AC92CD5ECE3C402A@PH7PR11MB7430.namprd11.prod.outlook.com> (raw) In the case of vertical layout, if the chroma height is ceil rounded when shifted to the right, the total height of the chroma input will be greater than the output height, and a crash occurs. So make sure that the luma height can be shifted to the right to get an integer chroma height Signed-off-by: clarkh <hungkuishing@outlook.com> --- libavfilter/vf_stack.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/libavfilter/vf_stack.c b/libavfilter/vf_stack.c index 331dc7b3e3..877867938f 100644 --- a/libavfilter/vf_stack.c +++ b/libavfilter/vf_stack.c @@ -220,6 +220,11 @@ static int config_output(AVFilterLink *outlink) return ret; } + if (inlink->h % (1 << s->desc->log2_chroma_h)) { + av_log(ctx, AV_LOG_ERROR, "Input %d height %d does not divisible by %d\n", i, inlink->h, (1 << s->desc->log2_chroma_h)); + return AVERROR(EINVAL); + } + item->height[1] = item->height[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h); item->height[0] = item->height[3] = inlink->h; @@ -278,6 +283,11 @@ static int config_output(AVFilterLink *outlink) return ret; } + if ((s->nb_grid_rows > 1) && (inlink->h % (1 << s->desc->log2_chroma_h))) { + av_log(ctx, AV_LOG_ERROR, "Input %d height %d does not divisible by %d\n", k, inlink->h, (1 << s->desc->log2_chroma_h)); + return AVERROR(EINVAL); + } + item->height[1] = item->height[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h); item->height[0] = item->height[3] = inlink->h; @@ -302,6 +312,7 @@ static int config_output(AVFilterLink *outlink) char *arg2, *p2, *saveptr2 = NULL; char *arg3, *p3, *saveptr3 = NULL; int inw, inh, size; + int is_multi_row = av_strnstr(s->layout, "h0", strlen(s->layout)) != NULL; if (s->fillcolor_enable) { ff_draw_init(&s->draw, ctx->inputs[0]->format, 0); @@ -321,6 +332,11 @@ static int config_output(AVFilterLink *outlink) return ret; } + if (is_multi_row && (inlink->h % (1 << s->desc->log2_chroma_h))) { + av_log(ctx, AV_LOG_ERROR, "Input %d height %d does not divisible by %d\n", i, inlink->h, (1 << s->desc->log2_chroma_h)); + return AVERROR(EINVAL); + } + item->height[1] = item->height[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h); item->height[0] = item->height[3] = inlink->h; -- 2.34.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
reply other threads:[~2023-07-24 2:50 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=PH7PR11MB7430696BC3C12AC92CD5ECE3C402A@PH7PR11MB7430.namprd11.prod.outlook.com \ --to=hungkuishing@outlook.com \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git