* commit 'ba13606ca6':
fate: Add a --target-samples path parameter
Conflicts:
configure
tests/fate/audio.mak
tests/fate/cover-art.mak
tests/fate/demux.mak
tests/fate/ea.mak
tests/fate/filter-video.mak
tests/fate/h264.mak
tests/fate/image.mak
tests/fate/lossless-audio.mak
tests/fate/lossless-video.mak
tests/fate/microsoft.mak
tests/fate/pcm.mak
tests/fate/prores.mak
tests/fate/qt.mak
tests/fate/real.mak
tests/fate/screen.mak
tests/fate/video.mak
tests/fate/voice.mak
tests/fate/vpx.mak
tests/fate/vqf.mak
Merged-by: Michael Niedermayer <michaelni@gmx.at>
28 lines
1.4 KiB
Makefile
28 lines
1.4 KiB
Makefile
FATE_FLAC += fate-flac-16-chmode-indep \
|
|
fate-flac-16-chmode-left_side \
|
|
fate-flac-16-chmode-mid_side \
|
|
fate-flac-16-chmode-right_side \
|
|
fate-flac-16-fixed \
|
|
fate-flac-16-lpc-cholesky \
|
|
fate-flac-16-lpc-levinson \
|
|
fate-flac-24-comp-8 \
|
|
|
|
fate-flac-16-chmode-%: OPTS = -ch_mode $(@:fate-flac-16-chmode-%=%)
|
|
fate-flac-16-fixed: OPTS = -lpc_type fixed
|
|
fate-flac-16-lpc-%: OPTS = -lpc_type $(@:fate-flac-16-lpc-%=%)
|
|
|
|
fate-flac-16-%: REF = $(SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav
|
|
fate-flac-16-%: CMD = enc_dec_pcm flac wav s16le $(subst $(SAMPLES),$(TARGET_SAMPLES),$(REF)) -c flac $(OPTS)
|
|
|
|
fate-flac-24-comp-%: OPTS = -compression_level $(@:fate-flac-24-comp-%=%)
|
|
|
|
fate-flac-24-%: REF = $(SAMPLES)/audio-reference/divertimenti_2ch_96kHz_s24.wav
|
|
fate-flac-24-%: CMD = enc_dec_pcm flac wav s24le $(subst $(SAMPLES),$(TARGET_SAMPLES),$(REF)) -c flac $(OPTS)
|
|
|
|
fate-flac-%: CMP = oneoff
|
|
fate-flac-%: FUZZ = 0
|
|
|
|
FATE_FLAC-$(call ENCMUX, FLAC, FLAC) += $(FATE_FLAC)
|
|
|
|
FATE_SAMPLES_AVCONV += $(FATE_FLAC-yes)
|
|
fate-flac: $(FATE_FLAC)
|