shithub: libvpx

Download patch

ref: 6025c6d65bacea0c72e02ee498bd3e82f92c9141
parent: dd4b4164121037f08a32065a3c1961865edb8462
parent: 135b43ccf3e1170a32452a3e6c08a13c0fdc6359
author: Jingning Han <jingning@google.com>
date: Fri Jul 31 17:29:50 EDT 2015

Merge "Fix compiler warning in mips/dspr2"

--- a/build/make/rtcd.pl
+++ b/build/make/rtcd.pl
@@ -320,13 +320,18 @@
   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