| 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 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 const InterpKernel *kernel, | 43 const InterpKernel *kernel, |
| 44 int xs, int ys, int bd); | 44 int xs, int ys, int bd); |
| 45 #endif // CONFIG_VP9_HIGHBITDEPTH | 45 #endif // CONFIG_VP9_HIGHBITDEPTH |
| 46 | 46 |
| 47 MV average_split_mvs(const struct macroblockd_plane *pd, const MODE_INFO *mi, | 47 MV average_split_mvs(const struct macroblockd_plane *pd, const MODE_INFO *mi, |
| 48 int ref, int block); | 48 int ref, int block); |
| 49 | 49 |
| 50 MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_mv, | 50 MV clamp_mv_to_umv_border_sb(const MACROBLOCKD *xd, const MV *src_mv, |
| 51 int bw, int bh, int ss_x, int ss_y); | 51 int bw, int bh, int ss_x, int ss_y); |
| 52 | 52 |
| 53 void build_inter_predictors(MACROBLOCKD *xd, int plane, int block, | |
| 54 int bw, int bh, | |
| 55 int x, int y, int w, int h, | |
| 56 int mi_x, int mi_y); | |
| 57 | |
| 58 void vp9_build_inter_predictors_sby(MACROBLOCKD *xd, int mi_row, int mi_col, | 53 void vp9_build_inter_predictors_sby(MACROBLOCKD *xd, int mi_row, int mi_col, |
| 59 BLOCK_SIZE bsize); | 54 BLOCK_SIZE bsize); |
| 60 | 55 |
| 61 void vp9_build_inter_predictors_sbp(MACROBLOCKD *xd, int mi_row, int mi_col, | 56 void vp9_build_inter_predictors_sbp(MACROBLOCKD *xd, int mi_row, int mi_col, |
| 62 BLOCK_SIZE bsize, int plane); | 57 BLOCK_SIZE bsize, int plane); |
| 63 | 58 |
| 64 void vp9_build_inter_predictors_sbuv(MACROBLOCKD *xd, int mi_row, int mi_col, | 59 void vp9_build_inter_predictors_sbuv(MACROBLOCKD *xd, int mi_row, int mi_col, |
| 65 BLOCK_SIZE bsize); | 60 BLOCK_SIZE bsize); |
| 66 | 61 |
| 67 void vp9_build_inter_predictors_sb(MACROBLOCKD *xd, int mi_row, int mi_col, | 62 void vp9_build_inter_predictors_sb(MACROBLOCKD *xd, int mi_row, int mi_col, |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 106 |
| 112 void vp9_setup_pre_planes(MACROBLOCKD *xd, int idx, | 107 void vp9_setup_pre_planes(MACROBLOCKD *xd, int idx, |
| 113 const YV12_BUFFER_CONFIG *src, int mi_row, int mi_col, | 108 const YV12_BUFFER_CONFIG *src, int mi_row, int mi_col, |
| 114 const struct scale_factors *sf); | 109 const struct scale_factors *sf); |
| 115 | 110 |
| 116 #ifdef __cplusplus | 111 #ifdef __cplusplus |
| 117 } // extern "C" | 112 } // extern "C" |
| 118 #endif | 113 #endif |
| 119 | 114 |
| 120 #endif // VP9_COMMON_VP9_RECONINTER_H_ | 115 #endif // VP9_COMMON_VP9_RECONINTER_H_ |
| OLD | NEW |