Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
libvpx
Commits
575c1933
Commit
575c1933
authored
Dec 06, 2017
by
Marco Paniconi
Committed by
Gerrit Code Review
Dec 06, 2017
Browse files
Merge "vp9: Nonrd-pickmode: move some early exits up."
parents
2e44f164
33953f31
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vp9/encoder/vp9_pickmode.c
vp9/encoder/vp9_pickmode.c
+3
-3
No files found.
vp9/encoder/vp9_pickmode.c
View file @
575c1933
...
...
@@ -1696,6 +1696,9 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x, TileDataEnc *tile_data,
comp_pred
=
1
;
}
if
(
ref_frame
>
usable_ref_frame
)
continue
;
if
(
skip_ref_find_pred
[
ref_frame
])
continue
;
if
(
flag_svc_subpel
&&
ref_frame
==
GOLDEN_FRAME
)
{
force_gf_mv
=
1
;
// Only test mode if NEARESTMV/NEARMV is (svc_mv_col, svc_mv_row),
...
...
@@ -1719,9 +1722,6 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x, TileDataEnc *tile_data,
if
(
segfeature_active
(
seg
,
mi
->
segment_id
,
SEG_LVL_REF_FRAME
))
continue
;
}
if
(
ref_frame
>
usable_ref_frame
)
continue
;
if
(
skip_ref_find_pred
[
ref_frame
])
continue
;
// For SVC, skip the golden (spatial) reference search if sse of zeromv_last
// is below threshold.
if
(
cpi
->
use_svc
&&
ref_frame
==
GOLDEN_FRAME
&&
...
...
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