diff options
author | Martin Storsjö <martin@martin.st> | 2013-05-20 01:55:32 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-05-28 17:16:54 +0300 |
commit | ba13606ca6adbc74b4db4a72b0769397d6408791 (patch) | |
tree | 63b8fb4e9156c09aebcf826f16bd6de4311dd839 /tests/fate/flac.mak | |
parent | 4a27a52a1f74016095b7aee1b4a422cf62217ade (diff) | |
download | ffmpeg-ba13606ca6adbc74b4db4a72b0769397d6408791.tar.gz |
fate: Add a --target-samples path parameter
This allows having the samples accessible via different paths
on the target and on the host.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'tests/fate/flac.mak')
-rw-r--r-- | tests/fate/flac.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fate/flac.mak b/tests/fate/flac.mak index 92eb7430db..e28f45f82f 100644 --- a/tests/fate/flac.mak +++ b/tests/fate/flac.mak @@ -12,12 +12,12 @@ 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 $(REF) -c flac $(OPTS) +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 $(REF) -c flac $(OPTS) +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 |