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

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

Issue 1162573005: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « source/libvpx/test/md5_helper.h ('k') | source/libvpx/test/sad_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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 &vp9_idct32x32_1024_add_c, 317 &vp9_idct32x32_1024_add_c,
318 &vp9_idct32x32_1_add_msa, 318 &vp9_idct32x32_1_add_msa,
319 TX_32X32, 1), 319 TX_32X32, 1),
320 make_tuple(&vp9_fdct16x16_c, 320 make_tuple(&vp9_fdct16x16_c,
321 &vp9_idct16x16_256_add_c, 321 &vp9_idct16x16_256_add_c,
322 &vp9_idct16x16_10_add_msa, 322 &vp9_idct16x16_10_add_msa,
323 TX_16X16, 10), 323 TX_16X16, 10),
324 make_tuple(&vp9_fdct16x16_c, 324 make_tuple(&vp9_fdct16x16_c,
325 &vp9_idct16x16_256_add_c, 325 &vp9_idct16x16_256_add_c,
326 &vp9_idct16x16_1_add_msa, 326 &vp9_idct16x16_1_add_msa,
327 TX_16X16, 1))); 327 TX_16X16, 1),
328 make_tuple(&vp9_fdct8x8_c,
329 &vp9_idct8x8_64_add_c,
330 &vp9_idct8x8_12_add_msa,
331 TX_8X8, 10),
332 make_tuple(&vp9_fdct8x8_c,
333 &vp9_idct8x8_64_add_c,
334 &vp9_idct8x8_1_add_msa,
335 TX_8X8, 1)));
328 #endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE 336 #endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
329 337
330 } // namespace 338 } // namespace
OLDNEW
« no previous file with comments | « source/libvpx/test/md5_helper.h ('k') | source/libvpx/test/sad_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698