This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository ffmpeg.
The following commit(s) were added to refs/heads/master by this push:
new ea3e09bfb1 fate/filter-video: use run $(FFMPEG) for scale-zero-dim test
ea3e09bfb1 is described below
commit ea3e09bfb10b67822ee29668289b729a43274f22
Author: Jun Zhao <[email protected]>
AuthorDate: Fri May 1 19:20:14 2026 +0800
Commit: Jun Zhao <[email protected]>
CommitDate: Fri May 1 23:45:30 2026 +0800
fate/filter-video: use run $(FFMPEG) for scale-zero-dim test
$(FFMPEG) expands to "ffmpeg.exe" on Windows/MSYS2, and the bare
$(FFMPEG) call falls through to PATH lookup, picking up an externally
installed ffmpeg instead of the freshly built binary in $target_path.
That stale binary lacked the rejection added in a45fe72c9d, causing
msys2-clang64/clangarm64/ucrt64 slots to silently produce 250x2
instead of failing at 500x0.
Wrap with fate-run.sh's run() so $target_exec and $target_path are
resolved correctly on all platforms, matching the convention used by
e.g. fate-id3v2-invalid-tags, and avoiding the ffmpeg() helper's
unrelated default flags.
Signed-off-by: Jun Zhao <[email protected]>
---
tests/fate/filter-video.mak | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/fate/filter-video.mak b/tests/fate/filter-video.mak
index f157496d06..af9c374e1c 100644
--- a/tests/fate/filter-video.mak
+++ b/tests/fate/filter-video.mak
@@ -528,7 +528,7 @@ fate-filter-scalechroma: CMD = framecrc -flags bitexact -s
352x288 -pix_fmt yuv4
# filter and potentially hanging downstream encoders (issue #22817).
# Verify that such invalid dimensions are now rejected explicitly.
FATE_FILTER-$(call ALLYES, SCALE_FILTER COLOR_FILTER LAVFI_INDEV
WRAPPED_AVFRAME_ENCODER NULL_MUXER) += fate-filter-scale-zero-dim
-fate-filter-scale-zero-dim: CMD = ! $(FFMPEG) -nostdin -hide_banner -f lavfi
-i "color=c=red:s=3000x2:d=1" -vf "scale=iw/2:-2,scale=iw/3:-2,scale=iw/2:-2"
-f null none
+fate-filter-scale-zero-dim: CMD = ! run $(FFMPEG) -nostdin -hide_banner -f
lavfi -i "color=c=red:s=3000x2:d=1" -vf
"scale=iw/2:-2,scale=iw/3:-2,scale=iw/2:-2" -f null none
fate-filter-scale-zero-dim: CMP = null
FATE_FILTER_VSYNTH_VIDEO_FILTER-$(CONFIG_VFLIP_FILTER) += fate-filter-vflip
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]