diff --git a/tests/Makefile b/tests/Makefile index 2a99199cb3ae5493c194929231a9c9084f87f556..d58505a51f210fbb43dd6459cf64486f717cfc4c 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -3,6 +3,8 @@ FFSERVER_REFFILE = $(SRC_PATH)/tests/ffserver.regression.ref VREF = tests/vsynth1/00.pgm AREF = tests/data/asynth1.sw +FATEW = 34 +FATEH = 34 $(AREF): CMP= @@ -30,6 +32,9 @@ tests/data/vsynth1.yuv: tests/videogen$(HOSTEXESUF) | tests/data tests/data/vsynth2.yuv: tests/rotozoom$(HOSTEXESUF) | tests/data $(M)$< $(SRC_PATH)/tests/lena.pnm $@ +tests/data/vsynth3.yuv: tests/videogen$(HOSTEXESUF) | tests/data + $(M)$< $@ $(FATEW) $(FATEH) + tests/data/ffprobe-test.nut: ffmpeg$(EXESUF) | tests/data $(M)$(TARGET_EXEC) ./$< \ -f lavfi -i "aevalsrc=sin(400*PI*2*t):d=0.125[out0]; testsrc=d=0.125[out1]; testsrc=s=100x100:d=0.125[out2]" \ diff --git a/tests/fate/vcodec.mak b/tests/fate/vcodec.mak index 541cba1bf2d9e1b34a3746b82ad9aebfb5f0cff6..cce77fd25d263e7af5bac0b3bc4600f2acbe7583 100644 --- a/tests/fate/vcodec.mak +++ b/tests/fate/vcodec.mak @@ -1,12 +1,15 @@ fate-vsynth1-%: SRC = tests/data/vsynth1.yuv fate-vsynth2-%: SRC = tests/data/vsynth2.yuv +fate-vsynth3-%: SRC = tests/data/vsynth3.yuv fate-vsynth%: CODEC = $(word 3, $(subst -, ,$(@))) fate-vsynth%: FMT = avi fate-vsynth%: CMD = enc_dec "rawvideo -s 352x288 -pix_fmt yuv420p $(RAWDECOPTS)" $(SRC) $(FMT) "-c $(CODEC) $(ENCOPTS)" rawvideo "-s 352x288 -pix_fmt yuv420p -vsync 0 $(DECOPTS)" -keep "$(DECINOPTS)" +fate-vsynth3-%: CMD = enc_dec "rawvideo -s $(FATEW)x$(FATEH) -pix_fmt yuv420p $(RAWDECOPTS)" $(SRC) $(FMT) "-c $(CODEC) $(ENCOPTS)" rawvideo "-s $(FATEW)x$(FATEH) -pix_fmt yuv420p -vsync 0 $(DECOPTS)" -keep "$(DECINOPTS)" fate-vsynth%: CMP_UNIT = 1 fate-vsynth%: REF = $(SRC_PATH)/tests/ref/vsynth/$(@:fate-%=%) FATE_VCODEC-$(call ENCDEC, AMV, AVI) += amv +fate-vsynth%-amv: ENCOPTS = -strict -1 FATE_VCODEC-$(call ENCDEC, ASV1, AVI) += asv1 fate-vsynth%-asv1: ENCOPTS = -qscale 10 @@ -15,6 +18,7 @@ FATE_VCODEC-$(call ENCDEC, ASV2, AVI) += asv2 fate-vsynth%-asv2: ENCOPTS = -qscale 10 FATE_VCODEC-$(call ENCDEC, CLJR, AVI) += cljr +fate-vsynth%-cljr: ENCOPTS = -strict -1 FATE_VCODEC-$(call ENCDEC, DNXHD, DNXHD) += dnxhd-720p \ dnxhd-720p-rd \ @@ -295,12 +299,24 @@ FATE_VCODEC-$(call ENCDEC, ZLIB, AVI) += zlib FATE_VCODEC += $(FATE_VCODEC-yes) FATE_VSYNTH1 = $(FATE_VCODEC:%=fate-vsynth1-%) FATE_VSYNTH2 = $(FATE_VCODEC:%=fate-vsynth2-%) +# Redundant tests because they just resize the input +RESIZE_OFF = dnxhd-720p dnxhd-720p-rd dnxhd-720p-10bit dnxhd-1080i \ + dv dv-411 dv-50 avui snow snow-hpel snow-ll +# Incorrect parameters - usually size or color format restrictions +INC_PAR_OFF = h261 h261-trellis h263 h263p h263-obmc msvideo1 \ + roqvideo rv10 rv20 y41p +VSYNTH3_OFF = $(RESIZE_OFF) $(INC_PAR_OFF) + +FATE_VCODEC3 = $(filter-out $(VSYNTH3_OFF),$(FATE_VCODEC)) +FATE_VSYNTH3 = $(FATE_VCODEC3:%=fate-vsynth3-%) $(FATE_VSYNTH1): tests/data/vsynth1.yuv $(FATE_VSYNTH2): tests/data/vsynth2.yuv +$(FATE_VSYNTH3): tests/data/vsynth3.yuv -FATE_AVCONV += $(FATE_VSYNTH1) $(FATE_VSYNTH2) +FATE_AVCONV += $(FATE_VSYNTH1) $(FATE_VSYNTH2) $(FATE_VSYNTH3) fate-vsynth1: $(FATE_VSYNTH1) fate-vsynth2: $(FATE_VSYNTH2) -fate-vcodec: fate-vsynth1 fate-vsynth2 +fate-vsynth3: $(FATE_VSYNTH3) +fate-vcodec: fate-vsynth1 fate-vsynth2 fate-vsynth3 diff --git a/tests/ref/vsynth/vsynth3-amv b/tests/ref/vsynth/vsynth3-amv new file mode 100644 index 0000000000000000000000000000000000000000..bbfba3e6867f58d3cd948f92fba7e1f170fdfe8b --- /dev/null +++ b/tests/ref/vsynth/vsynth3-amv @@ -0,0 +1,4 @@ +4d0844cd148bd9fa8155b72cc4a6e991 *tests/data/fate/vsynth3-amv.avi +33928 tests/data/fate/vsynth3-amv.avi +f916c620790a9cf2674391610985ae27 *tests/data/fate/vsynth3-amv.out.rawvideo +stddev: 11.58 PSNR: 26.85 MAXDIFF: 89 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-asv1 b/tests/ref/vsynth/vsynth3-asv1 new file mode 100644 index 0000000000000000000000000000000000000000..fd5f82dc69a65845e715a497d47206c9aa628d5c --- /dev/null +++ b/tests/ref/vsynth/vsynth3-asv1 @@ -0,0 +1,4 @@ +43c51aa52666de02dfa49fd1c10a558f *tests/data/fate/vsynth3-asv1.avi +36664 tests/data/fate/vsynth3-asv1.avi +fd156079afc2753dde7d6a8418b2a25a *tests/data/fate/vsynth3-asv1.out.rawvideo +stddev: 21.25 PSNR: 21.58 MAXDIFF: 122 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-asv2 b/tests/ref/vsynth/vsynth3-asv2 new file mode 100644 index 0000000000000000000000000000000000000000..360bb072037afdb9e00d544f95a763c41f9ce6a8 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-asv2 @@ -0,0 +1,4 @@ +8958facfc4853267ece3b7868df80229 *tests/data/fate/vsynth3-asv2.avi +35620 tests/data/fate/vsynth3-asv2.avi +ff711d6341966f03ee32b73ae22493ed *tests/data/fate/vsynth3-asv2.out.rawvideo +stddev: 19.98 PSNR: 22.12 MAXDIFF: 113 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-cljr b/tests/ref/vsynth/vsynth3-cljr new file mode 100644 index 0000000000000000000000000000000000000000..9a2daa4b7afdd236b2192f6afebda4ac7cfb500c --- /dev/null +++ b/tests/ref/vsynth/vsynth3-cljr @@ -0,0 +1,4 @@ +c05ee9983a4f8fe62d7270507a87655b *tests/data/fate/vsynth3-cljr.avi +68048 tests/data/fate/vsynth3-cljr.avi +ac4c80dda332b6311beb1e8f723c13ca *tests/data/fate/vsynth3-cljr.out.rawvideo +stddev: 7.51 PSNR: 30.61 MAXDIFF: 84 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-ffv1 b/tests/ref/vsynth/vsynth3-ffv1 new file mode 100644 index 0000000000000000000000000000000000000000..cdd011a592c35412f132b7811ea0d4d0ac525be6 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-ffv1 @@ -0,0 +1,4 @@ +b781c01d152c5a040ee71b2421b6d8e6 *tests/data/fate/vsynth3-ffv1.avi +62190 tests/data/fate/vsynth3-ffv1.avi +a038ad7c3c09f776304ef7accdea9c74 *tests/data/fate/vsynth3-ffv1.out.rawvideo +stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-ffv1.0 b/tests/ref/vsynth/vsynth3-ffv1.0 new file mode 100644 index 0000000000000000000000000000000000000000..6e2c4e071c140f976d832516809f89ce75faf396 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-ffv1.0 @@ -0,0 +1,4 @@ +aa9187b44d9d8ff4d0ac7b9c5301830c *tests/data/fate/vsynth3-ffv1.0.avi +52252 tests/data/fate/vsynth3-ffv1.0.avi +a038ad7c3c09f776304ef7accdea9c74 *tests/data/fate/vsynth3-ffv1.0.out.rawvideo +stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-ffvhuff b/tests/ref/vsynth/vsynth3-ffvhuff new file mode 100644 index 0000000000000000000000000000000000000000..dbf14a4b76f17fdbb0b20c2b171378dc1e0222f4 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-ffvhuff @@ -0,0 +1,4 @@ +8cec39ed9e4719726478ab494a16dd4b *tests/data/fate/vsynth3-ffvhuff.avi +78040 tests/data/fate/vsynth3-ffvhuff.avi +a038ad7c3c09f776304ef7accdea9c74 *tests/data/fate/vsynth3-ffvhuff.out.rawvideo +stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-ffvhuff420p12 b/tests/ref/vsynth/vsynth3-ffvhuff420p12 new file mode 100644 index 0000000000000000000000000000000000000000..bf0818a88735cb6408369602f09e37161f09a79c --- /dev/null +++ b/tests/ref/vsynth/vsynth3-ffvhuff420p12 @@ -0,0 +1,4 @@ +1ed94434195408cba4ee9f0e7de482e8 *tests/data/fate/vsynth3-ffvhuff420p12.avi +124866 tests/data/fate/vsynth3-ffvhuff420p12.avi +eb1a8ff2c33ba5145b5a89727ee5dcb8 *tests/data/fate/vsynth3-ffvhuff420p12.out.rawvideo +stddev: 46.89 PSNR: 14.71 MAXDIFF: 239 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-ffvhuff422p10left b/tests/ref/vsynth/vsynth3-ffvhuff422p10left new file mode 100644 index 0000000000000000000000000000000000000000..abebb55a919e7f01807eaf2d1881ee425ac8c039 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-ffvhuff422p10left @@ -0,0 +1,4 @@ +dcd4a5cae84b4ab0b376824772e3ad2b *tests/data/fate/vsynth3-ffvhuff422p10left.avi +127832 tests/data/fate/vsynth3-ffvhuff422p10left.avi +863818eed035b3fa7b19535927687879 *tests/data/fate/vsynth3-ffvhuff422p10left.out.rawvideo +stddev: 38.45 PSNR: 16.43 MAXDIFF: 225 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-ffvhuff444 b/tests/ref/vsynth/vsynth3-ffvhuff444 new file mode 100644 index 0000000000000000000000000000000000000000..cd9a531a9c0283819f543e5a968170be972109b7 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-ffvhuff444 @@ -0,0 +1,4 @@ +31efbb2ddfe03d625f809156240dd0ef *tests/data/fate/vsynth3-ffvhuff444.avi +137588 tests/data/fate/vsynth3-ffvhuff444.avi +02a85ec07377df6b483281038f8882ee *tests/data/fate/vsynth3-ffvhuff444.out.rawvideo +stddev: 3.06 PSNR: 38.40 MAXDIFF: 40 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-ffvhuff444p16 b/tests/ref/vsynth/vsynth3-ffvhuff444p16 new file mode 100644 index 0000000000000000000000000000000000000000..bb9666ab56f89cbf4effabfa05337ec595a3999a --- /dev/null +++ b/tests/ref/vsynth/vsynth3-ffvhuff444p16 @@ -0,0 +1,4 @@ +9a534fb2a739bdf572572867d16b2343 *tests/data/fate/vsynth3-ffvhuff444p16.avi +258130 tests/data/fate/vsynth3-ffvhuff444p16.avi +e5933e1e6dbacddb78e6d90cd5ed2b5d *tests/data/fate/vsynth3-ffvhuff444p16.out.rawvideo +stddev: 3.06 PSNR: 38.40 MAXDIFF: 40 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-flashsv b/tests/ref/vsynth/vsynth3-flashsv new file mode 100644 index 0000000000000000000000000000000000000000..38a34bd71d2f0633aaf67c82efb21f7c60b57278 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-flashsv @@ -0,0 +1,4 @@ +832fe60169f4d91339458c60a5292924 *tests/data/fate/vsynth3-flashsv.flv +171419 tests/data/fate/vsynth3-flashsv.flv +faa660b0ecaaab1bf9b5d7284019aa01 *tests/data/fate/vsynth3-flashsv.out.rawvideo +stddev: 2.97 PSNR: 38.67 MAXDIFF: 49 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-flashsv2 b/tests/ref/vsynth/vsynth3-flashsv2 new file mode 100644 index 0000000000000000000000000000000000000000..31d0d3f2be198c218b41c9ceb2f84822db851417 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-flashsv2 @@ -0,0 +1,4 @@ +ba57c9555329e60250905def79fe6257 *tests/data/fate/vsynth3-flashsv2.flv +107956 tests/data/fate/vsynth3-flashsv2.flv +fb6b5134561d86fc05ccce9323553b80 *tests/data/fate/vsynth3-flashsv2.out.rawvideo +stddev: 3.62 PSNR: 36.95 MAXDIFF: 49 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-flv b/tests/ref/vsynth/vsynth3-flv new file mode 100644 index 0000000000000000000000000000000000000000..7abe2b54c4e637d15e118189517cd7fdaa305183 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-flv @@ -0,0 +1,4 @@ +c36dbc8109d1ceed68bd5590084eb375 *tests/data/fate/vsynth3-flv.flv +28496 tests/data/fate/vsynth3-flv.flv +b82944d78d1ee68a36d01933c9602520 *tests/data/fate/vsynth3-flv.out.rawvideo +stddev: 9.71 PSNR: 28.38 MAXDIFF: 86 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-huffyuv b/tests/ref/vsynth/vsynth3-huffyuv new file mode 100644 index 0000000000000000000000000000000000000000..7040c7c0c4e003e0b2e4f25787e0697192748d67 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-huffyuv @@ -0,0 +1,4 @@ +71353e66bb02b860c048cd438d0bc80f *tests/data/fate/vsynth3-huffyuv.avi +101484 tests/data/fate/vsynth3-huffyuv.avi +a038ad7c3c09f776304ef7accdea9c74 *tests/data/fate/vsynth3-huffyuv.out.rawvideo +stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-jpeg2000 b/tests/ref/vsynth/vsynth3-jpeg2000 new file mode 100644 index 0000000000000000000000000000000000000000..6b5f110fcf8493fe69acdfb2807c2819a1757a2a --- /dev/null +++ b/tests/ref/vsynth/vsynth3-jpeg2000 @@ -0,0 +1,4 @@ +1c49dca7b2d828b9a551bf66f3324f3d *tests/data/fate/vsynth3-jpeg2000.avi +63768 tests/data/fate/vsynth3-jpeg2000.avi +11b954cc1b0091399fa4342a6bb432b2 *tests/data/fate/vsynth3-jpeg2000.out.rawvideo +stddev: 5.50 PSNR: 33.31 MAXDIFF: 48 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-jpeg2000-97 b/tests/ref/vsynth/vsynth3-jpeg2000-97 new file mode 100644 index 0000000000000000000000000000000000000000..1087241da40efa187013906ebb1e2609932de9a8 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-jpeg2000-97 @@ -0,0 +1,4 @@ +9ce2c4690cbc85aae9e9e5227e74eb94 *tests/data/fate/vsynth3-jpeg2000-97.avi +65360 tests/data/fate/vsynth3-jpeg2000-97.avi +f9dad7a31175e400ca35de60aec826fd *tests/data/fate/vsynth3-jpeg2000-97.out.rawvideo +stddev: 6.27 PSNR: 32.17 MAXDIFF: 52 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-jpegls b/tests/ref/vsynth/vsynth3-jpegls new file mode 100644 index 0000000000000000000000000000000000000000..b03537342f8c22871e5cfd9f968ad734f2bbbd8b --- /dev/null +++ b/tests/ref/vsynth/vsynth3-jpegls @@ -0,0 +1,4 @@ +13bf416e04554609ddc2830912ff1d89 *tests/data/fate/vsynth3-jpegls.avi +133164 tests/data/fate/vsynth3-jpegls.avi +faa660b0ecaaab1bf9b5d7284019aa01 *tests/data/fate/vsynth3-jpegls.out.rawvideo +stddev: 2.97 PSNR: 38.67 MAXDIFF: 49 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-ljpeg b/tests/ref/vsynth/vsynth3-ljpeg new file mode 100644 index 0000000000000000000000000000000000000000..47db0c1d301c04dab1e276e4a00ee23cef2a56e6 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-ljpeg @@ -0,0 +1,4 @@ +39cd774ffe47c804f2f58d5bbcf7b0a5 *tests/data/fate/vsynth3-ljpeg.avi +105840 tests/data/fate/vsynth3-ljpeg.avi +a038ad7c3c09f776304ef7accdea9c74 *tests/data/fate/vsynth3-ljpeg.out.rawvideo +stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mjpeg b/tests/ref/vsynth/vsynth3-mjpeg new file mode 100644 index 0000000000000000000000000000000000000000..25036c8d545ed2802586a69c3b34799d5c7681d1 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mjpeg @@ -0,0 +1,4 @@ +cf68ecc19e6c07d2a0c211e6ad1e3d9f *tests/data/fate/vsynth3-mjpeg.avi +64804 tests/data/fate/vsynth3-mjpeg.avi +c4fe7a2669afbd96c640748693fc4e30 *tests/data/fate/vsynth3-mjpeg.out.rawvideo +stddev: 8.60 PSNR: 29.43 MAXDIFF: 58 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mjpeg-422 b/tests/ref/vsynth/vsynth3-mjpeg-422 new file mode 100644 index 0000000000000000000000000000000000000000..23c58bbcbc6417da3bcc4b0cb8ecf9934effcfb9 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mjpeg-422 @@ -0,0 +1,4 @@ +c1f42031676078a7cfc38a7eb53c89e8 *tests/data/fate/vsynth3-mjpeg-422.avi +69458 tests/data/fate/vsynth3-mjpeg-422.avi +a332893cb0603f2f505fe5d3bf105519 *tests/data/fate/vsynth3-mjpeg-422.out.rawvideo +stddev: 8.23 PSNR: 29.82 MAXDIFF: 58 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mjpeg-444 b/tests/ref/vsynth/vsynth3-mjpeg-444 new file mode 100644 index 0000000000000000000000000000000000000000..d17df66eb35ae2b283ee3be958f0eea5658fd7ed --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mjpeg-444 @@ -0,0 +1,4 @@ +893c830a9635aaf686f53372cbe5e0ed *tests/data/fate/vsynth3-mjpeg-444.avi +70584 tests/data/fate/vsynth3-mjpeg-444.avi +79a901f2ed85d82cf1c674fab3d3ef72 *tests/data/fate/vsynth3-mjpeg-444.out.rawvideo +stddev: 8.21 PSNR: 29.84 MAXDIFF: 58 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg1 b/tests/ref/vsynth/vsynth3-mpeg1 new file mode 100644 index 0000000000000000000000000000000000000000..7a3b484d6f8bc87a7663f5e8d935feedf7dca05f --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg1 @@ -0,0 +1,4 @@ +972ddac6afa89f1344d02b25542fc469 *tests/data/fate/vsynth3-mpeg1.mpeg1video +28028 tests/data/fate/vsynth3-mpeg1.mpeg1video +bffc40252da80b55302666b0046468c2 *tests/data/fate/vsynth3-mpeg1.out.rawvideo +stddev: 9.10 PSNR: 28.94 MAXDIFF: 63 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg1b b/tests/ref/vsynth/vsynth3-mpeg1b new file mode 100644 index 0000000000000000000000000000000000000000..adfa4188752078493eeb5a6d9146cda3a05bdf89 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg1b @@ -0,0 +1,4 @@ +a2e36336e35f9466c883ade059c6485e *tests/data/fate/vsynth3-mpeg1b.mpeg1video +38251 tests/data/fate/vsynth3-mpeg1b.mpeg1video +c44023d27be27deb7f3793321655ca75 *tests/data/fate/vsynth3-mpeg1b.out.rawvideo +stddev: 7.00 PSNR: 31.22 MAXDIFF: 56 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg2 b/tests/ref/vsynth/vsynth3-mpeg2 new file mode 100644 index 0000000000000000000000000000000000000000..d2e5b9fffcb8eb0f4d4f283423ccdb2fa332df71 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg2 @@ -0,0 +1,4 @@ +d95da92e3e77e32e3766ed9a95241f98 *tests/data/fate/vsynth3-mpeg2.mpeg2video +29567 tests/data/fate/vsynth3-mpeg2.mpeg2video +1df6a406c3959c6de7651b4e4fd98a36 *tests/data/fate/vsynth3-mpeg2.out.rawvideo +stddev: 9.12 PSNR: 28.93 MAXDIFF: 63 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg2-422 b/tests/ref/vsynth/vsynth3-mpeg2-422 new file mode 100644 index 0000000000000000000000000000000000000000..521aa1f9f87501dc856f86fbb359b6c745efed09 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg2-422 @@ -0,0 +1,4 @@ +6126aef5d72f25defd5ebf5154123fb2 *tests/data/fate/vsynth3-mpeg2-422.mpeg2video +68916 tests/data/fate/vsynth3-mpeg2-422.mpeg2video +9b434cef28b4f418b20b7e3a09a7a082 *tests/data/fate/vsynth3-mpeg2-422.out.rawvideo +stddev: 4.01 PSNR: 36.06 MAXDIFF: 46 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg2-idct-int b/tests/ref/vsynth/vsynth3-mpeg2-idct-int new file mode 100644 index 0000000000000000000000000000000000000000..3b2f714654470bf018a7113c6f4ac3ee986766aa --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg2-idct-int @@ -0,0 +1,4 @@ +e79b543bed136bca385b2a870d532870 *tests/data/fate/vsynth3-mpeg2-idct-int.mpeg2video +29614 tests/data/fate/vsynth3-mpeg2-idct-int.mpeg2video +aebaf03348e2e114d9f487101f61fe3d *tests/data/fate/vsynth3-mpeg2-idct-int.out.rawvideo +stddev: 9.10 PSNR: 28.94 MAXDIFF: 65 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg2-ilace b/tests/ref/vsynth/vsynth3-mpeg2-ilace new file mode 100644 index 0000000000000000000000000000000000000000..10979077806deb1423bbd159e53d811f3d219776 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg2-ilace @@ -0,0 +1,4 @@ +7aafb678757a42197e2da7061262b588 *tests/data/fate/vsynth3-mpeg2-ilace.mpeg2video +35293 tests/data/fate/vsynth3-mpeg2-ilace.mpeg2video +3f9fa819daa94fd137db0e20325e9566 *tests/data/fate/vsynth3-mpeg2-ilace.out.rawvideo +stddev: 9.09 PSNR: 28.95 MAXDIFF: 68 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg2-ivlc-qprd b/tests/ref/vsynth/vsynth3-mpeg2-ivlc-qprd new file mode 100644 index 0000000000000000000000000000000000000000..d732912b8b82dc2ce15b67e300910e45dd0d8eaa --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg2-ivlc-qprd @@ -0,0 +1,4 @@ +15a7db418ab54b6827d0bf53999de58f *tests/data/fate/vsynth3-mpeg2-ivlc-qprd.mpeg2video +59765 tests/data/fate/vsynth3-mpeg2-ivlc-qprd.mpeg2video +92048d455345edebc2b21a5ff102c3e4 *tests/data/fate/vsynth3-mpeg2-ivlc-qprd.out.rawvideo +stddev: 2.66 PSNR: 39.61 MAXDIFF: 22 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg2-thread b/tests/ref/vsynth/vsynth3-mpeg2-thread new file mode 100644 index 0000000000000000000000000000000000000000..3c75cc607880f5f79356f6493724ed7f3885458e --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg2-thread @@ -0,0 +1,4 @@ +45e63e4c71fd113fd70bb5e3d70e345f *tests/data/fate/vsynth3-mpeg2-thread.mpeg2video +40669 tests/data/fate/vsynth3-mpeg2-thread.mpeg2video +556b5626c8740332309c45f3371dcf82 *tests/data/fate/vsynth3-mpeg2-thread.out.rawvideo +stddev: 8.82 PSNR: 29.22 MAXDIFF: 64 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg2-thread-ivlc b/tests/ref/vsynth/vsynth3-mpeg2-thread-ivlc new file mode 100644 index 0000000000000000000000000000000000000000..f3ee8e2f434699a563f057d0f4130cc7dc55564d --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg2-thread-ivlc @@ -0,0 +1,4 @@ +652f090a82ee947ac48fcba27a29984f *tests/data/fate/vsynth3-mpeg2-thread-ivlc.mpeg2video +40433 tests/data/fate/vsynth3-mpeg2-thread-ivlc.mpeg2video +556b5626c8740332309c45f3371dcf82 *tests/data/fate/vsynth3-mpeg2-thread-ivlc.out.rawvideo +stddev: 8.82 PSNR: 29.22 MAXDIFF: 64 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg4 b/tests/ref/vsynth/vsynth3-mpeg4 new file mode 100644 index 0000000000000000000000000000000000000000..02cf68d55d26aef90582cefef15b21e4ae5c6178 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg4 @@ -0,0 +1,4 @@ +ddcff996543900496f0b374a2d5cae74 *tests/data/fate/vsynth3-mpeg4.mp4 +26017 tests/data/fate/vsynth3-mpeg4.mp4 +fc0d8c1e58d254031e6207dfcae8f867 *tests/data/fate/vsynth3-mpeg4.out.rawvideo +stddev: 9.66 PSNR: 28.43 MAXDIFF: 79 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg4-adap b/tests/ref/vsynth/vsynth3-mpeg4-adap new file mode 100644 index 0000000000000000000000000000000000000000..ec5b9e2ad8cf549ba9217d87720089ca45400657 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg4-adap @@ -0,0 +1,4 @@ +40a36d85d24df09ba8695ab4a16e0843 *tests/data/fate/vsynth3-mpeg4-adap.avi +43702 tests/data/fate/vsynth3-mpeg4-adap.avi +b42b614e19e7c4859fca1af6d4e36eae *tests/data/fate/vsynth3-mpeg4-adap.out.rawvideo +stddev: 5.48 PSNR: 33.34 MAXDIFF: 53 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg4-adv b/tests/ref/vsynth/vsynth3-mpeg4-adv new file mode 100644 index 0000000000000000000000000000000000000000..72742070ef857a5b80fa527a7e5e89b1715b4fc0 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg4-adv @@ -0,0 +1,4 @@ +c3b4a5d4d642b6fea981b4f762a8081b *tests/data/fate/vsynth3-mpeg4-adv.avi +32292 tests/data/fate/vsynth3-mpeg4-adv.avi +9f80b96af57556d53ce44008bd687f55 *tests/data/fate/vsynth3-mpeg4-adv.out.rawvideo +stddev: 7.60 PSNR: 30.51 MAXDIFF: 63 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg4-error b/tests/ref/vsynth/vsynth3-mpeg4-error new file mode 100644 index 0000000000000000000000000000000000000000..4f54a60c741cac9374eca0327f6d5b9c4f4e76dd --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg4-error @@ -0,0 +1,4 @@ +cee34cadd91b861d424f493acb9289ab *tests/data/fate/vsynth3-mpeg4-error.avi +38208 tests/data/fate/vsynth3-mpeg4-error.avi +f9fd24e26f4ffb5ed597b9bbf0ea731b *tests/data/fate/vsynth3-mpeg4-error.out.rawvideo +stddev: 6.06 PSNR: 32.47 MAXDIFF: 54 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg4-nr b/tests/ref/vsynth/vsynth3-mpeg4-nr new file mode 100644 index 0000000000000000000000000000000000000000..8cb103271ea74ad102bca5cc5333a055b87a250d --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg4-nr @@ -0,0 +1,4 @@ +b0f9c0997901e00ca2582ebe20f120e5 *tests/data/fate/vsynth3-mpeg4-nr.avi +36496 tests/data/fate/vsynth3-mpeg4-nr.avi +d0ad9918a12019dd2eacfb804d1f7e78 *tests/data/fate/vsynth3-mpeg4-nr.out.rawvideo +stddev: 8.27 PSNR: 29.78 MAXDIFF: 70 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg4-nsse b/tests/ref/vsynth/vsynth3-mpeg4-nsse new file mode 100644 index 0000000000000000000000000000000000000000..f96b1c61fe0524988c41b728770ceac66bc05e86 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg4-nsse @@ -0,0 +1,4 @@ +4b2c5176f1fc2134612f3b512e8f936a *tests/data/fate/vsynth3-mpeg4-nsse.avi +41976 tests/data/fate/vsynth3-mpeg4-nsse.avi +69d86dec0d73e00608e03855a79dbdc0 *tests/data/fate/vsynth3-mpeg4-nsse.out.rawvideo +stddev: 6.70 PSNR: 31.60 MAXDIFF: 68 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg4-qpel b/tests/ref/vsynth/vsynth3-mpeg4-qpel new file mode 100644 index 0000000000000000000000000000000000000000..f17474f0614813fcd6738267311e13a0cd20b91a --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg4-qpel @@ -0,0 +1,4 @@ +5e4bb1c9bd845896891ca5fe418948a3 *tests/data/fate/vsynth3-mpeg4-qpel.avi +42618 tests/data/fate/vsynth3-mpeg4-qpel.avi +50af37a5ae05f0af34bd56dcef997c8d *tests/data/fate/vsynth3-mpeg4-qpel.out.rawvideo +stddev: 6.59 PSNR: 31.75 MAXDIFF: 54 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg4-qprd b/tests/ref/vsynth/vsynth3-mpeg4-qprd new file mode 100644 index 0000000000000000000000000000000000000000..1691e1fd092c7e5d87fa78e0fbc8d325822b9ec4 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg4-qprd @@ -0,0 +1,4 @@ +af2517de1718262000b76c1da0bd100d *tests/data/fate/vsynth3-mpeg4-qprd.avi +61826 tests/data/fate/vsynth3-mpeg4-qprd.avi +c59f2bead1c81b23fabc0a740048b110 *tests/data/fate/vsynth3-mpeg4-qprd.out.rawvideo +stddev: 2.68 PSNR: 39.55 MAXDIFF: 27 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg4-rc b/tests/ref/vsynth/vsynth3-mpeg4-rc new file mode 100644 index 0000000000000000000000000000000000000000..36c771c5e67807ac9946b2d5c20424d52d053762 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg4-rc @@ -0,0 +1,4 @@ +ddc944ea93e7e87bfae36bb85ee36c91 *tests/data/fate/vsynth3-mpeg4-rc.avi +81088 tests/data/fate/vsynth3-mpeg4-rc.avi +07ba5baf141a24561f7dba43645a3400 *tests/data/fate/vsynth3-mpeg4-rc.out.rawvideo +stddev: 2.62 PSNR: 39.74 MAXDIFF: 23 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpeg4-thread b/tests/ref/vsynth/vsynth3-mpeg4-thread new file mode 100644 index 0000000000000000000000000000000000000000..2b593227dbbe615b122a615dd72fc80940872b2a --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpeg4-thread @@ -0,0 +1,4 @@ +601ac957b2a8cc4d9f5812824b7d1e0d *tests/data/fate/vsynth3-mpeg4-thread.avi +74578 tests/data/fate/vsynth3-mpeg4-thread.avi +7eb4d38b01c71064406ce6705c471439 *tests/data/fate/vsynth3-mpeg4-thread.out.rawvideo +stddev: 1.99 PSNR: 42.12 MAXDIFF: 18 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-mpng b/tests/ref/vsynth/vsynth3-mpng new file mode 100644 index 0000000000000000000000000000000000000000..2a112a76da4001a56f4a2287b1834d040d519689 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-mpng @@ -0,0 +1,4 @@ +f1a9b596c743645e5518a41e4fe2b043 *tests/data/fate/vsynth3-mpng.avi +179800 tests/data/fate/vsynth3-mpng.avi +693aff10c094f8bd31693f74cf79d2b2 *tests/data/fate/vsynth3-mpng.out.rawvideo +stddev: 3.67 PSNR: 36.82 MAXDIFF: 43 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-msmpeg4 b/tests/ref/vsynth/vsynth3-msmpeg4 new file mode 100644 index 0000000000000000000000000000000000000000..dc653fcb0dbc95371256fb0fc89683f145abb8a0 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-msmpeg4 @@ -0,0 +1,4 @@ +68d0838cf0e66a3092acaf347061cea8 *tests/data/fate/vsynth3-msmpeg4.avi +32440 tests/data/fate/vsynth3-msmpeg4.avi +216b15fb02691b662d0f0112507d5583 *tests/data/fate/vsynth3-msmpeg4.out.rawvideo +stddev: 9.63 PSNR: 28.45 MAXDIFF: 104 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-msmpeg4v2 b/tests/ref/vsynth/vsynth3-msmpeg4v2 new file mode 100644 index 0000000000000000000000000000000000000000..58d6e4f23c8bd2873d02081498675b7ef1172b4e --- /dev/null +++ b/tests/ref/vsynth/vsynth3-msmpeg4v2 @@ -0,0 +1,4 @@ +dfba0b605760d087cb6f5c0ce45f671a *tests/data/fate/vsynth3-msmpeg4v2.avi +32626 tests/data/fate/vsynth3-msmpeg4v2.avi +575bfa06fd3f3944faf92205fabf5f22 *tests/data/fate/vsynth3-msmpeg4v2.out.rawvideo +stddev: 9.66 PSNR: 28.43 MAXDIFF: 86 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-prores b/tests/ref/vsynth/vsynth3-prores new file mode 100644 index 0000000000000000000000000000000000000000..f63a7a736f21ab66a37a0f7d45363217c49f767f --- /dev/null +++ b/tests/ref/vsynth/vsynth3-prores @@ -0,0 +1,4 @@ +b060c59be88b4b089ece5ee8dc4f1c58 *tests/data/fate/vsynth3-prores.mov +105367 tests/data/fate/vsynth3-prores.mov +fff5e7ad21d78501c8fa4749bf4bf289 *tests/data/fate/vsynth3-prores.out.rawvideo +stddev: 2.80 PSNR: 39.17 MAXDIFF: 27 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-prores_ks b/tests/ref/vsynth/vsynth3-prores_ks new file mode 100644 index 0000000000000000000000000000000000000000..99cfc1397ef43e7f0b752c6f97f7061d00dbf205 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-prores_ks @@ -0,0 +1,4 @@ +7ceff8c9cffca766f8a167ba73dad0e2 *tests/data/fate/vsynth3-prores_ks.mov +95053 tests/data/fate/vsynth3-prores_ks.mov +9ab6d3e3cc7749796cd9fa984c60d890 *tests/data/fate/vsynth3-prores_ks.out.rawvideo +stddev: 4.09 PSNR: 35.88 MAXDIFF: 35 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-qtrle b/tests/ref/vsynth/vsynth3-qtrle new file mode 100644 index 0000000000000000000000000000000000000000..6f93232789bd2ee593c9efcf50da563636d58d62 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-qtrle @@ -0,0 +1,4 @@ +33ec7d4f0a18fcf6da3bdacb494e2035 *tests/data/fate/vsynth3-qtrle.mov +179656 tests/data/fate/vsynth3-qtrle.mov +693aff10c094f8bd31693f74cf79d2b2 *tests/data/fate/vsynth3-qtrle.out.rawvideo +stddev: 3.67 PSNR: 36.82 MAXDIFF: 43 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-qtrlegray b/tests/ref/vsynth/vsynth3-qtrlegray new file mode 100644 index 0000000000000000000000000000000000000000..edf096f6eedaf286a1e3d36c0c5bee3e86a373d8 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-qtrlegray @@ -0,0 +1,4 @@ +b336626baa2911767f473a4a61df42f6 *tests/data/fate/vsynth3-qtrlegray.mov +60579 tests/data/fate/vsynth3-qtrlegray.mov +9ace183226a44731d9c8f335102899bd *tests/data/fate/vsynth3-qtrlegray.out.rawvideo +stddev: 34.21 PSNR: 17.45 MAXDIFF: 227 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-r210 b/tests/ref/vsynth/vsynth3-r210 new file mode 100644 index 0000000000000000000000000000000000000000..8362ee52db4839b938ad0fb3a29a3f3f8735dcdd --- /dev/null +++ b/tests/ref/vsynth/vsynth3-r210 @@ -0,0 +1,4 @@ +5f6e0ba5fc9a1b1440e80aebcb41d57a *tests/data/fate/vsynth3-r210.avi +442048 tests/data/fate/vsynth3-r210.avi +e1d882babc8754f7418aa91ce48f7ab0 *tests/data/fate/vsynth3-r210.out.rawvideo +stddev: 3.48 PSNR: 37.28 MAXDIFF: 42 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-rgb b/tests/ref/vsynth/vsynth3-rgb new file mode 100644 index 0000000000000000000000000000000000000000..f407523c94e926062cf70dbdf1e86db6e471502e --- /dev/null +++ b/tests/ref/vsynth/vsynth3-rgb @@ -0,0 +1,4 @@ +7b20b20734352d33b18b802513f5fc47 *tests/data/fate/vsynth3-rgb.avi +180248 tests/data/fate/vsynth3-rgb.avi +693aff10c094f8bd31693f74cf79d2b2 *tests/data/fate/vsynth3-rgb.out.rawvideo +stddev: 3.67 PSNR: 36.82 MAXDIFF: 43 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-svq1 b/tests/ref/vsynth/vsynth3-svq1 new file mode 100644 index 0000000000000000000000000000000000000000..b51fa03e839257d565da05e6d8ac326d41b60330 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-svq1 @@ -0,0 +1,4 @@ +1eaf318269afd7426406d73397c39a48 *tests/data/fate/vsynth3-svq1.mov +40773 tests/data/fate/vsynth3-svq1.mov +a1e5334cf67649bf8c7d95dc4d1bf148 *tests/data/fate/vsynth3-svq1.out.rawvideo +stddev: 14.49 PSNR: 24.91 MAXDIFF: 183 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-v210 b/tests/ref/vsynth/vsynth3-v210 new file mode 100644 index 0000000000000000000000000000000000000000..d3275f05a9e08e73a670a0efb16e0a98b1dbd20c --- /dev/null +++ b/tests/ref/vsynth/vsynth3-v210 @@ -0,0 +1,4 @@ +d2f5e07f0c0e917d80d63f39d683919e *tests/data/fate/vsynth3-v210.avi +224448 tests/data/fate/vsynth3-v210.avi +0cf7cf68724fa5146b1667e4fa08b0e1 *tests/data/fate/vsynth3-v210.out.rawvideo +stddev: 2.12 PSNR: 41.58 MAXDIFF: 26 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-v308 b/tests/ref/vsynth/vsynth3-v308 new file mode 100644 index 0000000000000000000000000000000000000000..c70678c541d7b3b85a9006d78b074103df28f48c --- /dev/null +++ b/tests/ref/vsynth/vsynth3-v308 @@ -0,0 +1,4 @@ +53dacfdcf280d58b465da71583f4af26 *tests/data/fate/vsynth3-v308.avi +180248 tests/data/fate/vsynth3-v308.avi +02a85ec07377df6b483281038f8882ee *tests/data/fate/vsynth3-v308.out.rawvideo +stddev: 3.06 PSNR: 38.40 MAXDIFF: 40 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-v408 b/tests/ref/vsynth/vsynth3-v408 new file mode 100644 index 0000000000000000000000000000000000000000..da87e817cb37b334ff62ed4a4bedcb378d85c621 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-v408 @@ -0,0 +1,4 @@ +ac8ea8d8f38b5c6b76c2fef9667a172d *tests/data/fate/vsynth3-v408.avi +238048 tests/data/fate/vsynth3-v408.avi +a038ad7c3c09f776304ef7accdea9c74 *tests/data/fate/vsynth3-v408.out.rawvideo +stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-wmv1 b/tests/ref/vsynth/vsynth3-wmv1 new file mode 100644 index 0000000000000000000000000000000000000000..568d3cf1444bbc90d421f5c2aceace4ea2f82bbb --- /dev/null +++ b/tests/ref/vsynth/vsynth3-wmv1 @@ -0,0 +1,4 @@ +b13831403f2dfdf3e5e6d33b03dbc687 *tests/data/fate/vsynth3-wmv1.avi +32654 tests/data/fate/vsynth3-wmv1.avi +4dafe3c433c7f48c6c9e56d59ca0f7c3 *tests/data/fate/vsynth3-wmv1.out.rawvideo +stddev: 9.65 PSNR: 28.44 MAXDIFF: 91 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-wmv2 b/tests/ref/vsynth/vsynth3-wmv2 new file mode 100644 index 0000000000000000000000000000000000000000..9d20b7bfc4cdf4a086f6b7bd86f64411d9877da0 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-wmv2 @@ -0,0 +1,4 @@ +1a8a90c91240f84d0ceca4f20ae4be27 *tests/data/fate/vsynth3-wmv2.avi +33976 tests/data/fate/vsynth3-wmv2.avi +691e00ebbb56c061f74ade70088102e7 *tests/data/fate/vsynth3-wmv2.out.rawvideo +stddev: 9.60 PSNR: 28.48 MAXDIFF: 81 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-yuv b/tests/ref/vsynth/vsynth3-yuv new file mode 100644 index 0000000000000000000000000000000000000000..29abb302892fec66e3ff6e7e39c17efdee50a748 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-yuv @@ -0,0 +1,4 @@ +d0a6f0188d9cc70919865ebc59cc0179 *tests/data/fate/vsynth3-yuv.avi +93548 tests/data/fate/vsynth3-yuv.avi +a038ad7c3c09f776304ef7accdea9c74 *tests/data/fate/vsynth3-yuv.out.rawvideo +stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-yuv4 b/tests/ref/vsynth/vsynth3-yuv4 new file mode 100644 index 0000000000000000000000000000000000000000..70f82745228c09673dbc74cd2419acfca6e7cea4 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-yuv4 @@ -0,0 +1,4 @@ +4b5196292069c5301446b546d0148783 *tests/data/fate/vsynth3-yuv4.avi +93548 tests/data/fate/vsynth3-yuv4.avi +a038ad7c3c09f776304ef7accdea9c74 *tests/data/fate/vsynth3-yuv4.out.rawvideo +stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 86700/ 86700 diff --git a/tests/ref/vsynth/vsynth3-zlib b/tests/ref/vsynth/vsynth3-zlib new file mode 100644 index 0000000000000000000000000000000000000000..e69e2890894505821db303140a7f998441001005 --- /dev/null +++ b/tests/ref/vsynth/vsynth3-zlib @@ -0,0 +1,4 @@ +278541a159accf11fec8914cad41e85c *tests/data/fate/vsynth3-zlib.avi +174878 tests/data/fate/vsynth3-zlib.avi +693aff10c094f8bd31693f74cf79d2b2 *tests/data/fate/vsynth3-zlib.out.rawvideo +stddev: 3.67 PSNR: 36.82 MAXDIFF: 43 bytes: 86700/ 86700