PR #22350 opened by michaelni URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/22350 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/22350.patch
This prevents the shell from interpreting the arguments [FRONT] would be otherwise interpreted if theres a file with name F in the local directory Fixes: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/22324 Fixes: 40e60a7db0c68bbe828a28d2ee264908f3a34e8d Signed-off-by: Michael Niedermayer <[email protected]> >From 7e08644faab6a45f381e1c29b9488bcaa66e509e Mon Sep 17 00:00:00 2001 From: Michael Niedermayer <[email protected]> Date: Mon, 2 Mar 2026 17:21:16 +0100 Subject: [PATCH] tests/fate/mov.max: Add quotes around [] This prevents the shell from interpreting the arguments [FRONT] would be otherwise interpreted if theres a file with name F in the local directory Fixes: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/22324 Fixes: 40e60a7db0c68bbe828a28d2ee264908f3a34e8d Signed-off-by: Michael Niedermayer <[email protected]> --- tests/fate/mov.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fate/mov.mak b/tests/fate/mov.mak index ef213b3195..b1af00db7d 100644 --- a/tests/fate/mov.mak +++ b/tests/fate/mov.mak @@ -314,7 +314,7 @@ tests/data/mov-mp4-iamf-7_1_4-video-first.mp4: ffmpeg$(PROGSSUF)$(EXESUF) | test -/filter_complex $(TARGET_PATH)/tests/data/filtergraphs/iamf_7_1_4 \ -/stream_group $(TARGET_PATH)/tests/data/streamgroups/audio_element-7_1_4-2 \ -/stream_group $(TARGET_PATH)/tests/data/streamgroups/mix_presentation-7_1_4 \ - -streamid 0:1 -streamid 1:2 -streamid 2:3 -streamid 3:4 -streamid 4:5 -streamid 5:6 -streamid 6:7 -streamid 7:8 -map 1:v:0 -map [FRONT] -map [TOP_FRONT] -map [CENTER] -map [LFE] -map [SIDE] -map [BACK] -map [TOP_BACK] \ + -streamid 0:1 -streamid 1:2 -streamid 2:3 -streamid 3:4 -streamid 4:5 -streamid 5:6 -streamid 6:7 -streamid 7:8 -map 1:v:0 -map "[FRONT]" -map "[TOP_FRONT]" -map "[CENTER]" -map "[LFE]" -map "[SIDE]" -map "[BACK]" -map "[TOP_BACK]" \ -flags +bitexact -c:a flac -idct simple -dct fastint -sws_flags +accurate_rnd+bitexact -flags +bitexact -threads 1 -c:v mpeg4 -t 1 -fflags +bitexact -f mp4 $(TARGET_PATH)/tests/data/mov-mp4-iamf-7_1_4-video-first.mp4 -y 2>/dev/null # Demux everything -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
