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
Guillaume Martres
aom-rav1e
Commits
48b8ce21
Commit
48b8ce21
authored
Jun 20, 2014
by
Jingning Han
Committed by
Gerrit Code Review
Jun 20, 2014
Browse files
Merge "Allow key frame more flexibility in mode search"
parents
7820abe5
c99a8fd7
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_rdopt.c
View file @
48b8ce21
...
...
@@ -1277,9 +1277,6 @@ static int64_t rd_pick_intra_sby_mode(VP9_COMP *cpi, MACROBLOCK *x,
MODE_INFO
*
above_mi
=
xd
->
mi
[
-
xd
->
mi_stride
];
MODE_INFO
*
left_mi
=
xd
->
left_available
?
xd
->
mi
[
-
1
]
:
NULL
;
if
(
!
(
cpi
->
sf
.
intra_y_mode_mask
[
max_txsize_lookup
[
bsize
]]
&
(
1
<<
mode
)))
continue
;
if
(
cpi
->
common
.
frame_type
==
KEY_FRAME
)
{
const
PREDICTION_MODE
A
=
vp9_above_block_mode
(
mic
,
above_mi
,
0
);
const
PREDICTION_MODE
L
=
vp9_left_block_mode
(
mic
,
left_mi
,
0
);
...
...
vp9/encoder/vp9_speed_features.c
View file @
48b8ce21
...
...
@@ -249,6 +249,8 @@ static void set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf,
}
if
(
speed
>=
5
)
{
sf
->
auto_min_max_partition_size
=
(
cm
->
frame_type
==
KEY_FRAME
)
?
RELAXED_NEIGHBORING_MIN_MAX
:
STRICT_NEIGHBORING_MIN_MAX
;
sf
->
max_partition_size
=
BLOCK_32X32
;
sf
->
min_partition_size
=
BLOCK_8X8
;
sf
->
partition_check
=
...
...
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