Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(546)

Side by Side Diff: source/libvpx/test/sixtap_predict_test.cc

Issue 232133009: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « source/libvpx/test/set_roi.cc ('k') | source/libvpx/test/superframe_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 C, SixtapPredictTest, ::testing::Values( 191 C, SixtapPredictTest, ::testing::Values(
192 make_tuple(16, 16, sixtap_16x16_c), 192 make_tuple(16, 16, sixtap_16x16_c),
193 make_tuple(8, 8, sixtap_8x8_c), 193 make_tuple(8, 8, sixtap_8x8_c),
194 make_tuple(8, 4, sixtap_8x4_c), 194 make_tuple(8, 4, sixtap_8x4_c),
195 make_tuple(4, 4, sixtap_4x4_c))); 195 make_tuple(4, 4, sixtap_4x4_c)));
196 #if HAVE_NEON 196 #if HAVE_NEON
197 const sixtap_predict_fn_t sixtap_16x16_neon = vp8_sixtap_predict16x16_neon; 197 const sixtap_predict_fn_t sixtap_16x16_neon = vp8_sixtap_predict16x16_neon;
198 const sixtap_predict_fn_t sixtap_8x8_neon = vp8_sixtap_predict8x8_neon; 198 const sixtap_predict_fn_t sixtap_8x8_neon = vp8_sixtap_predict8x8_neon;
199 const sixtap_predict_fn_t sixtap_8x4_neon = vp8_sixtap_predict8x4_neon; 199 const sixtap_predict_fn_t sixtap_8x4_neon = vp8_sixtap_predict8x4_neon;
200 INSTANTIATE_TEST_CASE_P( 200 INSTANTIATE_TEST_CASE_P(
201 NEON, SixtapPredictTest, ::testing::Values( 201 DISABLED_NEON, SixtapPredictTest, ::testing::Values(
202 make_tuple(16, 16, sixtap_16x16_neon), 202 make_tuple(16, 16, sixtap_16x16_neon),
203 make_tuple(8, 8, sixtap_8x8_neon), 203 make_tuple(8, 8, sixtap_8x8_neon),
204 make_tuple(8, 4, sixtap_8x4_neon))); 204 make_tuple(8, 4, sixtap_8x4_neon)));
205 #endif 205 #endif
206 #if HAVE_MMX 206 #if HAVE_MMX
207 const sixtap_predict_fn_t sixtap_16x16_mmx = vp8_sixtap_predict16x16_mmx; 207 const sixtap_predict_fn_t sixtap_16x16_mmx = vp8_sixtap_predict16x16_mmx;
208 const sixtap_predict_fn_t sixtap_8x8_mmx = vp8_sixtap_predict8x8_mmx; 208 const sixtap_predict_fn_t sixtap_8x8_mmx = vp8_sixtap_predict8x8_mmx;
209 const sixtap_predict_fn_t sixtap_8x4_mmx = vp8_sixtap_predict8x4_mmx; 209 const sixtap_predict_fn_t sixtap_8x4_mmx = vp8_sixtap_predict8x4_mmx;
210 const sixtap_predict_fn_t sixtap_4x4_mmx = vp8_sixtap_predict4x4_mmx; 210 const sixtap_predict_fn_t sixtap_4x4_mmx = vp8_sixtap_predict4x4_mmx;
211 INSTANTIATE_TEST_CASE_P( 211 INSTANTIATE_TEST_CASE_P(
(...skipping 19 matching lines...) Expand all
231 const sixtap_predict_fn_t sixtap_8x4_ssse3 = vp8_sixtap_predict8x4_ssse3; 231 const sixtap_predict_fn_t sixtap_8x4_ssse3 = vp8_sixtap_predict8x4_ssse3;
232 const sixtap_predict_fn_t sixtap_4x4_ssse3 = vp8_sixtap_predict4x4_ssse3; 232 const sixtap_predict_fn_t sixtap_4x4_ssse3 = vp8_sixtap_predict4x4_ssse3;
233 INSTANTIATE_TEST_CASE_P( 233 INSTANTIATE_TEST_CASE_P(
234 SSSE3, SixtapPredictTest, ::testing::Values( 234 SSSE3, SixtapPredictTest, ::testing::Values(
235 make_tuple(16, 16, sixtap_16x16_ssse3), 235 make_tuple(16, 16, sixtap_16x16_ssse3),
236 make_tuple(8, 8, sixtap_8x8_ssse3), 236 make_tuple(8, 8, sixtap_8x8_ssse3),
237 make_tuple(8, 4, sixtap_8x4_ssse3), 237 make_tuple(8, 4, sixtap_8x4_ssse3),
238 make_tuple(4, 4, sixtap_4x4_ssse3))); 238 make_tuple(4, 4, sixtap_4x4_ssse3)));
239 #endif 239 #endif
240 } // namespace 240 } // namespace
OLDNEW
« no previous file with comments | « source/libvpx/test/set_roi.cc ('k') | source/libvpx/test/superframe_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698