Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
a7ccc129
Commit
a7ccc129
authored
Sep 03, 2014
by
Dmitry Kovalev
Browse files
Small cleanup: reusing existing code.
Change-Id: Iac4775ad98e988f2b9cf5bd0dc91ab994d0262ce
parent
095d48a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_pickmode.c
View file @
a7ccc129
...
...
@@ -394,7 +394,7 @@ static void estimate_block_intra(int plane, int block, BLOCK_SIZE plane_bsize,
args
->
dist
+=
dist
;
}
static
const
THR_MODES
mode_idx
[
MAX_REF_FRAMES
-
1
][
4
]
=
{
static
const
THR_MODES
mode_idx
[
MAX_REF_FRAMES
-
1
][
INTER_MODES
]
=
{
{
THR_NEARESTMV
,
THR_NEARMV
,
THR_ZEROMV
,
THR_NEWMV
},
{
THR_NEARESTG
,
THR_NEARG
,
THR_ZEROG
,
THR_NEWG
},
{
THR_NEARESTA
,
THR_NEARA
,
THR_ZEROA
,
THR_NEWA
},
...
...
@@ -547,7 +547,7 @@ int64_t vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
continue
;
mode_rd_thresh
=
rd_threshes
[
mode_idx
[
ref_frame
-
LAST_FRAME
]
[
this_mode
-
NEARESTMV
]];
[
INTER_OFFSET
(
this_mode
)
]];
if
(
rd_less_than_thresh
(
best_rd
,
mode_rd_thresh
,
rd_thresh_freq_fact
[
this_mode
]))
continue
;
...
...
Write
Preview
Markdown
is supported
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