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

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

Issue 1162573005: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 6 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/vp9/encoder/vp9_ratectrl.c ('k') | source/libvpx/vp9/encoder/vp9_rd.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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 143
144 int vp9_raster_block_offset(BLOCK_SIZE plane_bsize, 144 int vp9_raster_block_offset(BLOCK_SIZE plane_bsize,
145 int raster_block, int stride); 145 int raster_block, int stride);
146 146
147 int16_t* vp9_raster_block_offset_int16(BLOCK_SIZE plane_bsize, 147 int16_t* vp9_raster_block_offset_int16(BLOCK_SIZE plane_bsize,
148 int raster_block, int16_t *base); 148 int raster_block, int16_t *base);
149 149
150 YV12_BUFFER_CONFIG *vp9_get_scaled_ref_frame(const struct VP9_COMP *cpi, 150 YV12_BUFFER_CONFIG *vp9_get_scaled_ref_frame(const struct VP9_COMP *cpi,
151 int ref_frame); 151 int ref_frame);
152 152
153 void vp9_init_me_luts(); 153 void vp9_init_me_luts(void);
154 154
155 void vp9_get_entropy_contexts(BLOCK_SIZE bsize, TX_SIZE tx_size, 155 void vp9_get_entropy_contexts(BLOCK_SIZE bsize, TX_SIZE tx_size,
156 const struct macroblockd_plane *pd, 156 const struct macroblockd_plane *pd,
157 ENTROPY_CONTEXT t_above[16], 157 ENTROPY_CONTEXT t_above[16],
158 ENTROPY_CONTEXT t_left[16]); 158 ENTROPY_CONTEXT t_left[16]);
159 159
160 void vp9_set_rd_speed_thresholds(struct VP9_COMP *cpi); 160 void vp9_set_rd_speed_thresholds(struct VP9_COMP *cpi);
161 161
162 void vp9_set_rd_speed_thresholds_sub8x8(struct VP9_COMP *cpi); 162 void vp9_set_rd_speed_thresholds_sub8x8(struct VP9_COMP *cpi);
163 163
(...skipping 17 matching lines...) Expand all
181 const struct scale_factors *scale_uv); 181 const struct scale_factors *scale_uv);
182 182
183 int vp9_get_intra_cost_penalty(int qindex, int qdelta, 183 int vp9_get_intra_cost_penalty(int qindex, int qdelta,
184 vpx_bit_depth_t bit_depth); 184 vpx_bit_depth_t bit_depth);
185 185
186 #ifdef __cplusplus 186 #ifdef __cplusplus
187 } // extern "C" 187 } // extern "C"
188 #endif 188 #endif
189 189
190 #endif // VP9_ENCODER_VP9_RD_H_ 190 #endif // VP9_ENCODER_VP9_RD_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_ratectrl.c ('k') | source/libvpx/vp9/encoder/vp9_rd.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698