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
419da5c7
Commit
419da5c7
authored
Nov 12, 2015
by
Marco
Browse files
Adjust variance threshold for 16x16 split at low resolutions.
Change-Id: I635e37f81237e9703d7d9a11ed76a043f4ec6eb0
parent
866c9357
Changes
2
Hide whitespace changes
Inline
Side-by-side
test/resize_test.cc
View file @
419da5c7
...
...
@@ -407,7 +407,7 @@ TEST_P(ResizeRealtimeTest, TestInternalResizeDownUpChangeBitRate) {
// Disable dropped frames.
cfg_
.
rc_dropframe_thresh
=
0
;
// Starting bitrate low.
cfg_
.
rc_target_bitrate
=
10
0
;
cfg_
.
rc_target_bitrate
=
9
0
;
ASSERT_NO_FATAL_FAILURE
(
RunLoop
(
&
video
));
unsigned
int
last_w
=
cfg_
.
g_w
;
...
...
vp9/encoder/vp9_encodeframe.c
View file @
419da5c7
...
...
@@ -500,7 +500,7 @@ static void set_vbp_thresholds(VP9_COMP *cpi, int64_t thresholds[], int q) {
if
(
cm
->
width
<=
352
&&
cm
->
height
<=
288
)
{
thresholds
[
0
]
=
threshold_base
>>
3
;
thresholds
[
1
]
=
threshold_base
>>
1
;
thresholds
[
2
]
=
threshold_base
<<
2
;
thresholds
[
2
]
=
threshold_base
<<
3
;
}
else
{
thresholds
[
0
]
=
threshold_base
;
thresholds
[
1
]
=
(
5
*
threshold_base
)
>>
2
;
...
...
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