Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
ce6d3f1d
Commit
ce6d3f1d
authored
Jan 05, 2016
by
Yaowu Xu
Committed by
Gerrit Code Review
Jan 05, 2016
Browse files
Merge "Assert no 8x4/4x8 partition for scaled references"
parents
e9e726f7
03a021a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
configure
View file @
ce6d3f1d
...
...
@@ -35,6 +35,9 @@ Advanced options:
${
toggle_debug_libs
}
in/exclude debug version of libraries
${
toggle_static_msvcrt
}
use static MSVCRT (VS builds only)
${
toggle_vp9_highbitdepth
}
use VP9 high bit depth (10/12) profiles
${
toggle_better_hw_compatibility
}
enable encoder to produce streams with better
hardware decoder compatibility
${
toggle_vp8
}
VP8 codec support
${
toggle_vp9
}
VP9 codec support
${
toggle_vp10
}
VP10 codec support
...
...
@@ -322,6 +325,7 @@ CONFIG_LIST="
vp9_temporal_denoising
coefficient_range_checking
vp9_highbitdepth
better_hw_compatibility
experimental
size_limit
${
EXPERIMENT_LIST
}
...
...
@@ -380,6 +384,7 @@ CMDLINE_SELECT="
temporal_denoising
vp9_temporal_denoising
coefficient_range_checking
better_hw_compatibility
vp9_highbitdepth
experimental
"
...
...
vp9/common/vp9_reconinter.c
View file @
ce6d3f1d
...
...
@@ -187,6 +187,10 @@ static void build_inter_predictors(MACROBLOCKD *xd, int plane, int block,
const
int
is_scaled
=
vp9_is_scaled
(
sf
);
if
(
is_scaled
)
{
#if CONFIG_BETTER_HW_COMPATIBILITY
assert
(
xd
->
mi
[
0
]
->
mbmi
.
sb_type
!=
BLOCK_4X8
&&
xd
->
mi
[
0
]
->
mbmi
.
sb_type
!=
BLOCK_8X4
);
#endif
// Co-ordinate of containing block to pixel precision.
const
int
x_start
=
(
-
xd
->
mb_to_left_edge
>>
(
3
+
pd
->
subsampling_x
));
const
int
y_start
=
(
-
xd
->
mb_to_top_edge
>>
(
3
+
pd
->
subsampling_y
));
...
...
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