diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-04-10 21:29:31 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-04-10 21:29:31 +0000 |
commit | 67cbe68129a617b7befc3539325db097b1fec679 (patch) | |
tree | 28c848ab136acc763da7d814053a14cd91085e24 /tests/Makefile | |
parent | 9680a722822241c18ca1049e55bef0feb69eb6fe (diff) | |
download | ffmpeg-67cbe68129a617b7befc3539325db097b1fec679.tar.gz |
check quality too, not only md5 (but dont take the scores too serious, the different codecs use different quality/bitrates and its just based on a artificially generated testvideo)
small changes to some test to check a broader area of features
Originally committed as revision 1751 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index 23032472d7..13c16b81b7 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -19,7 +19,7 @@ test-server: vsynth1/0.pgm asynth1.sw @$(SRC_PATH)/tests/server-regression.sh $(SERVER_REFFILE) # fast regression tests for all codecs -test mpeg4 mpeg: vsynth1/0.pgm asynth1.sw +test mpeg4 mpeg: vsynth1/0.pgm asynth1.sw tiny_psnr @$(SRC_PATH)/tests/regression.sh $@ $(REFFILE) || true # fast regression for libav formats @@ -43,6 +43,9 @@ asynth1.sw: audiogen audiogen: audiogen.c $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< +tiny_psnr: tiny_psnr.c + $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< + DSPDEPS = $(SRC_PATH)/libavcodec/i386/dsputil_mmx.c \ $(SRC_PATH)/libavcodec/i386/dsputil_mmx_avg.h \ $(SRC_PATH)/libavcodec/i386/dsputil_mmx_rnd.h \ |