[FFmpeg-devel] Backporting makefile targets fate-list-failing and fate-clear-reports

2025-01-04 Thread Alexander Strasser via ffmpeg-devel
Hi all! I'm thinking about backporting commit 1e76bd2f394a01c1 [1] to all releases listed on our download page. It is a new feature for the build system, but not used to build ffmpeg or otherwise related to the generated binaries. It's of utility when doing backports because it makes it easy to

[FFmpeg-devel] [PATCH 2/2] avformat/mov: Check stts before move

2025-01-04 Thread Michael Niedermayer
Fixes: out of array access Fixes: 8bcg9j Regression-since: 865c73c86f9d9d167be7e41ad6cef71eba92dadd (This should be reviewed again) Found-by: 苏童 <220235...@seu.edu.cn> Signed-off-by: Michael Niedermayer --- libavformat/mov.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff -

[FFmpeg-devel] [PATCH 1/2] avfilter/vf_addroi: Add missing NULL termination to addroi_var_names[]()

2025-01-04 Thread Michael Niedermayer
Fixes: out of array read Found-by: Elias Myllymäki Signed-off-by: Michael Niedermayer --- libavfilter/vf_addroi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/vf_addroi.c b/libavfilter/vf_addroi.c index de857eced44..d6765e9d8cb 100644 --- a/libavfilter/vf_addroi.c +++ b/libav

Re: [FFmpeg-devel] [PATCH v2] lavc/vvc: Fix race condition for MVs cropped to subpic

2025-01-04 Thread Nuo Mi
On Fri, Jan 3, 2025 at 2:01 AM Frank Plowman wrote: > Thank you for your review. > > On 01/01/2025 04:30, Nuo Mi wrote: > > 👍 > > > > On Tue, Dec 31, 2024 at 2:02 AM Frank Plowman > wrote: > > > >> When the current subpicture has sps_subpic_treated_as_pic_flag equal to > >> 1, motion vectors are

Re: [FFmpeg-devel] [PATCH] avfilter/vf_dnn_detect: fix loading anchors when labels file is set

2025-01-04 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel On Behalf Of > Leandro Santiago > Sent: Tuesday, December 31, 2024 2:53 AM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH] avfilter/vf_dnn_detect: fix loading anchors > when labels file is set > > References https://trac.ffmpeg.

Re: [FFmpeg-devel] [PATCH] avcodec/vvcdec: set pict_type and AV_FRAME_FLAG_KEY

2025-01-04 Thread Nuo Mi
Hi Ruben, Thank you for the patch. A B/P frame's first slice may be an I slice, so it can't be used to determine the picture type. The ph_inter_slice_allowed_flag can quickly identify an I frame, but B/P frame still requires checking all slices. On Fri, Jan 3, 2025 at 12:19 AM Ruben Gonzalez wrot