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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 int q_index; | 120 int q_index; |
121 | 121 |
122 #if CONFIG_TEMPORAL_DENOISING | 122 #if CONFIG_TEMPORAL_DENOISING |
123 MB_PREDICTION_MODE best_sse_inter_mode; | 123 MB_PREDICTION_MODE best_sse_inter_mode; |
124 int_mv best_sse_mv; | 124 int_mv best_sse_mv; |
125 MV_REFERENCE_FRAME best_reference_frame; | 125 MV_REFERENCE_FRAME best_reference_frame; |
126 MV_REFERENCE_FRAME best_zeromv_reference_frame; | 126 MV_REFERENCE_FRAME best_zeromv_reference_frame; |
127 unsigned char need_to_clamp_best_mvs; | 127 unsigned char need_to_clamp_best_mvs; |
128 #endif | 128 #endif |
129 | 129 |
130 int skip_true_count; | |
131 unsigned int coef_counts [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [MA
X_ENTROPY_TOKENS]; | |
132 unsigned int MVcount [2] [MVvals]; /* (row,col) MV cts this frame */ | |
133 int ymode_count [VP8_YMODES]; /* intra MB type cts this frame */ | |
134 int uv_mode_count[VP8_UV_MODES]; /* intra MB type cts this frame */ | |
135 int64_t prediction_error; | |
136 int64_t intra_error; | |
137 | 130 |
138 | 131 |
139 void (*short_fdct4x4)(short *input, short *output, int pitch); | 132 void (*short_fdct4x4)(short *input, short *output, int pitch); |
140 void (*short_fdct8x4)(short *input, short *output, int pitch); | 133 void (*short_fdct8x4)(short *input, short *output, int pitch); |
141 void (*short_walsh4x4)(short *input, short *output, int pitch); | 134 void (*short_walsh4x4)(short *input, short *output, int pitch); |
142 void (*quantize_b)(BLOCK *b, BLOCKD *d); | 135 void (*quantize_b)(BLOCK *b, BLOCKD *d); |
143 void (*quantize_b_pair)(BLOCK *b1, BLOCK *b2, BLOCKD *d0, BLOCKD *d1); | 136 void (*quantize_b_pair)(BLOCK *b1, BLOCK *b2, BLOCKD *d0, BLOCKD *d1); |
144 | 137 |
145 } MACROBLOCK; | 138 } MACROBLOCK; |
146 | 139 |
147 | 140 |
148 #endif | 141 #endif |
OLD | NEW |