From: James Almer <jamrial@gmail.com> To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] [PATCH 21/26] fate/pcm: add missing aresample filter dependency Date: Thu, 14 Mar 2024 20:00:58 -0300 Message-ID: <20240314230104.19624-21-jamrial@gmail.com> (raw) In-Reply-To: <20240314230104.19624-1-jamrial@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com> --- tests/fate/pcm.mak | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/fate/pcm.mak b/tests/fate/pcm.mak index 4e79fc7c41..b10233a9eb 100644 --- a/tests/fate/pcm.mak +++ b/tests/fate/pcm.mak @@ -1,10 +1,10 @@ -FATE_SAMPLES_PCM-$(call DEMDEC, WAV, PCM_U8) += fate-iff-pcm +FATE_SAMPLES_PCM-$(call DEMDEC, WAV, PCM_U8, 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) += fate-pcm_dvd +FATE_SAMPLES_PCM-$(call DEMDEC, MPEGPS, PCM_DVD, ARESAMPLE_FILTER) += fate-pcm_dvd fate-pcm_dvd: CMD = framecrc -i $(TARGET_SAMPLES)/pcm-dvd/coolitnow-partial.vob -vn -af aresample -FATE_SAMPLES_PCM-$(call DEMDEC, EA, PCM_S16LE_PLANAR) += fate-pcm-planar +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 @@ -13,10 +13,10 @@ fate-pcm_s16be-stereo: CMD = md5 -i $(TARGET_SAMPLES)/qt-surge-suite/surge-2-16- FATE_SAMPLES_PCM-$(call DEMDEC, MOV, PCM_S16LE) += 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) += fate-pcm_u8-mono +FATE_SAMPLES_PCM-$(call DEMDEC, MOV, PCM_U8, 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) += fate-pcm_u8-stereo +FATE_SAMPLES_PCM-$(call DEMDEC, MOV, PCM_U8, 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 -- 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:04 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 ` [FFmpeg-devel] [PATCH 14/26] fate/iamf: " James Almer 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 ` James Almer [this message] 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-21-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