diff options
author | Nicolas Gaullier <nicolas.gaullier@cji.paris> | 2025-06-30 18:09:01 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2025-07-05 21:10:45 +0200 |
commit | ee29f2f455a633497eaf61a1954d4f3c80300685 (patch) | |
tree | 957b912862b524df2f7bff360d3fff7ee66a2e84 | |
parent | c1fa833d1cbd70b016763af6b7bd6532fb2b096a (diff) | |
download | ffmpeg-ee29f2f455a633497eaf61a1954d4f3c80300685.tar.gz |
fate/vorbis: fix multiple dependencies
Signed-off-by: Nicolas Gaullier <nicolas.gaullier@cji.paris>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | tests/fate/vorbis.mak | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/tests/fate/vorbis.mak b/tests/fate/vorbis.mak index 781430bcd3..73e837f5a6 100644 --- a/tests/fate/vorbis.mak +++ b/tests/fate/vorbis.mak @@ -1,10 +1,10 @@ -FATE_VORBIS += fate-vorbis-encode -fate-vorbis-encode: CMD = enc_dec_pcm ogg wav s16le $(TARGET_SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav -c:a vorbis -strict experimental -fate-vorbis-encode: REF = $(SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav -fate-vorbis-encode: CMP_SHIFT = 0 -fate-vorbis-encode: CMP_TARGET = 296 -fate-vorbis-encode: SIZE_TOLERANCE = 3560 -fate-vorbis-encode: FUZZ = 30 +FATE_VORBIS_ENCODE += fate-vorbis-encode-1 +fate-vorbis-encode-1: CMD = enc_dec_pcm ogg wav s16le $(TARGET_SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav -c:a vorbis -strict experimental +fate-vorbis-encode-1: REF = $(SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav +fate-vorbis-encode-1: CMP_SHIFT = 0 +fate-vorbis-encode-1: CMP_TARGET = 296 +fate-vorbis-encode-1: SIZE_TOLERANCE = 3560 +fate-vorbis-encode-1: FUZZ = 30 FATE_VORBIS += fate-vorbis-1 fate-vorbis-1: CMD = pcm -i $(TARGET_SAMPLES)/vorbis/1.0.1-test_small.ogg @@ -94,9 +94,11 @@ fate-vorbis-1833-chapters: CMD = probechapters $(TARGET_SAMPLES)/vorbis/vorbis_c FATE_SAMPLES_FFPROBE += $(FATE_VORBIS_FFPROBE-yes) -FATE_VORBIS-$(call DEMDEC, OGG, VORBIS, ARESAMPLE_FILTER) += $(FATE_VORBIS) +FATE_VORBIS-$(call PCM, OGG, VORBIS, ARESAMPLE_FILTER) += $(FATE_VORBIS) +FATE_VORBIS_ENCODE-$(call TRANSCODE, VORBIS, OGG, WAV_MUXER WAV_DEMUXER PCM_S16LE_DECODER ARESAMPLE_FILTER) += $(FATE_VORBIS_ENCODE) -FATE_SAMPLES_AVCONV += $(FATE_VORBIS-yes) -fate-vorbis: $(FATE_VORBIS-yes) $(FATE_VORBIS_FFPROBE-yes) +FATE_SAMPLES_AVCONV += $(FATE_VORBIS-yes) $(FATE_VORBIS_ENCODE-yes) +fate-vorbis: $(FATE_VORBIS-yes) $(FATE_VORBIS_ENCODE-yes) $(FATE_VORBIS_FFPROBE-yes) $(FATE_VORBIS-yes): CMP = oneoff -fate-vorbis-encode: CMP = stddev +fate-vorbis-encode: $(FATE_VORBIS_ENCODE-yes) +$(FATE_VORBIS_ENCODE-yes): CMP = stddev |