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

Side by Side Diff: source/libvpx/vp9/encoder/vp9_tokenize.h

Issue 181493009: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 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 | 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 29 matching lines...) Expand all
40 extern const vp9_tree_index vp9_coef_con_tree[]; 40 extern const vp9_tree_index vp9_coef_con_tree[];
41 extern struct vp9_token vp9_coef_encodings[]; 41 extern struct vp9_token vp9_coef_encodings[];
42 42
43 int vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane); 43 int vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane);
44 44
45 struct VP9_COMP; 45 struct VP9_COMP;
46 46
47 void vp9_tokenize_sb(struct VP9_COMP *cpi, TOKENEXTRA **t, int dry_run, 47 void vp9_tokenize_sb(struct VP9_COMP *cpi, TOKENEXTRA **t, int dry_run,
48 BLOCK_SIZE bsize); 48 BLOCK_SIZE bsize);
49 49
50 extern const int *vp9_dct_value_cost_ptr; 50 extern const int16_t *vp9_dct_value_cost_ptr;
51 /* TODO: The Token field should be broken out into a separate char array to 51 /* TODO: The Token field should be broken out into a separate char array to
52 * improve cache locality, since it's needed for costing when the rest of the 52 * improve cache locality, since it's needed for costing when the rest of the
53 * fields are not. 53 * fields are not.
54 */ 54 */
55 extern const TOKENVALUE *vp9_dct_value_tokens_ptr; 55 extern const TOKENVALUE *vp9_dct_value_tokens_ptr;
56 56
57 #ifdef __cplusplus 57 #ifdef __cplusplus
58 } // extern "C" 58 } // extern "C"
59 #endif 59 #endif
60 60
61 #endif // VP9_ENCODER_VP9_TOKENIZE_H_ 61 #endif // VP9_ENCODER_VP9_TOKENIZE_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_temporal_filter.c ('k') | source/libvpx/vp9/encoder/vp9_tokenize.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698