| 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 | 11 |
| 12 #ifndef __INC_MCOMP_H | 12 #ifndef __INC_MCOMP_H |
| 13 #define __INC_MCOMP_H | 13 #define __INC_MCOMP_H |
| 14 | 14 |
| 15 #include "block.h" | 15 #include "block.h" |
| 16 #include "vp8/common/variance.h" | 16 #include "vp8/common/variance.h" |
| 17 | 17 |
| 18 #ifdef ENTROPY_STATS | 18 #ifdef VP8_ENTROPY_STATS |
| 19 extern void init_mv_ref_counts(); | 19 extern void init_mv_ref_counts(); |
| 20 extern void accum_mv_refs(MB_PREDICTION_MODE, const int near_mv_ref_cts[4]); | 20 extern void accum_mv_refs(MB_PREDICTION_MODE, const int near_mv_ref_cts[4]); |
| 21 #endif | 21 #endif |
| 22 | 22 |
| 23 | 23 |
| 24 /* The maximum number of steps in a step search given the largest allowed | 24 /* The maximum number of steps in a step search given the largest allowed |
| 25 * initial step | 25 * initial step |
| 26 */ | 26 */ |
| 27 #define MAX_MVSEARCH_STEPS 8 | 27 #define MAX_MVSEARCH_STEPS 8 |
| 28 | 28 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 int_mv *best_mv, | 98 int_mv *best_mv, |
| 99 int search_param, | 99 int search_param, |
| 100 int sad_per_bit, | 100 int sad_per_bit, |
| 101 int *num00, | 101 int *num00, |
| 102 vp8_variance_fn_ptr_t *fn_ptr, | 102 vp8_variance_fn_ptr_t *fn_ptr, |
| 103 int *mvcost[2], | 103 int *mvcost[2], |
| 104 int_mv *center_mv | 104 int_mv *center_mv |
| 105 ); | 105 ); |
| 106 | 106 |
| 107 #endif | 107 #endif |
| OLD | NEW |