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
f73a511d
Commit
f73a511d
authored
Dec 16, 2015
by
Marco Paniconi
Committed by
Gerrit Code Review
Dec 16, 2015
Browse files
Merge "Non-rd variance partition: Lower the 64->32 force split threshold."
parents
eace551c
26fda008
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
f73a511d
...
...
@@ -892,7 +892,6 @@ static int choose_partitioning(VP9_COMP *cpi,
}
}
}
// Fill the rest of the variance tree by summing split partition values.
avg_32x32
=
0
;
for
(
i
=
0
;
i
<
4
;
i
++
)
{
...
...
@@ -937,7 +936,7 @@ static int choose_partitioning(VP9_COMP *cpi,
// If variance of this 64x64 block is above (some threshold of) the average
// variance over the sub-32x32 blocks, then force this block to split.
if
(
!
is_key_frame
&&
vt
.
part_variances
.
none
.
variance
>
(
3
*
avg_32x32
)
>>
3
)
vt
.
part_variances
.
none
.
variance
>
(
5
*
avg_32x32
)
>>
4
)
force_split
[
0
]
=
1
;
}
...
...
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