Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
40e597fc
Commit
40e597fc
authored
Nov 28, 2017
by
Debargha Mukherjee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turn optimize on w/ aom_qm if qmatrices are unused
Change-Id: Ib002bb918366ba6848c983f5311aeb74ab37c1a0
parent
9bbbde5a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
av1/encoder/speed_features.c
av1/encoder/speed_features.c
+2
-3
No files found.
av1/encoder/speed_features.c
View file @
40e597fc
...
...
@@ -519,11 +519,10 @@ void av1_set_speed_features_framesize_independent(AV1_COMP *cpi) {
cpi
->
find_fractional_mv_step
=
av1_find_best_sub_pixel_tree_pruned_evenmore
;
}
#if !CONFIG_AOM_QM
x
->
optimize
=
sf
->
optimize_coefficients
==
1
&&
oxcf
->
pass
!=
1
;
#
else
#
if CONFIG_AOM_QM
// FIXME: trellis not very efficient for quantisation matrices
x
->
optimize
=
0
;
if
(
cm
->
using_qmatrix
)
x
->
optimize
=
0
;
#endif
x
->
min_partition_size
=
sf
->
default_min_partition_size
;
...
...
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