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
4f2e0943
Commit
4f2e0943
authored
Oct 20, 2017
by
Debargha Mukherjee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable 8x2/2x8 chroma predicitons w/ chroma-sub8x8
Change-Id: I2565dfaf0d077984e47e4bd9009a0c174c8124c9
parent
dcfc22a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
11 deletions
+2
-11
av1/common/reconinter.c
av1/common/reconinter.c
+2
-11
No files found.
av1/common/reconinter.c
View file @
4f2e0943
...
...
@@ -1142,17 +1142,8 @@ static INLINE void build_inter_predictors(
const
BLOCK_SIZE
bsize
=
mi
->
mbmi
.
sb_type
;
const
int
ss_x
=
pd
->
subsampling_x
;
const
int
ss_y
=
pd
->
subsampling_y
;
int
sub8x8_inter
=
AOMMIN
(
block_size_wide
[
bsize
],
block_size_high
[
bsize
])
<
8
&&
(
ss_x
||
ss_y
);
#if CONFIG_EXT_PARTITION_TYPES
// Temporarily turn off sub8x8_inter for 16x4 and 4x16 blocks based on
// color subsampling until 8x2 and 2x8 block sizes are properly supported.
if
(
sub8x8_inter
)
if
((
bsize
==
BLOCK_4X16
&&
ss_x
)
||
(
bsize
==
BLOCK_16X4
&&
ss_y
))
sub8x8_inter
=
0
;
#endif // CONFIG_EXT_PARTITION_TYPES
int
sub8x8_inter
=
(
block_size_wide
[
bsize
]
<
8
&&
ss_x
)
||
(
block_size_high
[
bsize
]
<
8
&&
ss_y
);
#if CONFIG_INTRABC
if
(
is_intrabc
)
{
...
...
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