OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 {1, "invalid-vp90-01-v2.webm"}, | 144 {1, "invalid-vp90-01-v2.webm"}, |
145 }; | 145 }; |
146 | 146 |
147 VP9_INSTANTIATE_TEST_CASE(InvalidFileInvalidPeekTest, | 147 VP9_INSTANTIATE_TEST_CASE(InvalidFileInvalidPeekTest, |
148 ::testing::ValuesIn(kVP9InvalidFileInvalidPeekTests)); | 148 ::testing::ValuesIn(kVP9InvalidFileInvalidPeekTests)); |
149 | 149 |
150 const DecodeParam kMultiThreadedVP9InvalidFileTests[] = { | 150 const DecodeParam kMultiThreadedVP9InvalidFileTests[] = { |
151 {4, "invalid-vp90-2-08-tile_1x4_frame_parallel_all_key.webm"}, | 151 {4, "invalid-vp90-2-08-tile_1x4_frame_parallel_all_key.webm"}, |
152 {4, "invalid-" | 152 {4, "invalid-" |
153 "vp90-2-08-tile_1x2_frame_parallel.webm.ivf.s47039_r01-05_b6-.ivf"}, | 153 "vp90-2-08-tile_1x2_frame_parallel.webm.ivf.s47039_r01-05_b6-.ivf"}, |
| 154 {4, "invalid-vp90-2-08-tile_1x8_frame_parallel.webm.ivf.s288_r01-05_b6-.ivf"}, |
154 {2, "invalid-vp90-2-09-aq2.webm.ivf.s3984_r01-05_b6-.v2.ivf"}, | 155 {2, "invalid-vp90-2-09-aq2.webm.ivf.s3984_r01-05_b6-.v2.ivf"}, |
155 {4, "invalid-vp90-2-09-subpixel-00.ivf.s19552_r01-05_b6-.v2.ivf"}, | 156 {4, "invalid-vp90-2-09-subpixel-00.ivf.s19552_r01-05_b6-.v2.ivf"}, |
156 }; | 157 }; |
157 | 158 |
158 INSTANTIATE_TEST_CASE_P( | 159 INSTANTIATE_TEST_CASE_P( |
159 VP9MultiThreaded, InvalidFileTest, | 160 VP9MultiThreaded, InvalidFileTest, |
160 ::testing::Combine( | 161 ::testing::Combine( |
161 ::testing::Values( | 162 ::testing::Values( |
162 static_cast<const libvpx_test::CodecFactory*>(&libvpx_test::kVP9)), | 163 static_cast<const libvpx_test::CodecFactory*>(&libvpx_test::kVP9)), |
163 ::testing::ValuesIn(kMultiThreadedVP9InvalidFileTests))); | 164 ::testing::ValuesIn(kMultiThreadedVP9InvalidFileTests))); |
164 } // namespace | 165 } // namespace |
OLD | NEW |