From: Nicolas Gaullier <nicolas.gaullier@cji.paris> To: ffmpeg-devel@ffmpeg.org Cc: Nicolas Gaullier <nicolas.gaullier@cji.paris> Subject: [FFmpeg-devel] [PATCH v3 15/21] fate/pcm: fix multiple dependencies Date: Mon, 30 Jun 2025 18:09:08 +0200 Message-ID: <20250630160923.3678492-16-nicolas.gaullier@cji.paris> (raw) In-Reply-To: <20250630160923.3678492-1-nicolas.gaullier@cji.paris> Signed-off-by: Nicolas Gaullier <nicolas.gaullier@cji.paris> --- tests/fate/pcm.mak | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/fate/pcm.mak b/tests/fate/pcm.mak index b10233a9eb..75636118b2 100644 --- a/tests/fate/pcm.mak +++ b/tests/fate/pcm.mak @@ -1,4 +1,4 @@ -FATE_SAMPLES_PCM-$(call DEMDEC, WAV, PCM_U8, ARESAMPLE_FILTER) += fate-iff-pcm +FATE_SAMPLES_PCM-$(call TRANSCODE, PCM_S16LE PCM_U8, PCM_S16LE WAV, ARESAMPLE_FILTER) += fate-iff-pcm fate-iff-pcm: CMD = md5 -i $(TARGET_SAMPLES)/iff/Bells -f s16le -af aresample FATE_SAMPLES_PCM-$(call DEMDEC, MPEGPS, PCM_DVD, ARESAMPLE_FILTER) += fate-pcm_dvd @@ -7,22 +7,22 @@ fate-pcm_dvd: CMD = framecrc -i $(TARGET_SAMPLES)/pcm-dvd/coolitnow-partial.vob FATE_SAMPLES_PCM-$(call DEMDEC, EA, PCM_S16LE_PLANAR, ARESAMPLE_FILTER) += fate-pcm-planar fate-pcm-planar: CMD = framecrc -i $(TARGET_SAMPLES)/ea-mad/xeasport.mad -vn -af aresample -FATE_SAMPLES_PCM-$(call DEMDEC, MOV, PCM_S16BE) += fate-pcm_s16be-stereo +FATE_SAMPLES_PCM-$(call DEMDEC, MOV, PCM_S16BE, PCM_S16LE_MUXER) += fate-pcm_s16be-stereo fate-pcm_s16be-stereo: CMD = md5 -i $(TARGET_SAMPLES)/qt-surge-suite/surge-2-16-B-twos.mov -f s16le -FATE_SAMPLES_PCM-$(call DEMDEC, MOV, PCM_S16LE) += fate-pcm_s16le-stereo +FATE_SAMPLES_PCM-$(call TRANSCODE, PCM_S16LE, PCM_S16LE MOV) += fate-pcm_s16le-stereo fate-pcm_s16le-stereo: CMD = md5 -i $(TARGET_SAMPLES)/qt-surge-suite/surge-2-16-L-sowt.mov -f s16le -FATE_SAMPLES_PCM-$(call DEMDEC, MOV, PCM_U8, ARESAMPLE_FILTER) += fate-pcm_u8-mono +FATE_SAMPLES_PCM-$(call TRANSCODE, PCM_S16LE PCM_U8, PCM_S16LE MOV, ARESAMPLE_FILTER) += fate-pcm_u8-mono fate-pcm_u8-mono: CMD = md5 -i $(TARGET_SAMPLES)/qt-surge-suite/surge-1-8-raw.mov -f s16le -af aresample -FATE_SAMPLES_PCM-$(call DEMDEC, MOV, PCM_U8, ARESAMPLE_FILTER) += fate-pcm_u8-stereo +FATE_SAMPLES_PCM-$(call TRANSCODE, PCM_S16LE PCM_U8, PCM_S16LE MOV, ARESAMPLE_FILTER) += fate-pcm_u8-stereo fate-pcm_u8-stereo: CMD = md5 -i $(TARGET_SAMPLES)/qt-surge-suite/surge-2-8-raw.mov -f s16le -af aresample FATE_SAMPLES_PCM-$(call DEMDEC, W64, PCM_S16LE) += fate-w64 fate-w64: CMD = crc -i $(TARGET_SAMPLES)/w64/w64-pcm16.w64 -FATE_PCM-$(call ENCMUX, PCM_S24DAUD, DAUD) += fate-dcinema-encode +FATE_PCM-$(call ENCMUX, PCM_S24DAUD, DAUD, WAV_DEMUXER) += fate-dcinema-encode fate-dcinema-encode: tests/data/asynth-96000-6.wav fate-dcinema-encode: SRC = tests/data/asynth-96000-6.wav fate-dcinema-encode: CMD = enc_dec_pcm daud framemd5 s16le $(SRC) -c:a pcm_s24daud -frames:a 20 -- 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".
next prev parent reply other threads:[~2025-06-30 16:12 UTC|newest] Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top 2025-06-30 16:08 [FFmpeg-devel] [PATCH v3 00/21] fate: fix several dependencies Nicolas Gaullier 2025-06-30 16:08 ` [FFmpeg-devel] [PATCH v3 01/21] tests/Makefile: make easier to check for multiple dependencies Nicolas Gaullier 2025-06-30 16:08 ` [FFmpeg-devel] [PATCH v3 02/21] fate/all: add missing dependencies for extradata bsf Nicolas Gaullier 2025-06-30 16:08 ` [FFmpeg-devel] [PATCH v3 03/21] fate/demux: fix multiple dependencies Nicolas Gaullier 2025-06-30 16:08 ` [FFmpeg-devel] [PATCH v3 04/21] fate/all: switch-fix mov muxer dependency to mp4 muxer dependency Nicolas Gaullier 2025-06-30 16:08 ` [FFmpeg-devel] [PATCH v3 05/21] fate/mov: fix multiple dependencies Nicolas Gaullier 2025-06-30 16:08 ` [FFmpeg-devel] [PATCH v3 06/21] fate/gapless: " Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 07/21] fate/lavf-container: " Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 08/21] fate/vorbis: " Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 09/21] fate/aac: " Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 10/21] fate/audio: " Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 11/21] fate/ac3: " Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 12/21] fate/cover-art: " Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 13/21] fate/hlsenc: " Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 14/21] fate/mpeg4: " Nicolas Gaullier 2025-06-30 16:09 ` Nicolas Gaullier [this message] 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 16/21] fate/hevc: " Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 17/21] fate/all: " Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 18/21] fate/all: add missing file protocol dependencies Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 19/21] fate/all: add missing crc/framecrc/md5/framemd5/pipe dependencies Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 20/21] fate/all: fix missing some mov demuxer dependencies Nicolas Gaullier 2025-06-30 16:09 ` [FFmpeg-devel] [PATCH v3 21/21] fate/seek: fix missing mpeg4video parser dependency 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=20250630160923.3678492-16-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