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

Side by Side Diff: source/libvpx/vp9/encoder/vp9_rdopt.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
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_ratectrl.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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 int64_t *returndistortion, 73 int64_t *returndistortion,
74 BLOCK_SIZE bsize, 74 BLOCK_SIZE bsize,
75 PICK_MODE_CONTEXT *ctx, 75 PICK_MODE_CONTEXT *ctx,
76 int64_t best_rd_so_far); 76 int64_t best_rd_so_far);
77 77
78 void vp9_init_me_luts(); 78 void vp9_init_me_luts();
79 79
80 void vp9_set_mbmode_and_mvs(MACROBLOCKD *xd, MB_PREDICTION_MODE mode, 80 void vp9_set_mbmode_and_mvs(MACROBLOCKD *xd, MB_PREDICTION_MODE mode,
81 const MV *mv); 81 const MV *mv);
82 82
83 void vp9_get_entropy_contexts(TX_SIZE tx_size, 83 void vp9_get_entropy_contexts(BLOCK_SIZE bsize, TX_SIZE tx_size,
84 ENTROPY_CONTEXT t_above[16], ENTROPY_CONTEXT t_left[16], 84 const struct macroblockd_plane *pd,
85 const ENTROPY_CONTEXT *above, const ENTROPY_CONTEXT *left, 85 ENTROPY_CONTEXT t_above[16],
86 int num_4x4_w, int num_4x4_h); 86 ENTROPY_CONTEXT t_left[16]);
87 87
88 #ifdef __cplusplus 88 #ifdef __cplusplus
89 } // extern "C" 89 } // extern "C"
90 #endif 90 #endif
91 91
92 #endif // VP9_ENCODER_VP9_RDOPT_H_ 92 #endif // VP9_ENCODER_VP9_RDOPT_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_ratectrl.c ('k') | source/libvpx/vp9/encoder/vp9_rdopt.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698