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

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

Issue 390713002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: libvpx: Pull from upstream Created 6 years, 5 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_encodemb.c ('k') | source/libvpx/vp9/encoder/vp9_encoder.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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 unsigned char *segmentation_map; 331 unsigned char *segmentation_map;
332 332
333 // segment threashold for encode breakout 333 // segment threashold for encode breakout
334 int segment_encode_breakout[MAX_SEGMENTS]; 334 int segment_encode_breakout[MAX_SEGMENTS];
335 335
336 unsigned char *complexity_map; 336 unsigned char *complexity_map;
337 337
338 CYCLIC_REFRESH *cyclic_refresh; 338 CYCLIC_REFRESH *cyclic_refresh;
339 339
340 fractional_mv_step_fp *find_fractional_mv_step; 340 fractional_mv_step_fp *find_fractional_mv_step;
341 fractional_mv_step_comp_fp *find_fractional_mv_step_comp;
342 vp9_full_search_fn_t full_search_sad; 341 vp9_full_search_fn_t full_search_sad;
343 vp9_refining_search_fn_t refining_search_sad; 342 vp9_refining_search_fn_t refining_search_sad;
344 vp9_diamond_search_fn_t diamond_search_sad; 343 vp9_diamond_search_fn_t diamond_search_sad;
345 vp9_variance_fn_ptr_t fn_ptr[BLOCK_SIZES]; 344 vp9_variance_fn_ptr_t fn_ptr[BLOCK_SIZES];
346 uint64_t time_receive_data; 345 uint64_t time_receive_data;
347 uint64_t time_compress_data; 346 uint64_t time_compress_data;
348 uint64_t time_pick_lpf; 347 uint64_t time_pick_lpf;
349 uint64_t time_encode_sb_row; 348 uint64_t time_encode_sb_row;
350 349
351 #if CONFIG_FP_MB_STATS 350 #if CONFIG_FP_MB_STATS
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 546
548 static INLINE int get_chessboard_index(const VP9_COMMON *cm) { 547 static INLINE int get_chessboard_index(const VP9_COMMON *cm) {
549 return cm->current_video_frame % 2; 548 return cm->current_video_frame % 2;
550 } 549 }
551 550
552 #ifdef __cplusplus 551 #ifdef __cplusplus
553 } // extern "C" 552 } // extern "C"
554 #endif 553 #endif
555 554
556 #endif // VP9_ENCODER_VP9_ENCODER_H_ 555 #endif // VP9_ENCODER_VP9_ENCODER_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_encodemb.c ('k') | source/libvpx/vp9/encoder/vp9_encoder.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698