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

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

Issue 23440041: Libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 3 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/vp9/encoder/vp9_onyx_if.c ('k') | source/libvpx/vp9/encoder/vp9_rdopt.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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 BLOCK_SIZE always_this_block_size; 277 BLOCK_SIZE always_this_block_size;
278 int auto_min_max_partition_size; 278 int auto_min_max_partition_size;
279 int auto_min_max_partition_interval; 279 int auto_min_max_partition_interval;
280 int auto_min_max_partition_count; 280 int auto_min_max_partition_count;
281 BLOCK_SIZE min_partition_size; 281 BLOCK_SIZE min_partition_size;
282 BLOCK_SIZE max_partition_size; 282 BLOCK_SIZE max_partition_size;
283 int adjust_partitioning_from_last_frame; 283 int adjust_partitioning_from_last_frame;
284 int last_partitioning_redo_frequency; 284 int last_partitioning_redo_frequency;
285 int disable_splitmv; 285 int disable_splitmv;
286 int using_small_partition_info; 286 int using_small_partition_info;
287 // TODO(jingning): combine the related motion search speed features
288 int adaptive_motion_search;
287 289
288 // Implements various heuristics to skip searching modes 290 // Implements various heuristics to skip searching modes
289 // The heuristics selected are based on flags 291 // The heuristics selected are based on flags
290 // defined in the MODE_SEARCH_SKIP_HEURISTICS enum 292 // defined in the MODE_SEARCH_SKIP_HEURISTICS enum
291 unsigned int mode_search_skip_flags; 293 unsigned int mode_search_skip_flags;
292 // A source variance threshold below which the split mode is disabled 294 // A source variance threshold below which the split mode is disabled
293 unsigned int disable_split_var_thresh; 295 unsigned int disable_split_var_thresh;
294 // A source variance threshold below which filter search is disabled 296 // A source variance threshold below which filter search is disabled
295 // Choose a very large value (UINT_MAX) to use 8-tap always 297 // Choose a very large value (UINT_MAX) to use 8-tap always
296 unsigned int disable_filter_search_var_thresh; 298 unsigned int disable_filter_search_var_thresh;
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 void vp9_activity_masking(VP9_COMP *cpi, MACROBLOCK *x); 713 void vp9_activity_masking(VP9_COMP *cpi, MACROBLOCK *x);
712 714
713 void vp9_set_speed_features(VP9_COMP *cpi); 715 void vp9_set_speed_features(VP9_COMP *cpi);
714 716
715 extern int vp9_calc_ss_err(YV12_BUFFER_CONFIG *source, 717 extern int vp9_calc_ss_err(YV12_BUFFER_CONFIG *source,
716 YV12_BUFFER_CONFIG *dest); 718 YV12_BUFFER_CONFIG *dest);
717 719
718 extern void vp9_alloc_compressor_data(VP9_COMP *cpi); 720 extern void vp9_alloc_compressor_data(VP9_COMP *cpi);
719 721
720 #endif // VP9_ENCODER_VP9_ONYX_INT_H_ 722 #endif // VP9_ENCODER_VP9_ONYX_INT_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_onyx_if.c ('k') | source/libvpx/vp9/encoder/vp9_rdopt.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698