Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
49bb8fba
Commit
49bb8fba
authored
Aug 16, 2014
by
James Zern
Browse files
vp9_pick_inter_mode: normalize some types
Change-Id: I4c74dcab6358817f03d3bc4d526006d241f0c10e
parent
7fe86bba
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_pickmode.c
View file @
49bb8fba
...
...
@@ -443,9 +443,9 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
20
*
vp9_dc_quant
(
cm
->
base_qindex
,
cm
->
y_dc_delta_q
);
const
int64_t
inter_mode_thresh
=
RDCOST
(
x
->
rdmult
,
x
->
rddiv
,
intra_cost_penalty
,
0
);
const
int
64_t
intra_mode_cost
=
50
;
const
int
intra_mode_cost
=
50
;
unsigned
char
segment_id
=
mbmi
->
segment_id
;
const
int8_t
segment_id
=
mbmi
->
segment_id
;
const
int
*
const
rd_threshes
=
cpi
->
rd
.
threshes
[
segment_id
][
bsize
];
const
int
*
const
rd_thresh_freq_fact
=
cpi
->
rd
.
thresh_freq_fact
[
bsize
];
INTERP_FILTER
filter_ref
=
cm
->
interp_filter
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment