Skip to content
GitLab
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
6025c6d6
Commit
6025c6d6
authored
Jul 31, 2015
by
Jingning Han
Committed by
Gerrit Code Review
Jul 31, 2015
Browse files
Merge "Fix compiler warning in mips/dspr2"
parents
dd4b4164
135b43cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
build/make/rtcd.pl
View file @
6025c6d6
...
...
@@ -320,13 +320,18 @@ EOF
print
<<EOF;
#if HAVE_DSPR2
void vpx_dsputil_static_init();
vpx_dsputil_static_init();
#if CONFIG_VP8
void dsputil_static_init();
dsputil_static_init();
#endif
#if CONFIG_VP9
void vp9_dsputil_static_init();
#endif
vpx_dsputil_static_init();
#if CONFIG_VP8
dsputil_static_init();
#endif
#if CONFIG_VP9
vp9_dsputil_static_init();
#endif
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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