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

Side by Side Diff: source/libvpx/vp8/encoder/mcomp.h

Issue 13849011: libvpx: Pull from upstream (Closed) Base URL: https://src.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 8 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/vp8/encoder/encodemv.c ('k') | source/libvpx/vp8/encoder/mcomp.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
11 11
12 #ifndef __INC_MCOMP_H 12 #ifndef __INC_MCOMP_H
13 #define __INC_MCOMP_H 13 #define __INC_MCOMP_H
14 14
15 #include "block.h" 15 #include "block.h"
16 #include "vp8/common/variance.h" 16 #include "vp8/common/variance.h"
17 17
18 #ifdef ENTROPY_STATS 18 #ifdef VP8_ENTROPY_STATS
19 extern void init_mv_ref_counts(); 19 extern void init_mv_ref_counts();
20 extern void accum_mv_refs(MB_PREDICTION_MODE, const int near_mv_ref_cts[4]); 20 extern void accum_mv_refs(MB_PREDICTION_MODE, const int near_mv_ref_cts[4]);
21 #endif 21 #endif
22 22
23 23
24 /* The maximum number of steps in a step search given the largest allowed 24 /* The maximum number of steps in a step search given the largest allowed
25 * initial step 25 * initial step
26 */ 26 */
27 #define MAX_MVSEARCH_STEPS 8 27 #define MAX_MVSEARCH_STEPS 8
28 28
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 int_mv *best_mv, 98 int_mv *best_mv,
99 int search_param, 99 int search_param,
100 int sad_per_bit, 100 int sad_per_bit,
101 int *num00, 101 int *num00,
102 vp8_variance_fn_ptr_t *fn_ptr, 102 vp8_variance_fn_ptr_t *fn_ptr,
103 int *mvcost[2], 103 int *mvcost[2],
104 int_mv *center_mv 104 int_mv *center_mv
105 ); 105 );
106 106
107 #endif 107 #endif
OLDNEW
« no previous file with comments | « source/libvpx/vp8/encoder/encodemv.c ('k') | source/libvpx/vp8/encoder/mcomp.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698