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

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

Issue 756673003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years 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_rd.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 11 matching lines...) Expand all
22 22
23 struct TileInfo; 23 struct TileInfo;
24 struct VP9_COMP; 24 struct VP9_COMP;
25 struct macroblock; 25 struct macroblock;
26 struct RD_COST; 26 struct RD_COST;
27 27
28 void vp9_rd_pick_intra_mode_sb(struct VP9_COMP *cpi, struct macroblock *x, 28 void vp9_rd_pick_intra_mode_sb(struct VP9_COMP *cpi, struct macroblock *x,
29 struct RD_COST *rd_cost, BLOCK_SIZE bsize, 29 struct RD_COST *rd_cost, BLOCK_SIZE bsize,
30 PICK_MODE_CONTEXT *ctx, int64_t best_rd); 30 PICK_MODE_CONTEXT *ctx, int64_t best_rd);
31 31
32 void vp9_rd_pick_inter_mode_sb(struct VP9_COMP *cpi, struct macroblock *x, 32 void vp9_rd_pick_inter_mode_sb(struct VP9_COMP *cpi,
33 const struct TileInfo *const tile, 33 struct TileDataEnc *tile_data,
34 struct macroblock *x,
34 int mi_row, int mi_col, 35 int mi_row, int mi_col,
35 struct RD_COST *rd_cost, 36 struct RD_COST *rd_cost,
36 BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx, 37 BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx,
37 int64_t best_rd_so_far); 38 int64_t best_rd_so_far);
38 39
39 void vp9_rd_pick_inter_mode_sb_seg_skip(struct VP9_COMP *cpi, 40 void vp9_rd_pick_inter_mode_sb_seg_skip(struct VP9_COMP *cpi,
41 struct TileDataEnc *tile_data,
40 struct macroblock *x, 42 struct macroblock *x,
41 struct RD_COST *rd_cost, 43 struct RD_COST *rd_cost,
42 BLOCK_SIZE bsize, 44 BLOCK_SIZE bsize,
43 PICK_MODE_CONTEXT *ctx, 45 PICK_MODE_CONTEXT *ctx,
44 int64_t best_rd_so_far); 46 int64_t best_rd_so_far);
45 47
46 void vp9_rd_pick_inter_mode_sub8x8(struct VP9_COMP *cpi, 48 void vp9_rd_pick_inter_mode_sub8x8(struct VP9_COMP *cpi,
49 struct TileDataEnc *tile_data,
47 struct macroblock *x, 50 struct macroblock *x,
48 const struct TileInfo *const tile,
49 int mi_row, int mi_col, 51 int mi_row, int mi_col,
50 struct RD_COST *rd_cost, 52 struct RD_COST *rd_cost,
51 BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx, 53 BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx,
52 int64_t best_rd_so_far); 54 int64_t best_rd_so_far);
53 #ifdef __cplusplus 55 #ifdef __cplusplus
54 } // extern "C" 56 } // extern "C"
55 #endif 57 #endif
56 58
57 #endif // VP9_ENCODER_VP9_RDOPT_H_ 59 #endif // VP9_ENCODER_VP9_RDOPT_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/encoder/vp9_rd.c ('k') | source/libvpx/vp9/encoder/vp9_rdopt.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698