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
70eb862f
Commit
70eb862f
authored
Jun 09, 2014
by
Yunqing Wang
Committed by
Gerrit Code Review
Jun 09, 2014
Browse files
Merge "Use small transform size in non-rd real-time mode"
parents
e0c65072
b04d7668
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_encodeframe.c
View file @
70eb862f
...
...
@@ -2402,6 +2402,8 @@ static TX_MODE select_tx_mode(const VP9_COMP *cpi) {
return
rd_opt
->
tx_select_threshes
[
frame_type
][
ALLOW_32X32
]
>
rd_opt
->
tx_select_threshes
[
frame_type
][
TX_MODE_SELECT
]
?
ALLOW_32X32
:
TX_MODE_SELECT
;
}
else
if
(
cpi
->
sf
.
tx_size_search_method
==
USE_TX_8X8
)
{
return
ALLOW_8X8
;
}
else
{
unsigned
int
total
=
0
;
int
i
;
...
...
vp9/encoder/vp9_speed_features.c
View file @
70eb862f
...
...
@@ -269,6 +269,8 @@ static void set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf,
sf
->
partition_search_type
=
SOURCE_VAR_BASED_PARTITION
;
sf
->
search_type_check_frequency
=
50
;
sf
->
source_var_thresh
=
360
;
sf
->
tx_size_search_method
=
USE_TX_8X8
;
}
if
(
speed
>=
7
)
{
...
...
vp9/encoder/vp9_speed_features.h
View file @
70eb862f
...
...
@@ -58,7 +58,8 @@ typedef enum {
USE_FULL_RD
=
0
,
USE_LARGESTINTRA
,
USE_LARGESTINTRA_MODELINTER
,
USE_LARGESTALL
USE_LARGESTALL
,
USE_TX_8X8
}
TX_SIZE_SEARCH_METHOD
;
typedef
enum
{
...
...
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