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
ace93a17
Commit
ace93a17
authored
Aug 09, 2013
by
Scott LaVarnway
Committed by
Gerrit Code Review
Aug 09, 2013
Browse files
Merge "Bug fix: call set_offsets before rd_auto_partition_range"
parents
fa0cd610
41251ae5
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
ace93a17
...
...
@@ -1941,6 +1941,7 @@ static void encode_sb_row(VP9_COMP *cpi, int mi_row, TOKENEXTRA **tp,
||
cpi
->
is_src_frame_alt_ref
)
{
// If required set upper and lower partition size limits
if
(
cpi
->
sf
.
auto_min_max_partition_size
)
{
set_offsets
(
cpi
,
mi_row
,
mi_col
,
BLOCK_64X64
);
rd_auto_partition_range
(
cpi
,
&
cpi
->
sf
.
min_partition_size
,
&
cpi
->
sf
.
max_partition_size
);
...
...
@@ -1956,6 +1957,7 @@ static void encode_sb_row(VP9_COMP *cpi, int mi_row, TOKENEXTRA **tp,
}
else
{
// If required set upper and lower partition size limits
if
(
cpi
->
sf
.
auto_min_max_partition_size
)
{
set_offsets
(
cpi
,
mi_row
,
mi_col
,
BLOCK_64X64
);
rd_auto_partition_range
(
cpi
,
&
cpi
->
sf
.
min_partition_size
,
&
cpi
->
sf
.
max_partition_size
);
}
...
...
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