Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
f73a511d
Commit
f73a511d
authored
Dec 16, 2015
by
Marco Paniconi
Committed by
Gerrit Code Review
Dec 16, 2015
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Non-rd variance partition: Lower the 64->32 force split threshold."
parents
eace551c
26fda008
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
vp9/encoder/vp9_encodeframe.c
vp9/encoder/vp9_encodeframe.c
+1
-2
No files found.
vp9/encoder/vp9_encodeframe.c
View file @
f73a511d
...
@@ -892,7 +892,6 @@ static int choose_partitioning(VP9_COMP *cpi,
...
@@ -892,7 +892,6 @@ static int choose_partitioning(VP9_COMP *cpi,
}
}
}
}
}
}
// Fill the rest of the variance tree by summing split partition values.
// Fill the rest of the variance tree by summing split partition values.
avg_32x32
=
0
;
avg_32x32
=
0
;
for
(
i
=
0
;
i
<
4
;
i
++
)
{
for
(
i
=
0
;
i
<
4
;
i
++
)
{
...
@@ -937,7 +936,7 @@ static int choose_partitioning(VP9_COMP *cpi,
...
@@ -937,7 +936,7 @@ static int choose_partitioning(VP9_COMP *cpi,
// If variance of this 64x64 block is above (some threshold of) the average
// 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.
// variance over the sub-32x32 blocks, then force this block to split.
if
(
!
is_key_frame
&&
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
;
force_split
[
0
]
=
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