Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
libvpx
Commits
4774d389
Commit
4774d389
authored
Jun 23, 2015
by
Marco
Committed by
Gerrit Code Review
Jun 23, 2015
Browse files
Merge "aq-mode=3: Reduce boost for segment#2 at low bitrates/low res."
parents
46df7139
517a6620
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
vp9/encoder/vp9_aq_cyclicrefresh.c
vp9/encoder/vp9_aq_cyclicrefresh.c
+3
-2
No files found.
vp9/encoder/vp9_aq_cyclicrefresh.c
View file @
4774d389
...
...
@@ -129,7 +129,8 @@ static int candidate_refresh_aq(const CYCLIC_REFRESH *cr,
else
if
(
bsize
>=
BLOCK_16X16
&&
rate
<
cr
->
thresh_rate_sb
&&
is_inter_block
(
mbmi
)
&&
mbmi
->
mv
[
0
].
as_int
==
0
)
mbmi
->
mv
[
0
].
as_int
==
0
&&
cr
->
rate_boost_fac
>
1
.
0
)
// More aggressive delta-q for bigger blocks with zero motion.
return
CR_SEGMENT_ID_BOOST2
;
else
...
...
@@ -464,7 +465,7 @@ void vp9_cyclic_refresh_update_parameters(VP9_COMP *const cpi) {
cm
->
height
<=
288
&&
rc
->
avg_frame_bandwidth
<
3400
)
{
cr
->
motion_thresh
=
4
;
cr
->
rate_boost_fac
=
1
.
25
;
cr
->
rate_boost_fac
=
1
.
0
;
}
else
{
cr
->
motion_thresh
=
32
;
cr
->
rate_boost_fac
=
1
.
7
;
...
...
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