Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
08ee5c86
Commit
08ee5c86
authored
Oct 18, 2017
by
Yi Luo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove compiler warnings in weekly test
Change-Id: I5873d6caa8304fdc1b5fc668b05204f5e5fb73c1
parent
49705df3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
av1/common/reconinter.c
av1/common/reconinter.c
+3
-1
av1/encoder/rdopt.c
av1/encoder/rdopt.c
+2
-0
No files found.
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
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