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
1f9b2b77
Commit
1f9b2b77
authored
Mar 15, 2015
by
Jingning Han
Committed by
Gerrit Code Review
Mar 15, 2015
Browse files
Merge "Fix choose_partitioning threshold setup for speed -5"
parents
b03cf931
1f00a9b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
1f9b2b77
...
...
@@ -481,7 +481,8 @@ static int set_vt_partitioning(VP9_COMP *cpi,
void
vp9_set_vbp_thresholds
(
VP9_COMP
*
cpi
,
int
q
)
{
SPEED_FEATURES
*
const
sf
=
&
cpi
->
sf
;
if
(
sf
->
partition_search_type
!=
VAR_BASED_PARTITION
)
{
if
(
sf
->
partition_search_type
!=
VAR_BASED_PARTITION
&&
sf
->
partition_search_type
!=
REFERENCE_PARTITION
)
{
return
;
}
else
{
VP9_COMMON
*
const
cm
=
&
cpi
->
common
;
...
...
@@ -3515,9 +3516,8 @@ 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
].
src_mi
->
mbmi
.
segment_id
)
{
auto_partition_range
(
cpi
,
tile_info
,
xd
,
mi_row
,
mi_col
,
&
x
->
min_partition_size
,
&
x
->
max_partition_size
);
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
,
INT64_MAX
,
td
->
pc_root
);
...
...
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