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

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

Issue 756673003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years 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/encoder/bitstream.c ('k') | source/libvpx/vp8/encoder/denoising.c » ('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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 int last_zbin_mode_boost; 153 int last_zbin_mode_boost;
154 154
155 int last_zbin_over_quant; 155 int last_zbin_over_quant;
156 int zbin_over_quant; 156 int zbin_over_quant;
157 int error_bins[MAX_ERROR_BINS]; 157 int error_bins[MAX_ERROR_BINS];
158 158
159 void (*short_fdct4x4)(short *input, short *output, int pitch); 159 void (*short_fdct4x4)(short *input, short *output, int pitch);
160 void (*short_fdct8x4)(short *input, short *output, int pitch); 160 void (*short_fdct8x4)(short *input, short *output, int pitch);
161 void (*short_walsh4x4)(short *input, short *output, int pitch); 161 void (*short_walsh4x4)(short *input, short *output, int pitch);
162 void (*quantize_b)(BLOCK *b, BLOCKD *d); 162 void (*quantize_b)(BLOCK *b, BLOCKD *d);
163 void (*quantize_b_pair)(BLOCK *b1, BLOCK *b2, BLOCKD *d0, BLOCKD *d1);
164 163
165 } MACROBLOCK; 164 } MACROBLOCK;
166 165
167 166
168 #ifdef __cplusplus 167 #ifdef __cplusplus
169 } // extern "C" 168 } // extern "C"
170 #endif 169 #endif
171 170
172 #endif // VP8_ENCODER_BLOCK_H_ 171 #endif // VP8_ENCODER_BLOCK_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp8/encoder/bitstream.c ('k') | source/libvpx/vp8/encoder/denoising.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698