Skip to content
GitLab
Menu
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
73805bfa
Commit
73805bfa
authored
Sep 15, 2014
by
Jingning Han
Browse files
Fix format in vp9_rd_pick_inter_mode_sub8x8
Change-Id: I9b6a74bdf003b39235f14f8b5b7f3b861f6bf131
parent
888a8484
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_rdopt.c
View file @
73805bfa
...
...
@@ -3761,11 +3761,11 @@ int64_t vp9_rd_pick_inter_mode_sub8x8(VP9_COMP *cpi, MACROBLOCK *x,
single_rd
=
RDCOST
(
x
->
rdmult
,
x
->
rddiv
,
single_rate
,
distortion2
);
hybrid_rd
=
RDCOST
(
x
->
rdmult
,
x
->
rddiv
,
hybrid_rate
,
distortion2
);
if
(
!
comp_pred
&&
single_rd
<
best_pred_rd
[
SINGLE_REFERENCE
])
{
if
(
!
comp_pred
&&
single_rd
<
best_pred_rd
[
SINGLE_REFERENCE
])
best_pred_rd
[
SINGLE_REFERENCE
]
=
single_rd
;
}
else
if
(
comp_pred
&&
single_rd
<
best_pred_rd
[
COMPOUND_REFERENCE
])
{
else
if
(
comp_pred
&&
single_rd
<
best_pred_rd
[
COMPOUND_REFERENCE
])
best_pred_rd
[
COMPOUND_REFERENCE
]
=
single_rd
;
}
if
(
hybrid_rd
<
best_pred_rd
[
REFERENCE_MODE_SELECT
])
best_pred_rd
[
REFERENCE_MODE_SELECT
]
=
hybrid_rd
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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