| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 118 |
| 119 unsigned int encode_breakout; | 119 unsigned int encode_breakout; |
| 120 | 120 |
| 121 signed char *gf_active_ptr; | 121 signed char *gf_active_ptr; |
| 122 | 122 |
| 123 unsigned char *active_ptr; | 123 unsigned char *active_ptr; |
| 124 MV_CONTEXT *mvc; | 124 MV_CONTEXT *mvc; |
| 125 | 125 |
| 126 int optimize; | 126 int optimize; |
| 127 int q_index; | 127 int q_index; |
| 128 int increase_denoising; | |
| 129 | 128 |
| 130 #if CONFIG_TEMPORAL_DENOISING | 129 #if CONFIG_TEMPORAL_DENOISING |
| 130 int increase_denoising; |
| 131 MB_PREDICTION_MODE best_sse_inter_mode; | 131 MB_PREDICTION_MODE best_sse_inter_mode; |
| 132 int_mv best_sse_mv; | 132 int_mv best_sse_mv; |
| 133 MV_REFERENCE_FRAME best_reference_frame; | 133 MV_REFERENCE_FRAME best_reference_frame; |
| 134 MV_REFERENCE_FRAME best_zeromv_reference_frame; | 134 MV_REFERENCE_FRAME best_zeromv_reference_frame; |
| 135 unsigned char need_to_clamp_best_mvs; | 135 unsigned char need_to_clamp_best_mvs; |
| 136 #endif | 136 #endif |
| 137 | 137 |
| 138 int skip_true_count; | 138 int skip_true_count; |
| 139 unsigned int coef_counts [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MA
X_ENTROPY_TOKENS]; | 139 unsigned int coef_counts [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MA
X_ENTROPY_TOKENS]; |
| 140 unsigned int MVcount [2] [MVvals]; /* (row,col) MV cts this frame */ | 140 unsigned int MVcount [2] [MVvals]; /* (row,col) MV cts this frame */ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 163 void (*quantize_b_pair)(BLOCK *b1, BLOCK *b2, BLOCKD *d0, BLOCKD *d1); | 163 void (*quantize_b_pair)(BLOCK *b1, BLOCK *b2, BLOCKD *d0, BLOCKD *d1); |
| 164 | 164 |
| 165 } MACROBLOCK; | 165 } MACROBLOCK; |
| 166 | 166 |
| 167 | 167 |
| 168 #ifdef __cplusplus | 168 #ifdef __cplusplus |
| 169 } // extern "C" | 169 } // extern "C" |
| 170 #endif | 170 #endif |
| 171 | 171 |
| 172 #endif // VP8_ENCODER_BLOCK_H_ | 172 #endif // VP8_ENCODER_BLOCK_H_ |
| OLD | NEW |