| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |