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

Side by Side Diff: source/libvpx/vp9/common/x86/vp9_recon_wrapper_sse2.c

Issue 11974002: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2010 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
11 #include "vpx_ports/config.h" 11 #include "./vpx_config.h"
12 #include "vpx_mem/vpx_mem.h" 12 #include "vpx_mem/vpx_mem.h"
13 #include "vp9/common/vp9_blockd.h" 13 #include "vp9/common/vp9_blockd.h"
14 14
15 #define build_intra_predictors_mbuv_prototype(sym) \ 15 #define build_intra_predictors_mbuv_prototype(sym) \
16 void sym(unsigned char *dst, int dst_stride, \ 16 void sym(unsigned char *dst, int dst_stride, \
17 const unsigned char *src, int src_stride) 17 const unsigned char *src, int src_stride)
18 typedef build_intra_predictors_mbuv_prototype((*build_intra_pred_mbuv_fn_t)); 18 typedef build_intra_predictors_mbuv_prototype((*build_intra_pred_mbuv_fn_t));
19 19
20 extern build_intra_predictors_mbuv_prototype(vp9_intra_pred_uv_dc_mmx2); 20 extern build_intra_predictors_mbuv_prototype(vp9_intra_pred_uv_dc_mmx2);
21 extern build_intra_predictors_mbuv_prototype(vp9_intra_pred_uv_dctop_mmx2); 21 extern build_intra_predictors_mbuv_prototype(vp9_intra_pred_uv_dctop_mmx2);
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 vp9_intra_pred_uv_tm_sse2, 92 vp9_intra_pred_uv_tm_sse2,
93 vp9_intra_pred_uv_ho_mmx2); 93 vp9_intra_pred_uv_ho_mmx2);
94 } 94 }
95 95
96 void vp9_build_intra_predictors_mbuv_s_ssse3(MACROBLOCKD *xd) { 96 void vp9_build_intra_predictors_mbuv_s_ssse3(MACROBLOCKD *xd) {
97 build_intra_predictors_mbuv_x86(xd, xd->dst.u_buffer, 97 build_intra_predictors_mbuv_x86(xd, xd->dst.u_buffer,
98 xd->dst.v_buffer, xd->dst.uv_stride, 98 xd->dst.v_buffer, xd->dst.uv_stride,
99 vp9_intra_pred_uv_tm_ssse3, 99 vp9_intra_pred_uv_tm_ssse3,
100 vp9_intra_pred_uv_ho_ssse3); 100 vp9_intra_pred_uv_ho_ssse3);
101 } 101 }
OLDNEW
« no previous file with comments | « source/libvpx/vp9/common/x86/vp9_loopfilter_x86.c ('k') | source/libvpx/vp9/common/x86/vp9_sadmxn_x86.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698