]> granicus.if.org Git - libvpx/commitdiff
vp8: add some missing includes
authorJames Zern <jzern@google.com>
Fri, 15 May 2015 03:27:59 +0000 (20:27 -0700)
committerJames Zern <jzern@google.com>
Fri, 15 May 2015 05:41:25 +0000 (22:41 -0700)
silences missing prototype warnings

Change-Id: Ib62e4743532b871e63bc99732875fff20501b8ac

vp8/common/alloccommon.c
vp8/common/filter.c
vp8/common/generic/systemdependent.c
vp8/common/idctllm.c
vp8/encoder/dct.c
vp8/encoder/modecosts.c
vp8/encoder/modecosts.h

index b9d875a2ff7ead0271f31faf72a8e631b1975029..8dfd4ce203e76961be980465495d0b3a13481f28 100644 (file)
@@ -10,6 +10,7 @@
 
 
 #include "vpx_config.h"
+#include "alloccommon.h"
 #include "blockd.h"
 #include "vpx_mem/vpx_mem.h"
 #include "onyxc_int.h"
index 25266f868272b9bfc398de01ad91807b8aeba59a..84c608effaa8301f3072082607101ec5c7b91557 100644 (file)
@@ -10,6 +10,7 @@
 
 
 #include "filter.h"
+#include "./vp8_rtcd.h"
 
 DECLARE_ALIGNED(16, const short, vp8_bilinear_filters[8][2]) =
 {
index d84df334810d6ea217057476f516a567d9faa092..4393ced48c80a3bb1648ede08916817908ff4d2d 100644 (file)
@@ -17,6 +17,7 @@
 #include "vpx_ports/x86.h"
 #endif
 #include "vp8/common/onyxc_int.h"
+#include "vp8/common/systemdependent.h"
 
 #if CONFIG_MULTITHREAD
 #if HAVE_UNISTD_H && !defined(__OS2__)
index 47af52f04e7503842444e288150abcafc1297600..f5403c5aaf789de0483d19da641e3ba14d5df8c0 100644 (file)
@@ -8,6 +8,7 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
+#include "./vp8_rtcd.h"
 
 /****************************************************************************
  * Notes:
index 091554a5d50f0d9250c06f9c3cf19714b150099d..0c7198d5d3a269bf6e35be41c4cf66bdd16255ca 100644 (file)
@@ -11,6 +11,8 @@
 
 #include <math.h>
 
+#include "./vp8_rtcd.h"
+
 void vp8_short_fdct4x4_c(short *input, short *output, int pitch)
 {
     int i;
index c61563c56f7a749a82c7e50468eb4cb480534d11..ad0e9308dc134984fabe936841f0436f266ef64a 100644 (file)
@@ -10,6 +10,7 @@
 
 
 #include "vp8/common/blockd.h"
+#include "modecosts.h"
 #include "onyx_int.h"
 #include "treewriter.h"
 #include "vp8/common/entropymode.h"
index 9281551c8d5f6a4fb55e368de97b37a4562b75cf..9871bfffdf959e34c3af803146ceaf6e1aa95ed4 100644 (file)
@@ -16,7 +16,9 @@
 extern "C" {
 #endif
 
-void vp8_init_mode_costs(VP8_COMP *x);
+struct VP8_COMP;
+
+void vp8_init_mode_costs(struct VP8_COMP *x);
 
 #ifdef __cplusplus
 }  // extern "C"