Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(504)

Side by Side Diff: source/libvpx/vp8/encoder/block.h

Issue 290613006: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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;
128 129
129 #if CONFIG_TEMPORAL_DENOISING 130 #if CONFIG_TEMPORAL_DENOISING
130 MB_PREDICTION_MODE best_sse_inter_mode; 131 MB_PREDICTION_MODE best_sse_inter_mode;
131 int_mv best_sse_mv; 132 int_mv best_sse_mv;
132 MV_REFERENCE_FRAME best_reference_frame; 133 MV_REFERENCE_FRAME best_reference_frame;
133 MV_REFERENCE_FRAME best_zeromv_reference_frame; 134 MV_REFERENCE_FRAME best_zeromv_reference_frame;
134 unsigned char need_to_clamp_best_mvs; 135 unsigned char need_to_clamp_best_mvs;
135 #endif 136 #endif
136 137
137 int skip_true_count; 138 int skip_true_count;
(...skipping 24 matching lines...) Expand all
162 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);
163 164
164 } MACROBLOCK; 165 } MACROBLOCK;
165 166
166 167
167 #ifdef __cplusplus 168 #ifdef __cplusplus
168 } // extern "C" 169 } // extern "C"
169 #endif 170 #endif
170 171
171 #endif // VP8_ENCODER_BLOCK_H_ 172 #endif // VP8_ENCODER_BLOCK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698