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

Side by Side Diff: source/libvpx/vp8/common/onyxc_int.h

Issue 12077018: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 11 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/vp8/common/mfqe.c ('k') | source/libvpx/vp8/common/onyxd.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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 120
121 /* We allocate a MODE_INFO struct for each macroblock, together with 121 /* We allocate a MODE_INFO struct for each macroblock, together with
122 an extra row on top and column on the left to simplify prediction. */ 122 an extra row on top and column on the left to simplify prediction. */
123 123
124 MODE_INFO *mip; /* Base of allocated array */ 124 MODE_INFO *mip; /* Base of allocated array */
125 MODE_INFO *mi; /* Corresponds to upper left visible macroblock */ 125 MODE_INFO *mi; /* Corresponds to upper left visible macroblock */
126 #if CONFIG_ERROR_CONCEALMENT 126 #if CONFIG_ERROR_CONCEALMENT
127 MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */ 127 MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */
128 MODE_INFO *prev_mi; /* 'mi' from last frame (points into prev_mip) */ 128 MODE_INFO *prev_mi; /* 'mi' from last frame (points into prev_mip) */
129 #endif 129 #endif
130 130 MODE_INFO *show_frame_mi; /* MODE_INFO for the last decoded frame
131 to show */
131 LOOPFILTERTYPE filter_type; 132 LOOPFILTERTYPE filter_type;
132 133
133 loop_filter_info_n lf_info; 134 loop_filter_info_n lf_info;
134 135
135 int filter_level; 136 int filter_level;
136 int last_sharpness_level; 137 int last_sharpness_level;
137 int sharpness_level; 138 int sharpness_level;
138 139
139 int refresh_last_frame; /* Two state 0 = NO, 1 = YES */ 140 int refresh_last_frame; /* Two state 0 = NO, 1 = YES */
140 int refresh_golden_frame; /* Two state 0 = NO, 1 = YES */ 141 int refresh_golden_frame; /* Two state 0 = NO, 1 = YES */
(...skipping 29 matching lines...) Expand all
170 #if CONFIG_MULTITHREAD 171 #if CONFIG_MULTITHREAD
171 int processor_core_count; 172 int processor_core_count;
172 #endif 173 #endif
173 #if CONFIG_POSTPROC 174 #if CONFIG_POSTPROC
174 struct postproc_state postproc_state; 175 struct postproc_state postproc_state;
175 #endif 176 #endif
176 int cpu_caps; 177 int cpu_caps;
177 } VP8_COMMON; 178 } VP8_COMMON;
178 179
179 #endif 180 #endif
OLDNEW
« no previous file with comments | « source/libvpx/vp8/common/mfqe.c ('k') | source/libvpx/vp8/common/onyxd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698