Skip to content
GitLab
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
486db59c
Commit
486db59c
authored
Mar 10, 2014
by
Jingning Han
Committed by
Gerrit Code Review
Mar 10, 2014
Browse files
Merge "Fix use of uninitialized bsize in non-RD mode"
parents
bbfa9f69
29af074f
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_onyx_if.c
View file @
486db59c
...
...
@@ -707,7 +707,6 @@ static void set_good_speed_feature(VP9_COMMON *cm,
if
(
speed
>=
5
)
{
sf
->
comp_inter_joint_search_thresh
=
BLOCK_SIZES
;
sf
->
partition_search_type
=
FIXED_PARTITION
;
sf
->
always_this_block_size
=
BLOCK_16X16
;
sf
->
tx_size_search_method
=
frame_is_intra_only
(
cm
)
?
USE_FULL_RD
:
USE_LARGESTALL
;
sf
->
mode_search_skip_flags
=
FLAG_SKIP_INTRA_DIRMISMATCH
|
...
...
@@ -943,6 +942,9 @@ void vp9_set_speed_features(VP9_COMP *cpi) {
for
(
i
=
0
;
i
<
BLOCK_SIZES
;
++
i
)
sf
->
disable_inter_mode_mask
[
i
]
=
0
;
sf
->
max_intra_bsize
=
BLOCK_64X64
;
// This setting only takes effect when partition_search_type is set
// to FIXED_PARTITION.
sf
->
always_this_block_size
=
BLOCK_16X16
;
switch
(
cpi
->
oxcf
.
mode
)
{
case
MODE_BESTQUALITY
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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