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
Yushin Cho
aom-rav1e
Commits
6eb05c9e
Commit
6eb05c9e
authored
Apr 02, 2015
by
Marco
Browse files
Small fix to segment check in pickmode.
Change-Id: Id5fd82a504def2523292466fbaad5dade9424c72
parent
b8a1de86
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_pickmode.c
View file @
6eb05c9e
...
...
@@ -1330,8 +1330,9 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
vp9_build_inter_predictors_sby
(
xd
,
mi_row
,
mi_col
,
bsize
);
// For large partition blocks, extra testing is done.
if
(
bsize
>
BLOCK_32X32
&&
xd
->
mi
[
0
].
src_mi
->
mbmi
.
segment_id
!=
1
&&
cm
->
base_qindex
)
{
if
(
bsize
>
BLOCK_32X32
&&
!
cyclic_refresh_segment_id_boosted
(
xd
->
mi
[
0
].
src_mi
->
mbmi
.
segment_id
)
&&
cm
->
base_qindex
)
{
model_rd_for_sb_y_large
(
cpi
,
bsize
,
x
,
xd
,
&
this_rdc
.
rate
,
&
this_rdc
.
dist
,
&
var_y
,
&
sse_y
,
mi_row
,
mi_col
,
&
this_early_term
);
...
...
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