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

Side by Side Diff: source/libvpx/vp9/common/vp9_onyxc_int.h

Issue 592203002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 3 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
« no previous file with comments | « source/libvpx/vp9/common/vp9_mvref_common.c ('k') | source/libvpx/vp9/common/vp9_pred_common.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 int prev_mi_idx; 143 int prev_mi_idx;
144 int mi_alloc_size; 144 int mi_alloc_size;
145 MODE_INFO *mip_array[2]; 145 MODE_INFO *mip_array[2];
146 MODE_INFO **mi_grid_base_array[2]; 146 MODE_INFO **mi_grid_base_array[2];
147 147
148 MODE_INFO *mip; /* Base of allocated array */ 148 MODE_INFO *mip; /* Base of allocated array */
149 MODE_INFO *mi; /* Corresponds to upper left visible macroblock */ 149 MODE_INFO *mi; /* Corresponds to upper left visible macroblock */
150 MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */ 150 MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */
151 MODE_INFO *prev_mi; /* 'mi' from last frame (points into prev_mip) */ 151 MODE_INFO *prev_mi; /* 'mi' from last frame (points into prev_mip) */
152 152
153 MODE_INFO **mi_grid_base;
154 MODE_INFO **mi_grid_visible;
155 MODE_INFO **prev_mi_grid_base;
156 MODE_INFO **prev_mi_grid_visible;
157
158 // Persistent mb segment id map used in prediction. 153 // Persistent mb segment id map used in prediction.
159 unsigned char *last_frame_seg_map; 154 unsigned char *last_frame_seg_map;
160 155
161 INTERP_FILTER interp_filter; 156 INTERP_FILTER interp_filter;
162 157
163 loop_filter_info_n lf_info; 158 loop_filter_info_n lf_info;
164 159
165 int refresh_frame_context; /* Two state 0 = NO, 1 = YES */ 160 int refresh_frame_context; /* Two state 0 = NO, 1 = YES */
166 161
167 int ref_frame_sign_bias[MAX_REF_FRAMES]; /* Two state 0, 1 */ 162 int ref_frame_sign_bias[MAX_REF_FRAMES]; /* Two state 0, 1 */
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 left = (left & bs) > 0; 343 left = (left & bs) > 0;
349 344
350 return (left * 2 + above) + bsl * PARTITION_PLOFFSET; 345 return (left * 2 + above) + bsl * PARTITION_PLOFFSET;
351 } 346 }
352 347
353 #ifdef __cplusplus 348 #ifdef __cplusplus
354 } // extern "C" 349 } // extern "C"
355 #endif 350 #endif
356 351
357 #endif // VP9_COMMON_VP9_ONYXC_INT_H_ 352 #endif // VP9_COMMON_VP9_ONYXC_INT_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/common/vp9_mvref_common.c ('k') | source/libvpx/vp9/common/vp9_pred_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698