mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-23 15:53:08 +00:00
53253a0b83
One rule can be used to generate all asynth files. Requires renaming the mapchan files though. Also switch to using the .wav variants for mapchan while changing the name anyway, this allows getting rid of the explicitly specified format. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
15 lines
815 B
Makefile
15 lines
815 B
Makefile
FATE_MAPCHAN += fate-mapchan-6ch-extract-2
|
|
fate-mapchan-6ch-extract-2: tests/data/asynth-22050-6.wav
|
|
fate-mapchan-6ch-extract-2: CMD = avconv -i $(TARGET_PATH)/tests/data/asynth-22050-6.wav -map_channel 0.0.0 -f wav md5: -map_channel 0.0.1 -f wav md5:
|
|
|
|
FATE_MAPCHAN += fate-mapchan-6ch-extract-2-downmix-mono
|
|
fate-mapchan-6ch-extract-2-downmix-mono: tests/data/asynth-22050-6.wav
|
|
fate-mapchan-6ch-extract-2-downmix-mono: CMD = md5 -i $(TARGET_PATH)/tests/data/asynth-22050-6.wav -map_channel 0.0.1 -map_channel 0.0.0 -ac 1 -f wav
|
|
|
|
FATE_MAPCHAN += fate-mapchan-silent-mono
|
|
fate-mapchan-silent-mono: tests/data/asynth-22050-1.wav
|
|
fate-mapchan-silent-mono: CMD = md5 -i $(TARGET_PATH)/tests/data/asynth-22050-1.wav -map_channel -1 -map_channel 0.0.0 -f wav
|
|
|
|
FATE_TESTS += $(FATE_MAPCHAN)
|
|
fate-mapchan: $(FATE_MAPCHAN)
|