Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Nicolas Gaullier <nicolas.gaullier@cji.paris>
To: ffmpeg-devel@ffmpeg.org
Cc: Nicolas Gaullier <nicolas.gaullier@cji.paris>
Subject: [FFmpeg-devel] [PATCH v2 11/20] fate/ac3: fix multiple dependencies
Date: Mon, 23 Jun 2025 19:41:43 +0200
Message-ID: <20250623174239.624027-12-nicolas.gaullier@cji.paris> (raw)
In-Reply-To: <20250623174239.624027-1-nicolas.gaullier@cji.paris>

Signed-off-by: Nicolas Gaullier <nicolas.gaullier@cji.paris>
---
 tests/fate/ac3.mak | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tests/fate/ac3.mak b/tests/fate/ac3.mak
index e52678a2fd..30f8b98ff1 100644
--- a/tests/fate/ac3.mak
+++ b/tests/fate/ac3.mak
@@ -65,17 +65,17 @@ fate-eac3-5: REF = $(SAMPLES)/eac3/the_great_wall_7.1.pcm
 
 $(FATE_AC3) $(FATE_EAC3): CMP = oneoff
 
-FATE_AC3-$(call  DEMDEC, AC3,  AC3,  ARESAMPLE_FILTER)  += $(FATE_AC3)
-FATE_EAC3-$(call DEMDEC, EAC3, EAC3, ARESAMPLE_FILTER) += $(FATE_EAC3)
+FATE_AC3-$(call  DEMDEC, AC3,  AC3 AC3_FIXED, PCM_S16LE_MUXER ARESAMPLE_FILTER)  += $(FATE_AC3)
+FATE_EAC3-$(call DEMDEC, EAC3, EAC3,          PCM_S16LE_MUXER ARESAMPLE_FILTER) += $(FATE_EAC3)
 
-FATE_AC3-$(call ENCDEC, AC3, AC3, ARESAMPLE_FILTER) += fate-ac3-encode
+FATE_AC3-$(call ENCDEC, AC3, AC3, WAV_MUXER WAV_DEMUXER ARESAMPLE_FILTER PCM_S16LE_ENCODER PIPE_PROTOCOL) += fate-ac3-encode
 fate-ac3-encode: CMD = enc_dec_pcm ac3 wav s16le $(subst $(SAMPLES),$(TARGET_SAMPLES),$(REF)) -c:a ac3 -b:a 128k
 fate-ac3-encode: CMP_SHIFT = -1024
 fate-ac3-encode: CMP_TARGET = 404.53
 fate-ac3-encode: SIZE_TOLERANCE = 488
 
 
-FATE_EAC3-$(call ENCDEC, EAC3, EAC3, ARESAMPLE_FILTER) += fate-eac3-encode
+FATE_EAC3-$(call ENCDEC, EAC3, EAC3, WAV_MUXER WAV_DEMUXER ARESAMPLE_FILTER PCM_S16LE_ENCODER PIPE_PROTOCOL) += fate-eac3-encode
 fate-eac3-encode: CMD = enc_dec_pcm eac3 wav s16le $(subst $(SAMPLES),$(TARGET_SAMPLES),$(REF)) -c:a eac3 -b:a 128k
 fate-eac3-encode: CMP_SHIFT = -1024
 fate-eac3-encode: CMP_TARGET = 516.94
@@ -84,7 +84,7 @@ fate-eac3-encode: SIZE_TOLERANCE = 488
 fate-ac3-encode fate-eac3-encode: CMP = stddev
 fate-ac3-encode fate-eac3-encode: REF = $(SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav
 
-FATE_AC3-$(call ENCMUX, AC3_FIXED, AC3, ARESAMPLE_FILTER) += fate-ac3-fixed-encode
+FATE_AC3-$(call ENCMUX, AC3_FIXED, AC3, WAV_DEMUXER PCM_S16LE_DECODER ARESAMPLE_FILTER) += fate-ac3-fixed-encode
 fate-ac3-fixed-encode: tests/data/asynth-44100-2.wav
 fate-ac3-fixed-encode: SRC = $(TARGET_PATH)/tests/data/asynth-44100-2.wav
 fate-ac3-fixed-encode: CMD = md5 -i $(SRC) -c ac3_fixed -ab 128k -f ac3 -flags +bitexact -af aresample
-- 
2.47.2

_______________________________________________
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".

  parent reply	other threads:[~2025-06-23 17:46 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-23 17:41 [FFmpeg-devel] [PATCH v2 00/20] fate: fix several dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 01/20] tests/Makefile: make easier to check for multiple dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 02/20] fate/all: add missing dependencies for extradata bsf Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 03/20] fate/demux: fix multiple dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 04/20] fate/all: switch-fix mov muxer dependency to mp4 muxer dependency Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 05/20] fate/mov: fix multiple dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 06/20] fate/gapless: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 07/20] fate/lavf-container: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 08/20] fate/vorbis: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 09/20] fate/aac: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 10/20] fate/audio: " Nicolas Gaullier
2025-06-23 17:41 ` Nicolas Gaullier [this message]
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 12/20] fate/cover-art: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 13/20] fate/hlsenc: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 14/20] fate/mpeg4: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 15/20] fate/pcm: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 16/20] fate/hevc: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 17/20] fate/all: " Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 18/20] fate/all: add missing file protocol dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 19/20] fate/all: add missing crc/framecrc/md5/framemd5/pipe dependencies Nicolas Gaullier
2025-06-23 17:41 ` [FFmpeg-devel] [PATCH v2 20/20] libavcodec/tests: fix gitignore hashtable Nicolas Gaullier

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=20250623174239.624027-12-nicolas.gaullier@cji.paris \
    --to=nicolas.gaullier@cji.paris \
    --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