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
08ee5c86
Commit
08ee5c86
authored
Oct 18, 2017
by
Yi Luo
Browse files
Remove compiler warnings in weekly test
Change-Id: I5873d6caa8304fdc1b5fc668b05204f5e5fb73c1
parent
49705df3
Changes
2
Hide whitespace changes
Inline
Side-by-side
av1/common/reconinter.c
View file @
08ee5c86
...
...
@@ -140,7 +140,9 @@ static INLINE void av1_make_inter_predictor(
#endif
int
xs
,
int
ys
,
const
MACROBLOCKD
*
xd
)
{
(
void
)
xd
;
#if !CONFIG_GLOBAL_MOTION && !CONFIG_WARPED_MOTION && CONFIG_MOTION_VAR
(
void
)
build_for_obmc
;
#endif
#if !CONFIG_MOTION_VAR
const
MODE_INFO
*
mi
=
xd
->
mi
[
0
];
(
void
)
mi
;
...
...
av1/encoder/rdopt.c
View file @
08ee5c86
...
...
@@ -8729,6 +8729,7 @@ int64_t interpolation_filter_search(
return 0;
}
#if CONFIG_WARPED_MOTION || CONFIG_MOTION_VAR
#if CONFIG_DUAL_FILTER
static InterpFilters condition_interp_filters_on_mv(
InterpFilters interp_filters, const MACROBLOCKD *xd) {
...
...
@@ -8741,6 +8742,7 @@ static InterpFilters condition_interp_filters_on_mv(
return av1_make_interp_filters(filters[0], filters[1]);
}
#endif
#endif // CONFIG_WARPED_MOTION || CONFIG_MOTION_VAR
// TODO(afergs): Refactor the MBMI references in here - there's four
// TODO(afergs): Refactor optional args - add them to a struct or remove
...
...
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