| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2012 The WebM project authors. All Rights Reserved. | 2 Copyright (c) 2012 The WebM project authors. All Rights Reserved. |
| 3 | 3 |
| 4 Use of this source code is governed by a BSD-style license | 4 Use of this source code is governed by a BSD-style license |
| 5 that can be found in the LICENSE file in the root of the source | 5 that can be found in the LICENSE file in the root of the source |
| 6 tree. An additional intellectual property rights grant can be found | 6 tree. An additional intellectual property rights grant can be found |
| 7 in the file PATENTS. All contributing project authors may | 7 in the file PATENTS. All contributing project authors may |
| 8 be found in the AUTHORS file in the root of the source tree. | 8 be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 "vp90-2-03-size-210x202.webm", "vp90-2-03-size-210x208.webm", | 152 "vp90-2-03-size-210x202.webm", "vp90-2-03-size-210x208.webm", |
| 153 "vp90-2-03-size-210x210.webm", "vp90-2-03-size-210x224.webm", | 153 "vp90-2-03-size-210x210.webm", "vp90-2-03-size-210x224.webm", |
| 154 "vp90-2-03-size-210x226.webm", "vp90-2-03-size-224x196.webm", | 154 "vp90-2-03-size-210x226.webm", "vp90-2-03-size-224x196.webm", |
| 155 "vp90-2-03-size-224x198.webm", "vp90-2-03-size-224x200.webm", | 155 "vp90-2-03-size-224x198.webm", "vp90-2-03-size-224x200.webm", |
| 156 "vp90-2-03-size-224x202.webm", "vp90-2-03-size-224x208.webm", | 156 "vp90-2-03-size-224x202.webm", "vp90-2-03-size-224x208.webm", |
| 157 "vp90-2-03-size-224x210.webm", "vp90-2-03-size-224x224.webm", | 157 "vp90-2-03-size-224x210.webm", "vp90-2-03-size-224x224.webm", |
| 158 "vp90-2-03-size-224x226.webm", "vp90-2-03-size-226x196.webm", | 158 "vp90-2-03-size-224x226.webm", "vp90-2-03-size-226x196.webm", |
| 159 "vp90-2-03-size-226x198.webm", "vp90-2-03-size-226x200.webm", | 159 "vp90-2-03-size-226x198.webm", "vp90-2-03-size-226x200.webm", |
| 160 "vp90-2-03-size-226x202.webm", "vp90-2-03-size-226x208.webm", | 160 "vp90-2-03-size-226x202.webm", "vp90-2-03-size-226x208.webm", |
| 161 "vp90-2-03-size-226x210.webm", "vp90-2-03-size-226x224.webm", | 161 "vp90-2-03-size-226x210.webm", "vp90-2-03-size-226x224.webm", |
| 162 "vp90-2-03-size-226x226.webm" | 162 "vp90-2-03-size-226x226.webm", |
| 163 #if CONFIG_NON420 |
| 164 "vp91-2-04-yv444.webm" |
| 165 #endif |
| 163 }; | 166 }; |
| 164 #endif | 167 #endif |
| 165 | 168 |
| 166 class TestVectorTest : public ::libvpx_test::DecoderTest, | 169 class TestVectorTest : public ::libvpx_test::DecoderTest, |
| 167 public ::libvpx_test::CodecTestWithParam<const char*> { | 170 public ::libvpx_test::CodecTestWithParam<const char*> { |
| 168 protected: | 171 protected: |
| 169 TestVectorTest() : DecoderTest(GET_PARAM(0)), md5_file_(NULL) {} | 172 TestVectorTest() : DecoderTest(GET_PARAM(0)), md5_file_(NULL) {} |
| 170 | 173 |
| 171 virtual ~TestVectorTest() { | 174 virtual ~TestVectorTest() { |
| 172 if (md5_file_) | 175 if (md5_file_) |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 ASSERT_NO_FATAL_FAILURE(RunLoop(video)); | 230 ASSERT_NO_FATAL_FAILURE(RunLoop(video)); |
| 228 delete video; | 231 delete video; |
| 229 } | 232 } |
| 230 | 233 |
| 231 VP8_INSTANTIATE_TEST_CASE(TestVectorTest, | 234 VP8_INSTANTIATE_TEST_CASE(TestVectorTest, |
| 232 ::testing::ValuesIn(kVP8TestVectors)); | 235 ::testing::ValuesIn(kVP8TestVectors)); |
| 233 VP9_INSTANTIATE_TEST_CASE(TestVectorTest, | 236 VP9_INSTANTIATE_TEST_CASE(TestVectorTest, |
| 234 ::testing::ValuesIn(kVP9TestVectors)); | 237 ::testing::ValuesIn(kVP9TestVectors)); |
| 235 | 238 |
| 236 } // namespace | 239 } // namespace |
| OLD | NEW |