Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Guillaume Martres
aom-rav1e
Commits
45db2978
Commit
45db2978
authored
May 28, 2015
by
Minghai Shang
Committed by
Gerrit Code Review
May 28, 2015
Browse files
Options
Browse Files
Download
Plain Diff
Merge "[svc] Disable tiles for spatial svc case"
parents
7c16dcc7
9843e7c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
vp9/encoder/vp9_encoder.c
vp9/encoder/vp9_encoder.c
+3
-1
No files found.
vp9/encoder/vp9_encoder.c
View file @
45db2978
...
...
@@ -697,7 +697,9 @@ static void set_tile_limits(VP9_COMP *cpi) {
int
min_log2_tile_cols
,
max_log2_tile_cols
;
vp9_get_tile_n_bits
(
cm
->
mi_cols
,
&
min_log2_tile_cols
,
&
max_log2_tile_cols
);
if
(
is_two_pass_svc
(
cpi
)
&&
cpi
->
svc
.
encode_empty_frame_state
==
ENCODING
)
{
if
(
is_two_pass_svc
(
cpi
)
&&
(
cpi
->
svc
.
encode_empty_frame_state
==
ENCODING
||
cpi
->
svc
.
number_spatial_layers
>
1
))
{
cm
->
log2_tile_cols
=
0
;
cm
->
log2_tile_rows
=
0
;
}
else
{
...
...
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