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_config.h" | 11 #include "vpx_config.h" |
12 #include "vpx_rtcd.h" | 12 #include "vp8_rtcd.h" |
13 #include "vpx_mem/vpx_mem.h" | 13 #include "vpx_mem/vpx_mem.h" |
14 #include "vp8/common/blockd.h" | 14 #include "vp8/common/blockd.h" |
15 | 15 |
16 #define build_intra_predictors_mbuv_prototype(sym) \ | 16 #define build_intra_predictors_mbuv_prototype(sym) \ |
17 void sym(unsigned char *dst, int dst_stride, \ | 17 void sym(unsigned char *dst, int dst_stride, \ |
18 const unsigned char *above, \ | 18 const unsigned char *above, \ |
19 const unsigned char *left, int left_stride) | 19 const unsigned char *left, int left_stride) |
20 typedef build_intra_predictors_mbuv_prototype((*build_intra_predictors_mbuv_fn_t
)); | 20 typedef build_intra_predictors_mbuv_prototype((*build_intra_predictors_mbuv_fn_t
)); |
21 | 21 |
22 extern build_intra_predictors_mbuv_prototype(vp8_intra_pred_uv_dc_mmx2); | 22 extern build_intra_predictors_mbuv_prototype(vp8_intra_pred_uv_dc_mmx2); |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 unsigned char * yleft, | 177 unsigned char * yleft, |
178 int left_stride, | 178 int left_stride, |
179 unsigned char * ypred_ptr, | 179 unsigned char * ypred_ptr, |
180 int y_stride) | 180 int y_stride) |
181 { | 181 { |
182 vp8_build_intra_predictors_mby_x86(x, yabove_row, ypred_ptr, | 182 vp8_build_intra_predictors_mby_x86(x, yabove_row, ypred_ptr, |
183 y_stride, yleft, left_stride, | 183 y_stride, yleft, left_stride, |
184 vp8_intra_pred_y_tm_ssse3); | 184 vp8_intra_pred_y_tm_ssse3); |
185 | 185 |
186 } | 186 } |
OLD | NEW |