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
155b9416
Commit
155b9416
authored
Jul 07, 2015
by
Marco
Committed by
Gerrit Code Review
Jul 07, 2015
Browse files
Merge "Update to speed 5 non-rd mode partition search."
parents
c2d0f9dd
478fbc8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
155b9416
...
...
@@ -3349,8 +3349,13 @@ static void nonrd_select_partition(VP9_COMP *cpi,
subsize
=
(
bsize
>=
BLOCK_8X8
)
?
mi
[
0
]
->
mbmi
.
sb_type
:
BLOCK_4X4
;
partition
=
partition_lookup
[
bsl
][
subsize
];
if
(
bsize
==
BLOCK_32X32
&&
partition
!=
PARTITION_NONE
&&
subsize
>=
BLOCK_16X16
)
{
if
(
bsize
==
BLOCK_32X32
&&
subsize
==
BLOCK_32X32
)
{
x
->
max_partition_size
=
BLOCK_32X32
;
x
->
min_partition_size
=
BLOCK_16X16
;
nonrd_pick_partition
(
cpi
,
td
,
tile_data
,
tp
,
mi_row
,
mi_col
,
bsize
,
rd_cost
,
0
,
INT64_MAX
,
pc_tree
);
}
else
if
(
bsize
==
BLOCK_32X32
&&
partition
!=
PARTITION_NONE
&&
subsize
>=
BLOCK_16X16
)
{
x
->
max_partition_size
=
BLOCK_32X32
;
x
->
min_partition_size
=
BLOCK_8X8
;
nonrd_pick_partition
(
cpi
,
td
,
tile_data
,
tp
,
mi_row
,
mi_col
,
bsize
,
...
...
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