| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 int64_t *returndistortion, | 73 int64_t *returndistortion, |
| 74 BLOCK_SIZE bsize, | 74 BLOCK_SIZE bsize, |
| 75 PICK_MODE_CONTEXT *ctx, | 75 PICK_MODE_CONTEXT *ctx, |
| 76 int64_t best_rd_so_far); | 76 int64_t best_rd_so_far); |
| 77 | 77 |
| 78 void vp9_init_me_luts(); | 78 void vp9_init_me_luts(); |
| 79 | 79 |
| 80 void vp9_set_mbmode_and_mvs(MACROBLOCKD *xd, MB_PREDICTION_MODE mode, | 80 void vp9_set_mbmode_and_mvs(MACROBLOCKD *xd, MB_PREDICTION_MODE mode, |
| 81 const MV *mv); | 81 const MV *mv); |
| 82 | 82 |
| 83 void vp9_get_entropy_contexts(TX_SIZE tx_size, | 83 void vp9_get_entropy_contexts(BLOCK_SIZE bsize, TX_SIZE tx_size, |
| 84 ENTROPY_CONTEXT t_above[16], ENTROPY_CONTEXT t_left[16], | 84 const struct macroblockd_plane *pd, |
| 85 const ENTROPY_CONTEXT *above, const ENTROPY_CONTEXT *left, | 85 ENTROPY_CONTEXT t_above[16], |
| 86 int num_4x4_w, int num_4x4_h); | 86 ENTROPY_CONTEXT t_left[16]); |
| 87 | 87 |
| 88 #ifdef __cplusplus | 88 #ifdef __cplusplus |
| 89 } // extern "C" | 89 } // extern "C" |
| 90 #endif | 90 #endif |
| 91 | 91 |
| 92 #endif // VP9_ENCODER_VP9_RDOPT_H_ | 92 #endif // VP9_ENCODER_VP9_RDOPT_H_ |
| OLD | NEW |