summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2013-12-16 11:23:16 -0800
committerYaowu Xu <yaowu@google.com>2013-12-16 15:48:04 -0800
commita3e919a4ba28c961bdda28793cd5e3e0ea483c87 (patch)
tree7fa98db86910ecfe4a6b687233f7a4f6309d3ce4 /test
parent4a535efcfd6c2d1ccded864faf042f4b78716206 (diff)
downloadlibvpx-a3e919a4ba28c961bdda28793cd5e3e0ea483c87.tar
libvpx-a3e919a4ba28c961bdda28793cd5e3e0ea483c87.tar.gz
libvpx-a3e919a4ba28c961bdda28793cd5e3e0ea483c87.tar.bz2
libvpx-a3e919a4ba28c961bdda28793cd5e3e0ea483c87.zip
Added a test vector
The added vector was encoded with aq mode on, with the intent to exercise the decode code around segment feature. Change-Id: Iedcb7261e87d3e11b25ecf031d3a69385271148e
Diffstat (limited to 'test')
-rw-r--r--test/test-data.sha12
-rw-r--r--test/test.mk2
-rw-r--r--test/test_vectors.cc1
-rw-r--r--test/test_vectors.h4
4 files changed, 7 insertions, 2 deletions
diff --git a/test/test-data.sha1 b/test/test-data.sha1
index 442bfd23f..03881c772 100644
--- a/test/test-data.sha1
+++ b/test/test-data.sha1
@@ -569,3 +569,5 @@ e448b6e83490bca0f8d58b4f4b1126a17baf4b0c vp90-2-08-tile_1x8.webm
5e524165f0397e6141d914f4f0a66267d7658376 vp90-2-08-tile_1x8.webm.md5
a34e14923d6d17b1144254d8187d7f85b700a63c vp90-2-02-size-lf-1920x1080.webm
e3b28ddcfaeb37fb4d132b93f92642a9ad17c22d vp90-2-02-size-lf-1920x1080.webm.md5
+d48c5db1b0f8e60521a7c749696b8067886033a3 vp90-2-09-aq2.webm
+84c1599298aac78f2fc05ae2274575d10569dfa0 vp90-2-09-aq2.webm.md5
diff --git a/test/test.mk b/test/test.mk
index 361a34fa4..2905a1a49 100644
--- a/test/test.mk
+++ b/test/test.mk
@@ -668,6 +668,8 @@ LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-08-tile-4x1.webm
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-08-tile-4x1.webm.md5
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-09-subpixel-00.ivf
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-09-subpixel-00.ivf.md5
+LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-09-aq2.webm
+LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp90-2-09-aq2.webm.md5
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp91-2-04-yv444.webm
LIBVPX_TEST_DATA-$(CONFIG_VP9_DECODER) += vp91-2-04-yv444.webm.md5
diff --git a/test/test_vectors.cc b/test/test_vectors.cc
index 7ffecf087..5b58c4a48 100644
--- a/test/test_vectors.cc
+++ b/test/test_vectors.cc
@@ -158,6 +158,7 @@ const char *kVP9TestVectors[kNumVp9TestVectors] = {
"vp90-2-08-tile-4x4.webm", "vp90-2-08-tile-4x1.webm",
"vp90-2-09-subpixel-00.ivf",
"vp90-2-02-size-lf-1920x1080.webm",
+ "vp90-2-09-aq2.webm",
#if CONFIG_NON420
"vp91-2-04-yv444.webm"
#endif
diff --git a/test/test_vectors.h b/test/test_vectors.h
index 942175aa2..491de337c 100644
--- a/test/test_vectors.h
+++ b/test/test_vectors.h
@@ -22,9 +22,9 @@ extern const char *kVP8TestVectors[kNumVp8TestVectors];
#if CONFIG_VP9_DECODER
#if CONFIG_NON420
-const int kNumVp9TestVectors = 214;
+const int kNumVp9TestVectors = 215;
#else
-const int kNumVp9TestVectors = 213;
+const int kNumVp9TestVectors = 214;
#endif
extern const char *kVP9TestVectors[kNumVp9TestVectors];