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

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

Issue 13042014: Description: (Closed) Base URL: https://src.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: libvpx: Pull from upstream Created 7 years, 9 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
« no previous file with comments | « source/libvpx/vp8/encoder/bitstream.c ('k') | source/libvpx/vp8/encoder/firstpass.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 19 matching lines...) Expand all
30 30
31 typedef struct block 31 typedef struct block
32 { 32 {
33 /* 16 Y blocks, 4 U blocks, 4 V blocks each with 16 entries */ 33 /* 16 Y blocks, 4 U blocks, 4 V blocks each with 16 entries */
34 short *src_diff; 34 short *src_diff;
35 short *coeff; 35 short *coeff;
36 36
37 /* 16 Y blocks, 4 U blocks, 4 V blocks each with 16 entries */ 37 /* 16 Y blocks, 4 U blocks, 4 V blocks each with 16 entries */
38 short *quant; 38 short *quant;
39 short *quant_fast; 39 short *quant_fast;
40 unsigned char *quant_shift; 40 short *quant_shift;
41 short *zbin; 41 short *zbin;
42 short *zrun_zbin_boost; 42 short *zrun_zbin_boost;
43 short *round; 43 short *round;
44 44
45 /* Zbin Over Quant value */ 45 /* Zbin Over Quant value */
46 short zbin_extra; 46 short zbin_extra;
47 47
48 unsigned char **base_src; 48 unsigned char **base_src;
49 int src; 49 int src;
50 int src_stride; 50 int src_stride;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 void (*short_fdct4x4)(short *input, short *output, int pitch); 154 void (*short_fdct4x4)(short *input, short *output, int pitch);
155 void (*short_fdct8x4)(short *input, short *output, int pitch); 155 void (*short_fdct8x4)(short *input, short *output, int pitch);
156 void (*short_walsh4x4)(short *input, short *output, int pitch); 156 void (*short_walsh4x4)(short *input, short *output, int pitch);
157 void (*quantize_b)(BLOCK *b, BLOCKD *d); 157 void (*quantize_b)(BLOCK *b, BLOCKD *d);
158 void (*quantize_b_pair)(BLOCK *b1, BLOCK *b2, BLOCKD *d0, BLOCKD *d1); 158 void (*quantize_b_pair)(BLOCK *b1, BLOCK *b2, BLOCKD *d0, BLOCKD *d1);
159 159
160 } MACROBLOCK; 160 } MACROBLOCK;
161 161
162 162
163 #endif 163 #endif
OLDNEW
« no previous file with comments | « source/libvpx/vp8/encoder/bitstream.c ('k') | source/libvpx/vp8/encoder/firstpass.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698