diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-04-16 22:42:53 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-04-20 10:23:57 -0400 |
commit | 03caef1bedf3b31d933cc32c3f3b44c598fdeb21 (patch) | |
tree | 4c4f252af2bb25d01f457ac076214e73e5bcaf62 /tests/fate | |
parent | a6c8cca2a82c8cd9ffdaaa2af8b922b15ab035a7 (diff) | |
download | ffmpeg-03caef1bedf3b31d933cc32c3f3b44c598fdeb21.tar.gz |
FATE: replace the acodec-g726 test with 4 new encode/decode tests
Avoids resampling and channel mixing. This only tests the behavior
with respect to input and output audio rather than also testing changes
to the encoder or muxer that do not affect the resulting decoded output.
Diffstat (limited to 'tests/fate')
-rw-r--r-- | tests/fate/voice.mak | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/fate/voice.mak b/tests/fate/voice.mak index 8e5f86b083..73534afa91 100644 --- a/tests/fate/voice.mak +++ b/tests/fate/voice.mak @@ -9,6 +9,29 @@ fate-g722-encode: CMD = enc_dec_pcm wav md5 s16le $(SRC) -c:a g722 FATE_TESTS += $(FATE_G722) fate-g722: $(FATE_G722) +FATE_G726 += fate-g726-encode-2bit +fate-g726-encode-2bit: tests/data/asynth-8000-1.wav +fate-g726-encode-2bit: SRC = tests/data/asynth-8000-1.wav +fate-g726-encode-2bit: CMD = enc_dec_pcm wav md5 s16le $(SRC) -c:a g726 -b:a 16k + +FATE_G726 += fate-g726-encode-3bit +fate-g726-encode-3bit: tests/data/asynth-8000-1.wav +fate-g726-encode-3bit: SRC = tests/data/asynth-8000-1.wav +fate-g726-encode-3bit: CMD = enc_dec_pcm wav md5 s16le $(SRC) -c:a g726 -b:a 24k + +FATE_G726 += fate-g726-encode-4bit +fate-g726-encode-4bit: tests/data/asynth-8000-1.wav +fate-g726-encode-4bit: SRC = tests/data/asynth-8000-1.wav +fate-g726-encode-4bit: CMD = enc_dec_pcm wav md5 s16le $(SRC) -c:a g726 -b:a 32k + +FATE_G726 += fate-g726-encode-5bit +fate-g726-encode-5bit: tests/data/asynth-8000-1.wav +fate-g726-encode-5bit: SRC = tests/data/asynth-8000-1.wav +fate-g726-encode-5bit: CMD = enc_dec_pcm wav md5 s16le $(SRC) -c:a g726 -b:a 40k + +FATE_TESTS += $(FATE_G726) +fate-g726: $(FATE_G726) + FATE_GSM += fate-gsm-ms fate-gsm-ms: CMD = framecrc -i $(SAMPLES)/gsm/ciao.wav |