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
8e029fcf
Commit
8e029fcf
authored
Jun 22, 2015
by
Marco
Committed by
Gerrit Code Review
Jun 22, 2015
Browse files
Merge "Reduce max_partition_size for low resolutions at speed 5."
parents
1395b56a
debe4e92
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
8e029fcf
...
...
@@ -3572,7 +3572,11 @@ static void encode_nonrd_sb_row(VP9_COMP *cpi,
set_offsets
(
cpi
,
tile_info
,
x
,
mi_row
,
mi_col
,
BLOCK_64X64
);
if
(
cpi
->
oxcf
.
aq_mode
==
CYCLIC_REFRESH_AQ
&&
cm
->
seg
.
enabled
&&
xd
->
mi
[
0
]
->
mbmi
.
segment_id
)
{
x
->
max_partition_size
=
BLOCK_64X64
;
// Use lower max_partition_size for low resoultions.
if
(
cm
->
width
<=
352
&&
cm
->
height
<=
288
)
x
->
max_partition_size
=
BLOCK_32X32
;
else
x
->
max_partition_size
=
BLOCK_64X64
;
x
->
min_partition_size
=
BLOCK_8X8
;
nonrd_pick_partition
(
cpi
,
td
,
tile_data
,
tp
,
mi_row
,
mi_col
,
BLOCK_64X64
,
&
dummy_rdc
,
1
,
...
...
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