[FFmpeg-devel] [PATCH] tests/fate: add dnxhr encoding tests

Mark Reid mindmark at gmail.com
Sat Jul 23 22:38:33 EEST 2016


---
 tests/fate/seek.mak                           |  2 ++
 tests/fate/vcodec.mak                         | 22 ++++++++++++++-
 tests/ref/seek/vsynth_lena-dnxhd-4k-hr-lb     | 40 +++++++++++++++++++++++++++
 tests/ref/vsynth/vsynth1-dnxhd-2k-hr-hq       |  4 +++
 tests/ref/vsynth/vsynth1-dnxhd-4k-hr-lb       |  4 +++
 tests/ref/vsynth/vsynth1-dnxhd-720p-hr-lb     |  4 +++
 tests/ref/vsynth/vsynth1-dnxhd-uhd-hr-sq      |  4 +++
 tests/ref/vsynth/vsynth2-dnxhd-2k-hr-hq       |  4 +++
 tests/ref/vsynth/vsynth2-dnxhd-4k-hr-lb       |  4 +++
 tests/ref/vsynth/vsynth2-dnxhd-720p-hr-lb     |  4 +++
 tests/ref/vsynth/vsynth2-dnxhd-uhd-hr-sq      |  4 +++
 tests/ref/vsynth/vsynth3-dnxhd-2k-hr-hq       |  4 +++
 tests/ref/vsynth/vsynth3-dnxhd-4k-hr-lb       |  4 +++
 tests/ref/vsynth/vsynth3-dnxhd-720p-hr-lb     |  4 +++
 tests/ref/vsynth/vsynth3-dnxhd-uhd-hr-sq      |  4 +++
 tests/ref/vsynth/vsynth_lena-dnxhd-2k-hr-hq   |  4 +++
 tests/ref/vsynth/vsynth_lena-dnxhd-4k-hr-lb   |  4 +++
 tests/ref/vsynth/vsynth_lena-dnxhd-720p-hr-lb |  4 +++
 tests/ref/vsynth/vsynth_lena-dnxhd-uhd-hr-sq  |  4 +++
 19 files changed, 127 insertions(+), 1 deletion(-)
 create mode 100644 tests/ref/seek/vsynth_lena-dnxhd-4k-hr-lb
 create mode 100644 tests/ref/vsynth/vsynth1-dnxhd-2k-hr-hq
 create mode 100644 tests/ref/vsynth/vsynth1-dnxhd-4k-hr-lb
 create mode 100644 tests/ref/vsynth/vsynth1-dnxhd-720p-hr-lb
 create mode 100644 tests/ref/vsynth/vsynth1-dnxhd-uhd-hr-sq
 create mode 100644 tests/ref/vsynth/vsynth2-dnxhd-2k-hr-hq
 create mode 100644 tests/ref/vsynth/vsynth2-dnxhd-4k-hr-lb
 create mode 100644 tests/ref/vsynth/vsynth2-dnxhd-720p-hr-lb
 create mode 100644 tests/ref/vsynth/vsynth2-dnxhd-uhd-hr-sq
 create mode 100644 tests/ref/vsynth/vsynth3-dnxhd-2k-hr-hq
 create mode 100644 tests/ref/vsynth/vsynth3-dnxhd-4k-hr-lb
 create mode 100644 tests/ref/vsynth/vsynth3-dnxhd-720p-hr-lb
 create mode 100644 tests/ref/vsynth/vsynth3-dnxhd-uhd-hr-sq
 create mode 100644 tests/ref/vsynth/vsynth_lena-dnxhd-2k-hr-hq
 create mode 100644 tests/ref/vsynth/vsynth_lena-dnxhd-4k-hr-lb
 create mode 100644 tests/ref/vsynth/vsynth_lena-dnxhd-720p-hr-lb
 create mode 100644 tests/ref/vsynth/vsynth_lena-dnxhd-uhd-hr-sq

diff --git a/tests/fate/seek.mak b/tests/fate/seek.mak
index f120f56..b831cf8 100644
--- a/tests/fate/seek.mak
+++ b/tests/fate/seek.mak
@@ -64,6 +64,7 @@ FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, ASV1,          AVI)     += asv1
 FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, ASV2,          AVI)     += asv2
 FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, DNXHD,         DNXHD)   += dnxhd-720p
 FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, DNXHD,         DNXHD)   += dnxhd-720p-rd
+FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, DNXHD,         DNXHD)   += dnxhd-4k-hr-lb
 FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, DNXHD,         MOV)     += dnxhd-1080i
 FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, DVVIDEO,       DV)      += dv
 FATE_SEEK_VSYNTH_LENA-$(call ENCDEC, DVVIDEO,       DV)      += dv-411
@@ -111,6 +112,7 @@ fate-seek-vsynth_lena-asv2:              SRC = fate/vsynth_lena-asv2.avi
 fate-seek-vsynth_lena-dnxhd-1080i:       SRC = fate/vsynth_lena-dnxhd-1080i.mov
 fate-seek-vsynth_lena-dnxhd-720p:        SRC = fate/vsynth_lena-dnxhd-720p.dnxhd
 fate-seek-vsynth_lena-dnxhd-720p-rd:     SRC = fate/vsynth_lena-dnxhd-720p.dnxhd
+fate-seek-vsynth_lena-dnxhd-4k-hr-lb:    SRC = fate/vsynth_lena-dnxhd-4k-hr-lb.dnxhd
 fate-seek-vsynth_lena-dv:                SRC = fate/vsynth_lena-dv.dv
 fate-seek-vsynth_lena-dv-411:            SRC = fate/vsynth_lena-dv-411.dv
 fate-seek-vsynth_lena-dv-50:             SRC = fate/vsynth_lena-dv-50.dv
diff --git a/tests/fate/vcodec.mak b/tests/fate/vcodec.mak
index 0e08894..7148fbc 100644
--- a/tests/fate/vcodec.mak
+++ b/tests/fate/vcodec.mak
@@ -27,7 +27,11 @@ fate-vsynth%-cljr:               ENCOPTS = -strict -1
 
 FATE_VCODEC-$(call ENCDEC, DNXHD, DNXHD) += dnxhd-720p                  \
                                             dnxhd-720p-rd               \
-                                            dnxhd-720p-10bit
+                                            dnxhd-720p-10bit            \
+                                            dnxhd-720p-hr-lb            \
+                                            dnxhd-4k-hr-lb              \
+                                            dnxhd-uhd-hr-sq             \
+                                            dnxhd-2k-hr-hq
 
 FATE_VCODEC-$(call ENCDEC, VC2 DIRAC, MOV) += vc2-420p vc2-420p10 vc2-420p12 \
                                               vc2-422p vc2-422p10 vc2-422p12 \
@@ -54,6 +58,22 @@ fate-vsynth%-dnxhd-720p-10bit:   ENCOPTS = -s hd720 -b 90M              \
                                            -pix_fmt yuv422p10 -frames 5 -qmax 8
 fate-vsynth%-dnxhd-720p-10bit:   FMT     = dnxhd
 
+fate-vsynth%-dnxhd-720p-hr-lb: ENCOPTS   = -s hd720 -profile:v dnxhr_lb \
+                                           -pix_fmt yuv422p -frames 5
+fate-vsynth%-dnxhd-720p-hr-lb: FMT       = dnxhd
+
+fate-vsynth%-dnxhd-4k-hr-lb:  ENCOPTS    = -s 4k -profile:v dnxhr_lb \
+                                           -pix_fmt yuv422p -frames 5
+fate-vsynth%-dnxhd-4k-hr-lb:  FMT        = dnxhd
+
+fate-vsynth%-dnxhd-uhd-hr-sq: ENCOPTS    = -s uhd2160 -profile:v dnxhr_sq \
+                                           -pix_fmt yuv422p -frames 5
+fate-vsynth%-dnxhd-uhd-hr-sq: FMT        = dnxhd
+
+fate-vsynth%-dnxhd-2k-hr-hq:  ENCOPTS    = -s 2k -profile:v dnxhr_hq \
+                                           -pix_fmt yuv422p -frames 5
+fate-vsynth%-dnxhd-2k-hr-hq:  FMT        = dnxhd
+
 FATE_VCODEC-$(call ENCDEC, DNXHD, MOV)  += dnxhd-1080i dnxhd-1080i-10bit dnxhd-1080i-colr
 fate-vsynth%-dnxhd-1080i:        ENCOPTS = -s hd1080 -b 120M -flags +ildct \
                                            -pix_fmt yuv422p -frames 5 -qmax 8
diff --git a/tests/ref/seek/vsynth_lena-dnxhd-4k-hr-lb b/tests/ref/seek/vsynth_lena-dnxhd-4k-hr-lb
new file mode 100644
index 0000000..115b977
--- /dev/null
+++ b/tests/ref/seek/vsynth_lena-dnxhd-4k-hr-lb
@@ -0,0 +1,40 @@
+ret: 0         st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos:      0 size:798720
+ret: 0         st:-1 flags:0  ts:-1.000000
+ret: 0         st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos:      0 size:798720
+ret: 0         st:-1 flags:1  ts: 1.894167
+ret: 0         st: 0 flags:1 dts: 0.160000 pts: 0.160000 pos:3194880 size:798720
+ret:-1         st: 0 flags:0  ts: 0.788334
+ret:-1         st: 0 flags:1  ts:-0.317499
+ret:-1         st:-1 flags:0  ts: 2.576668
+ret: 0         st:-1 flags:1  ts: 1.470835
+ret: 0         st: 0 flags:1 dts: 0.160000 pts: 0.160000 pos:3194880 size:798720
+ret:-1         st: 0 flags:0  ts: 0.365002
+ret:-1         st: 0 flags:1  ts:-0.740831
+ret:-1         st:-1 flags:0  ts: 2.153336
+ret: 0         st:-1 flags:1  ts: 1.047503
+ret: 0         st: 0 flags:1 dts: 0.160000 pts: 0.160000 pos:3194880 size:798720
+ret: 0         st: 0 flags:0  ts:-0.058330
+ret: 0         st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos:      0 size:798720
+ret: 0         st: 0 flags:1  ts: 2.835837
+ret: 0         st: 0 flags:1 dts: 0.160000 pts: 0.160000 pos:3194880 size:798720
+ret:-1         st:-1 flags:0  ts: 1.730004
+ret: 0         st:-1 flags:1  ts: 0.624171
+ret: 0         st: 0 flags:1 dts: 0.160000 pts: 0.160000 pos:3194880 size:798720
+ret: 0         st: 0 flags:0  ts:-0.481662
+ret: 0         st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos:      0 size:798720
+ret: 0         st: 0 flags:1  ts: 2.412505
+ret: 0         st: 0 flags:1 dts: 0.160000 pts: 0.160000 pos:3194880 size:798720
+ret:-1         st:-1 flags:0  ts: 1.306672
+ret: 0         st:-1 flags:1  ts: 0.200839
+ret: 0         st: 0 flags:1 dts: 0.160000 pts: 0.160000 pos:3194880 size:798720
+ret: 0         st: 0 flags:0  ts:-0.904994
+ret: 0         st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos:      0 size:798720
+ret: 0         st: 0 flags:1  ts: 1.989173
+ret: 0         st: 0 flags:1 dts: 0.160000 pts: 0.160000 pos:3194880 size:798720
+ret:-1         st:-1 flags:0  ts: 0.883340
+ret:-1         st:-1 flags:1  ts:-0.222493
+ret:-1         st: 0 flags:0  ts: 2.671674
+ret: 0         st: 0 flags:1  ts: 1.565841
+ret: 0         st: 0 flags:1 dts: 0.160000 pts: 0.160000 pos:3194880 size:798720
+ret:-1         st:-1 flags:0  ts: 0.460008
+ret:-1         st:-1 flags:1  ts:-0.645825
diff --git a/tests/ref/vsynth/vsynth1-dnxhd-2k-hr-hq b/tests/ref/vsynth/vsynth1-dnxhd-2k-hr-hq
new file mode 100644
index 0000000..b352f0a
--- /dev/null
+++ b/tests/ref/vsynth/vsynth1-dnxhd-2k-hr-hq
@@ -0,0 +1,4 @@
+75cade089b56bb2f7a7a2133403cd3ac *tests/data/fate/vsynth1-dnxhd-2k-hr-hq.dnxhd
+4894720 tests/data/fate/vsynth1-dnxhd-2k-hr-hq.dnxhd
+e5e97be3813989ded7c23780b5083bad *tests/data/fate/vsynth1-dnxhd-2k-hr-hq.out.rawvideo
+stddev:    6.25 PSNR: 32.21 MAXDIFF:   65 bytes:  7603200/   760320
diff --git a/tests/ref/vsynth/vsynth1-dnxhd-4k-hr-lb b/tests/ref/vsynth/vsynth1-dnxhd-4k-hr-lb
new file mode 100644
index 0000000..a7701c4
--- /dev/null
+++ b/tests/ref/vsynth/vsynth1-dnxhd-4k-hr-lb
@@ -0,0 +1,4 @@
+c6b6b35ffd147297983da4ad94887ac6 *tests/data/fate/vsynth1-dnxhd-4k-hr-lb.dnxhd
+3993600 tests/data/fate/vsynth1-dnxhd-4k-hr-lb.dnxhd
+c35840dbf0858f47328305269d3a1cba *tests/data/fate/vsynth1-dnxhd-4k-hr-lb.out.rawvideo
+stddev:    6.22 PSNR: 32.25 MAXDIFF:   64 bytes:  7603200/   760320
diff --git a/tests/ref/vsynth/vsynth1-dnxhd-720p-hr-lb b/tests/ref/vsynth/vsynth1-dnxhd-720p-hr-lb
new file mode 100644
index 0000000..8664292
--- /dev/null
+++ b/tests/ref/vsynth/vsynth1-dnxhd-720p-hr-lb
@@ -0,0 +1,4 @@
+08cbfe9b9f671cdb9dddc9307121d107 *tests/data/fate/vsynth1-dnxhd-720p-hr-lb.dnxhd
+409600 tests/data/fate/vsynth1-dnxhd-720p-hr-lb.dnxhd
+a3adcd6a2468a3ed16a7049c27ac98f3 *tests/data/fate/vsynth1-dnxhd-720p-hr-lb.out.rawvideo
+stddev:    7.63 PSNR: 30.47 MAXDIFF:   66 bytes:  7603200/   608256
diff --git a/tests/ref/vsynth/vsynth1-dnxhd-uhd-hr-sq b/tests/ref/vsynth/vsynth1-dnxhd-uhd-hr-sq
new file mode 100644
index 0000000..8b56308
--- /dev/null
+++ b/tests/ref/vsynth/vsynth1-dnxhd-uhd-hr-sq
@@ -0,0 +1,4 @@
+2c53759ba6cfa1136604558224879054 *tests/data/fate/vsynth1-dnxhd-uhd-hr-sq.dnxhd
+12042240 tests/data/fate/vsynth1-dnxhd-uhd-hr-sq.dnxhd
+e6f12ed7eb3f83072896addbdb07550b *tests/data/fate/vsynth1-dnxhd-uhd-hr-sq.out.rawvideo
+stddev:    6.26 PSNR: 32.19 MAXDIFF:   64 bytes:  7603200/   760320
diff --git a/tests/ref/vsynth/vsynth2-dnxhd-2k-hr-hq b/tests/ref/vsynth/vsynth2-dnxhd-2k-hr-hq
new file mode 100644
index 0000000..9abd50c
--- /dev/null
+++ b/tests/ref/vsynth/vsynth2-dnxhd-2k-hr-hq
@@ -0,0 +1,4 @@
+dea0fb4bd16c552837e4ad0ddd67194a *tests/data/fate/vsynth2-dnxhd-2k-hr-hq.dnxhd
+4894720 tests/data/fate/vsynth2-dnxhd-2k-hr-hq.dnxhd
+e2110125fbdae48f3bd0dd4e61656875 *tests/data/fate/vsynth2-dnxhd-2k-hr-hq.out.rawvideo
+stddev:    1.51 PSNR: 44.52 MAXDIFF:   31 bytes:  7603200/   760320
diff --git a/tests/ref/vsynth/vsynth2-dnxhd-4k-hr-lb b/tests/ref/vsynth/vsynth2-dnxhd-4k-hr-lb
new file mode 100644
index 0000000..23fab16
--- /dev/null
+++ b/tests/ref/vsynth/vsynth2-dnxhd-4k-hr-lb
@@ -0,0 +1,4 @@
+90a59e7600362d156922be89aa966199 *tests/data/fate/vsynth2-dnxhd-4k-hr-lb.dnxhd
+3993600 tests/data/fate/vsynth2-dnxhd-4k-hr-lb.dnxhd
+da63156d28f1e756199b16c5fcf88b71 *tests/data/fate/vsynth2-dnxhd-4k-hr-lb.out.rawvideo
+stddev:    1.51 PSNR: 44.54 MAXDIFF:   31 bytes:  7603200/   760320
diff --git a/tests/ref/vsynth/vsynth2-dnxhd-720p-hr-lb b/tests/ref/vsynth/vsynth2-dnxhd-720p-hr-lb
new file mode 100644
index 0000000..70f77c5
--- /dev/null
+++ b/tests/ref/vsynth/vsynth2-dnxhd-720p-hr-lb
@@ -0,0 +1,4 @@
+cefe318822be828a03c9eab92f4b2187 *tests/data/fate/vsynth2-dnxhd-720p-hr-lb.dnxhd
+409600 tests/data/fate/vsynth2-dnxhd-720p-hr-lb.dnxhd
+f3b8687153ac9a8c26092f933c8ca2dd *tests/data/fate/vsynth2-dnxhd-720p-hr-lb.out.rawvideo
+stddev:    1.85 PSNR: 42.76 MAXDIFF:   31 bytes:  7603200/   760320
diff --git a/tests/ref/vsynth/vsynth2-dnxhd-uhd-hr-sq b/tests/ref/vsynth/vsynth2-dnxhd-uhd-hr-sq
new file mode 100644
index 0000000..9a080fd
--- /dev/null
+++ b/tests/ref/vsynth/vsynth2-dnxhd-uhd-hr-sq
@@ -0,0 +1,4 @@
+63b4e6456d98b12d5d88617e21a56220 *tests/data/fate/vsynth2-dnxhd-uhd-hr-sq.dnxhd
+12042240 tests/data/fate/vsynth2-dnxhd-uhd-hr-sq.dnxhd
+3a701f8cb1d0f1806b8a45fe5a80e094 *tests/data/fate/vsynth2-dnxhd-uhd-hr-sq.out.rawvideo
+stddev:    1.52 PSNR: 44.47 MAXDIFF:   32 bytes:  7603200/   760320
diff --git a/tests/ref/vsynth/vsynth3-dnxhd-2k-hr-hq b/tests/ref/vsynth/vsynth3-dnxhd-2k-hr-hq
new file mode 100644
index 0000000..a35cef7
--- /dev/null
+++ b/tests/ref/vsynth/vsynth3-dnxhd-2k-hr-hq
@@ -0,0 +1,4 @@
+fa0cc58e64c981a45d1c6d667ba4e584 *tests/data/fate/vsynth3-dnxhd-2k-hr-hq.dnxhd
+4894720 tests/data/fate/vsynth3-dnxhd-2k-hr-hq.dnxhd
+117bd8737ca7d6e8bbd5ca13e7b6e7c6 *tests/data/fate/vsynth3-dnxhd-2k-hr-hq.out.rawvideo
+stddev:    7.81 PSNR: 30.27 MAXDIFF:   61 bytes:    86700/     8670
diff --git a/tests/ref/vsynth/vsynth3-dnxhd-4k-hr-lb b/tests/ref/vsynth/vsynth3-dnxhd-4k-hr-lb
new file mode 100644
index 0000000..6ee185d
--- /dev/null
+++ b/tests/ref/vsynth/vsynth3-dnxhd-4k-hr-lb
@@ -0,0 +1,4 @@
+1dc788461df79c2a1e7b64309cd9f131 *tests/data/fate/vsynth3-dnxhd-4k-hr-lb.dnxhd
+3993600 tests/data/fate/vsynth3-dnxhd-4k-hr-lb.dnxhd
+9398934d8b4b29ef59e084a9c0b67f11 *tests/data/fate/vsynth3-dnxhd-4k-hr-lb.out.rawvideo
+stddev:    7.81 PSNR: 30.27 MAXDIFF:   61 bytes:    86700/     8670
diff --git a/tests/ref/vsynth/vsynth3-dnxhd-720p-hr-lb b/tests/ref/vsynth/vsynth3-dnxhd-720p-hr-lb
new file mode 100644
index 0000000..1774768
--- /dev/null
+++ b/tests/ref/vsynth/vsynth3-dnxhd-720p-hr-lb
@@ -0,0 +1,4 @@
+09f95ea080635205a4b6e681822b25d6 *tests/data/fate/vsynth3-dnxhd-720p-hr-lb.dnxhd
+409600 tests/data/fate/vsynth3-dnxhd-720p-hr-lb.dnxhd
+6616ec59d34cc2d701570c9e9ac1e039 *tests/data/fate/vsynth3-dnxhd-720p-hr-lb.out.rawvideo
+stddev:    7.82 PSNR: 30.26 MAXDIFF:   61 bytes:    86700/     8670
diff --git a/tests/ref/vsynth/vsynth3-dnxhd-uhd-hr-sq b/tests/ref/vsynth/vsynth3-dnxhd-uhd-hr-sq
new file mode 100644
index 0000000..ae6e703
--- /dev/null
+++ b/tests/ref/vsynth/vsynth3-dnxhd-uhd-hr-sq
@@ -0,0 +1,4 @@
+067a66401b915f54171b65f086822bbb *tests/data/fate/vsynth3-dnxhd-uhd-hr-sq.dnxhd
+12042240 tests/data/fate/vsynth3-dnxhd-uhd-hr-sq.dnxhd
+76f18459530516fba019e41ca090ce0b *tests/data/fate/vsynth3-dnxhd-uhd-hr-sq.out.rawvideo
+stddev:    7.81 PSNR: 30.27 MAXDIFF:   61 bytes:    86700/     8670
diff --git a/tests/ref/vsynth/vsynth_lena-dnxhd-2k-hr-hq b/tests/ref/vsynth/vsynth_lena-dnxhd-2k-hr-hq
new file mode 100644
index 0000000..99dc386
--- /dev/null
+++ b/tests/ref/vsynth/vsynth_lena-dnxhd-2k-hr-hq
@@ -0,0 +1,4 @@
+aea59b04d0e5b095559d4f3079be208c *tests/data/fate/vsynth_lena-dnxhd-2k-hr-hq.dnxhd
+4894720 tests/data/fate/vsynth_lena-dnxhd-2k-hr-hq.dnxhd
+e749cb3c2c69731518c16d8f992264f5 *tests/data/fate/vsynth_lena-dnxhd-2k-hr-hq.out.rawvideo
+stddev:    1.30 PSNR: 45.84 MAXDIFF:   22 bytes:  7603200/   760320
diff --git a/tests/ref/vsynth/vsynth_lena-dnxhd-4k-hr-lb b/tests/ref/vsynth/vsynth_lena-dnxhd-4k-hr-lb
new file mode 100644
index 0000000..e2936b5
--- /dev/null
+++ b/tests/ref/vsynth/vsynth_lena-dnxhd-4k-hr-lb
@@ -0,0 +1,4 @@
+c166f5e1355784eae8b82bbaeef79273 *tests/data/fate/vsynth_lena-dnxhd-4k-hr-lb.dnxhd
+3993600 tests/data/fate/vsynth_lena-dnxhd-4k-hr-lb.dnxhd
+483d8f80c815f0a2ff0256a1b576630c *tests/data/fate/vsynth_lena-dnxhd-4k-hr-lb.out.rawvideo
+stddev:    1.29 PSNR: 45.87 MAXDIFF:   22 bytes:  7603200/   760320
diff --git a/tests/ref/vsynth/vsynth_lena-dnxhd-720p-hr-lb b/tests/ref/vsynth/vsynth_lena-dnxhd-720p-hr-lb
new file mode 100644
index 0000000..32e4df9
--- /dev/null
+++ b/tests/ref/vsynth/vsynth_lena-dnxhd-720p-hr-lb
@@ -0,0 +1,4 @@
+2cc387afd3e5a244dca45add1e0742bb *tests/data/fate/vsynth_lena-dnxhd-720p-hr-lb.dnxhd
+409600 tests/data/fate/vsynth_lena-dnxhd-720p-hr-lb.dnxhd
+67d35d28894252ab1c228f45e08f9fce *tests/data/fate/vsynth_lena-dnxhd-720p-hr-lb.out.rawvideo
+stddev:    1.56 PSNR: 44.24 MAXDIFF:   22 bytes:  7603200/   760320
diff --git a/tests/ref/vsynth/vsynth_lena-dnxhd-uhd-hr-sq b/tests/ref/vsynth/vsynth_lena-dnxhd-uhd-hr-sq
new file mode 100644
index 0000000..4c087b9
--- /dev/null
+++ b/tests/ref/vsynth/vsynth_lena-dnxhd-uhd-hr-sq
@@ -0,0 +1,4 @@
+5ae3072820e217e21ca9a818d9150acc *tests/data/fate/vsynth_lena-dnxhd-uhd-hr-sq.dnxhd
+12042240 tests/data/fate/vsynth_lena-dnxhd-uhd-hr-sq.dnxhd
+9448b015fd17056c2bc7df070bf1c43b *tests/data/fate/vsynth_lena-dnxhd-uhd-hr-sq.out.rawvideo
+stddev:    1.31 PSNR: 45.75 MAXDIFF:   22 bytes:  7603200/   760320
-- 
2.7.3



More information about the ffmpeg-devel mailing list