Fix compiler warning in mips/dspr2
This commit fixes the mix declaration and definition warning when mips/dspr2 is turned on. Change-Id: I633d6fe42368b9ac35b106786ebac6969ad53552
This commit is contained in:
parent
7f8dd35329
commit
135b43ccf3
@ -320,13 +320,18 @@ EOF
|
|||||||
print <<EOF;
|
print <<EOF;
|
||||||
#if HAVE_DSPR2
|
#if HAVE_DSPR2
|
||||||
void vpx_dsputil_static_init();
|
void vpx_dsputil_static_init();
|
||||||
vpx_dsputil_static_init();
|
|
||||||
#if CONFIG_VP8
|
#if CONFIG_VP8
|
||||||
void dsputil_static_init();
|
void dsputil_static_init();
|
||||||
dsputil_static_init();
|
|
||||||
#endif
|
#endif
|
||||||
#if CONFIG_VP9
|
#if CONFIG_VP9
|
||||||
void vp9_dsputil_static_init();
|
void vp9_dsputil_static_init();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
vpx_dsputil_static_init();
|
||||||
|
#if CONFIG_VP8
|
||||||
|
dsputil_static_init();
|
||||||
|
#endif
|
||||||
|
#if CONFIG_VP9
|
||||||
vp9_dsputil_static_init();
|
vp9_dsputil_static_init();
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user