From: Niklas Haas <code@ffmpeg.org> To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] [PATCH] avfilter/vf_libplacebo: fix possible segfault when frame mixing (PR #20211) Date: Mon, 11 Aug 2025 11:03:04 +0300 (EEST) Message-ID: <20250811080304.1FDD168D271@ffbox0-bg.ffmpeg.org> (raw) PR #20211 opened by Niklas Haas (haasn) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20211 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20211.patch pl_frame_mix_current() will return NULL if all frames are in the future, but when libplacebo is using a frame mixer with a radius greater than 1, future frames are expected to already be partially renderered. Instead, use pl_frame_mix_nearest(), which is guaranteed to give us a valid frame for any nonempty frame mix. Fixes: 3091bca3edb339a4d2ec8c64e52fa7e67a7d5005 From 5d70dc27c0198dbcf9843efd2145189cb0a89d26 Mon Sep 17 00:00:00 2001 From: Niklas Haas <git@haasn.dev> Date: Mon, 11 Aug 2025 09:58:58 +0200 Subject: [PATCH] avfilter/vf_libplacebo: fix possible segfault when frame mixing pl_frame_mix_current() will return NULL if all frames are in the future, but when libplacebo is using a frame mixer with a radius greater than 1, future frames are expected to already be partially renderered. Instead, use pl_frame_mix_nearest(), which is guaranteed to give us a valid frame for any nonempty frame mix. Fixes: 3091bca3edb339a4d2ec8c64e52fa7e67a7d5005 --- libavfilter/vf_libplacebo.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavfilter/vf_libplacebo.c b/libavfilter/vf_libplacebo.c index 135749d3b1..01ce9d56b7 100644 --- a/libavfilter/vf_libplacebo.c +++ b/libavfilter/vf_libplacebo.c @@ -928,7 +928,8 @@ static int output_frame(AVFilterContext *ctx, int64_t pts) struct pl_frame dummy; if (in->qstatus != PL_QUEUE_OK || !in->mix.num_frames) continue; - const struct pl_frame *cur = pl_frame_mix_current(&in->mix); + const struct pl_frame *cur = pl_frame_mix_nearest(&in->mix); + av_assert1(cur); update_crops(ctx, in, &dummy, target_pts); const int x0 = roundf(FFMIN(dummy.crop.x0, dummy.crop.x1)), y0 = roundf(FFMIN(dummy.crop.y0, dummy.crop.y1)), -- 2.49.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:[~2025-08-11 8:03 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=20250811080304.1FDD168D271@ffbox0-bg.ffmpeg.org \ --to=code@ffmpeg.org \ --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