PR #24160 opened by Kacper Michajłow (kasper93) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/24160 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/24160.patch
# Summary of changes Briefly describe what this PR does and why. <!-- If this PR requires new FATE test samples, attach them to the PR and list their target paths below (relative to the fate-suite root). Attached filenames must match the sample's filename: ```fate-samples # e.g. vorbis/new-sample.ogg ``` --> From 3bc5ef1d06f77105b4d7012e0ef30ae764320eb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= <[email protected]> Date: Sat, 15 Aug 2026 14:53:39 +0200 Subject: [PATCH 1/2] tests/fate/filter-video: add aresample dependency to ebur128-height test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: fc02470c62a71a8fa431f3e424bc8049fec8d90a Signed-off-by: Kacper Michajłow <[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 6f6a3c7391..48895ee93c 100644 --- a/tests/fate/filter-video.mak +++ b/tests/fate/filter-video.mak @@ -836,7 +836,7 @@ FATE_METADATA_FILTER-$(call ALLYES, $(EBUR128_METADATA_DEPS)) += fate-filter-met fate-filter-metadata-ebur128: SRC = $(TARGET_SAMPLES)/filter/seq-3341-7_seq-3342-5-24bit.flac fate-filter-metadata-ebur128: CMD = run $(FILTER_METADATA_COMMAND) "amovie='$(SRC)',ebur128=metadata=1" -EBUR128_HEIGHT_DEPS = FFPROBE LAVFI_INDEV AEVALSRC_FILTER EBUR128_FILTER +EBUR128_HEIGHT_DEPS = FFPROBE LAVFI_INDEV AEVALSRC_FILTER ARESAMPLE_FILTER EBUR128_FILTER FATE_FILTER_FFPROBE-$(call ALLYES, $(EBUR128_HEIGHT_DEPS)) += fate-filter-metadata-ebur128-height fate-filter-metadata-ebur128-height: CMD = run $(FILTER_METADATA_COMMAND) "aevalsrc=0.12589*sin(2*PI*997*t):channel_layout=TBL:sample_rate=48000:duration=0.4,ebur128=metadata=1" -- 2.52.0 From 80e37d3f1afeefcf8702c1a455c99079501a63b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= <[email protected]> Date: Sat, 15 Aug 2026 14:53:45 +0200 Subject: [PATCH 2/2] tests/fate/mov: add scale filter dependency to cover-reenc-keeps-audio-format-tags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: 4641be96e5c97c3a91bba0980cb7377586156195 Signed-off-by: Kacper Michajłow <[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 5c399f4020..747dd61c65 100644 --- a/tests/fate/mov.mak +++ b/tests/fate/mov.mak @@ -411,7 +411,7 @@ fate-mov-reenc-delete-format-metadata: CMD = transcode mov $(TARGET_SAMPLES)/cov # audio-only format tags (gapless_playback, iTunSMPB, iTunNORM) must survive when # only the cover-art video stream is re-encoded and the audio is stream-copied -FATE_MOV_FFMPEG_FFPROBE-$(call ENCDEC, PNG, NUT MOV) += fate-mov-cover-reenc-keeps-audio-format-tags +FATE_MOV_FFMPEG_FFPROBE-$(call ENCDEC, PNG, NUT MOV, SCALE_FILTER) += fate-mov-cover-reenc-keeps-audio-format-tags fate-mov-cover-reenc-keeps-audio-format-tags: CMD = transcode mov $(TARGET_SAMPLES)/cover_art/Owner-iTunes_9.0.3.15.m4a nut "-map 0:a:0 -c:a copy -map 0:v:0 -filter:v scale -c:v png -bitexact -t 0.1" "-c copy -t 0.1" "-show_entries format_tags" "" "" "" null # stream-level branding: vendor_id should be deleted on re-encode -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
