From: James Almer <jamrial@gmail.com>
To: ffmpeg-devel@ffmpeg.org
Subject: [FFmpeg-devel] [PATCH 14/26] fate/iamf: add missing aresample filter dependency
Date: Thu, 14 Mar 2024 20:00:51 -0300
Message-ID: <20240314230104.19624-14-jamrial@gmail.com> (raw)
In-Reply-To: <20240314230104.19624-1-jamrial@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
---
tests/fate/iamf.mak | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/tests/fate/iamf.mak b/tests/fate/iamf.mak
index 6fe0d54762..cf56a67e6f 100644
--- a/tests/fate/iamf.mak
+++ b/tests/fate/iamf.mak
@@ -1,4 +1,4 @@
-FATE_IAMF += fate-iamf-stereo
+FATE_IAMF-$(call TRANSCODE, FLAC, IAMF, WAV_DEMUXER PCM_S16LE_DECODER) += fate-iamf-stereo
fate-iamf-stereo: tests/data/asynth-44100-2.wav tests/data/streamgroups/audio_element-stereo tests/data/streamgroups/mix_presentation-stereo
fate-iamf-stereo: SRC = $(TARGET_PATH)/tests/data/asynth-44100-2.wav
fate-iamf-stereo: CMD = transcode wav $(SRC) iamf " \
@@ -7,7 +7,7 @@ fate-iamf-stereo: CMD = transcode wav $(SRC) iamf " \
-streamid 0:0 -c:a flac -t 1" "-c:a copy -map 0" \
"-show_entries stream_group=index,id,nb_streams,type:stream_group_components:stream_group_stream=index,id:stream_group_stream_disposition"
-FATE_IAMF += fate-iamf-5_1_4
+FATE_IAMF-$(call TRANSCODE, FLAC, IAMF, WAV_DEMUXER PCM_S16LE_DECODER ARESAMPLE_FILTER) += fate-iamf-5_1_4
fate-iamf-5_1_4: tests/data/asynth-44100-10.wav tests/data/filtergraphs/iamf_5_1_4 tests/data/streamgroups/audio_element-5_1_4 tests/data/streamgroups/mix_presentation-5_1_4
fate-iamf-5_1_4: SRC = $(TARGET_PATH)/tests/data/asynth-44100-10.wav
fate-iamf-5_1_4: CMD = transcode wav $(SRC) iamf "-auto_conversion_filters \
@@ -17,7 +17,7 @@ fate-iamf-5_1_4: CMD = transcode wav $(SRC) iamf "-auto_conversion_filters \
-streamid 0:0 -streamid 1:1 -streamid 2:2 -streamid 3:3 -streamid 4:4 -streamid 5:5 -map [FRONT] -map [BACK] -map [CENTER] -map [LFE] -map [TOP_FRONT] -map [TOP_BACK] -c:a flac -t 1" "-c:a copy -map 0" \
"-show_entries stream_group=index,id,nb_streams,type:stream_group_components:stream_group_stream=index,id:stream_group_stream_disposition"
-FATE_IAMF += fate-iamf-7_1_4
+FATE_IAMF-$(call TRANSCODE, FLAC, IAMF, WAV_DEMUXER PCM_S16LE_DECODER ARESAMPLE_FILTER) += fate-iamf-7_1_4
fate-iamf-7_1_4: tests/data/asynth-44100-12.wav tests/data/filtergraphs/iamf_7_1_4 tests/data/streamgroups/audio_element-7_1_4 tests/data/streamgroups/mix_presentation-7_1_4
fate-iamf-7_1_4: SRC = $(TARGET_PATH)/tests/data/asynth-44100-12.wav
fate-iamf-7_1_4: CMD = transcode wav $(SRC) iamf "-auto_conversion_filters \
@@ -27,7 +27,7 @@ fate-iamf-7_1_4: CMD = transcode wav $(SRC) iamf "-auto_conversion_filters \
-streamid 0:0 -streamid 1:1 -streamid 2:2 -streamid 3:3 -streamid 4:4 -streamid 5:5 -streamid 6:6 -map [FRONT] -map [BACK] -map [CENTER] -map [LFE] -map [SIDE] -map [TOP_FRONT] -map [TOP_BACK] -c:a flac -t 1" "-c:a copy -map 0" \
"-show_entries stream_group=index,id,nb_streams,type:stream_group_components:stream_group_stream=index,id:stream_group_stream_disposition"
-FATE_IAMF += fate-iamf-ambisonic_1
+FATE_IAMF-$(call TRANSCODE, FLAC, IAMF, WAV_DEMUXER PCM_S16LE_DECODER ARESAMPLE_FILTER) += fate-iamf-ambisonic_1
fate-iamf-ambisonic_1: tests/data/asynth-44100-4.wav tests/data/filtergraphs/iamf_ambisonic_1 tests/data/streamgroups/audio_element-ambisonic_1 tests/data/streamgroups/mix_presentation-ambisonic_1
fate-iamf-ambisonic_1: SRC = $(TARGET_PATH)/tests/data/asynth-44100-4.wav
fate-iamf-ambisonic_1: CMD = transcode wav $(SRC) iamf "-auto_conversion_filters \
@@ -37,8 +37,8 @@ fate-iamf-ambisonic_1: CMD = transcode wav $(SRC) iamf "-auto_conversion_filters
-streamid 0:0 -streamid 1:1 -streamid 2:2 -streamid 3:3 -map [MONO0] -map [MONO1] -map [MONO2] -map [MONO3] -c:a flac -t 1" "-c:a copy -map 0" \
"-show_entries stream_group=index,id,nb_streams,type:stream_group_components:stream_group_stream=index,id:stream_group_stream_disposition"
-FATE_IAMF-$(call TRANSCODE, FLAC, IAMF, WAV_DEMUXER PCM_S16LE_DECODER) += $(FATE_IAMF)
+FATE_IAMF += $(FATE_IAMF-yes)
-FATE_FFMPEG_FFPROBE += $(FATE_IAMF-yes)
+FATE_FFMPEG_FFPROBE += $(FATE_IAMF)
-fate-iamf: $(FATE_IAMF-yes)
+fate-iamf: $(FATE_IAMF)
--
2.44.0
_______________________________________________
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".
next prev parent reply other threads:[~2024-03-14 23:03 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-14 23:00 [FFmpeg-devel] [PATCH 01/26] fate/aac: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 02/26] fate/ac3: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 03/26] fate/adpcm: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 04/26] fate/alac: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 05/26] fate/amrnb: " James Almer
2024-03-15 14:59 ` Andreas Rheinhardt
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 06/26] fate/amrwb: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 07/26] fate/atrac: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 08/26] fate/audio: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 09/26] fate/demux: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 10/26] fate/fate-container: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 11/26] fate/filter-audio: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 12/26] fate/ffmpeg: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 13/26] fate/gapless: " James Almer
2024-03-14 23:00 ` James Almer [this message]
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 15/26] fate/libswresample: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 16/26] fate/lossless-audio: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 17/26] fate/monkeysaudio: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 18/26] fate/mov: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 19/26] fate/mp3: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 20/26] fate/mpc: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 21/26] fate/pcm: " James Almer
2024-03-14 23:00 ` [FFmpeg-devel] [PATCH 22/26] fate/real: " James Almer
2024-03-14 23:01 ` [FFmpeg-devel] [PATCH 23/26] fate/vorbis: " James Almer
2024-03-14 23:01 ` [FFmpeg-devel] [PATCH 24/26] fate/voice: " James Almer
2024-03-14 23:01 ` [FFmpeg-devel] [PATCH 25/26] fate/vqf: " James Almer
2024-03-14 23:01 ` [FFmpeg-devel] [PATCH 26/26] fate/wmavoice: " James Almer
2024-03-15 13:47 ` [FFmpeg-devel] [PATCH 01/26] fate/aac: " James Almer
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=20240314230104.19624-14-jamrial@gmail.com \
--to=jamrial@gmail.com \
--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