summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-05-14 20:21:01 -0700
committerJames Zern <jzern@google.com>2015-05-15 10:43:47 -0700
commit97db651ce0ae082e1bb69687b643c9e0fcb90d9d (patch)
treeaf2595a4be18f2fd3f94c5d5d118be34ec4e4035 /vp9
parent330fba41e2611230d9556b2e236e5805f08f44e7 (diff)
downloadlibvpx-97db651ce0ae082e1bb69687b643c9e0fcb90d9d.tar
libvpx-97db651ce0ae082e1bb69687b643c9e0fcb90d9d.tar.gz
libvpx-97db651ce0ae082e1bb69687b643c9e0fcb90d9d.tar.bz2
libvpx-97db651ce0ae082e1bb69687b643c9e0fcb90d9d.zip
vp9: add some missing includes
mostly: <file>.c should include <file>.h silences missing prototype warnings Change-Id: Ic05ec32c6f7b2224b78825904d96d73aacad6000
Diffstat (limited to 'vp9')
-rw-r--r--vp9/common/vp9_alloccommon.c1
-rw-r--r--vp9/encoder/vp9_aq_complexity.c1
-rw-r--r--vp9/encoder/vp9_aq_complexity.h2
-rw-r--r--vp9/encoder/vp9_temporal_filter.c1
4 files changed, 5 insertions, 0 deletions
diff --git a/vp9/common/vp9_alloccommon.c b/vp9/common/vp9_alloccommon.c
index 7db210c3a..600cb13d8 100644
--- a/vp9/common/vp9_alloccommon.c
+++ b/vp9/common/vp9_alloccommon.c
@@ -11,6 +11,7 @@
#include "./vpx_config.h"
#include "vpx_mem/vpx_mem.h"
+#include "vp9/common/vp9_alloccommon.h"
#include "vp9/common/vp9_blockd.h"
#include "vp9/common/vp9_entropymode.h"
#include "vp9/common/vp9_entropymv.h"
diff --git a/vp9/encoder/vp9_aq_complexity.c b/vp9/encoder/vp9_aq_complexity.c
index 9622ba1d6..bea7653d2 100644
--- a/vp9/encoder/vp9_aq_complexity.c
+++ b/vp9/encoder/vp9_aq_complexity.c
@@ -11,6 +11,7 @@
#include <limits.h>
#include <math.h>
+#include "vp9/encoder/vp9_aq_complexity.h"
#include "vp9/encoder/vp9_aq_variance.h"
#include "vp9/encoder/vp9_encodeframe.h"
#include "vp9/common/vp9_seg_common.h"
diff --git a/vp9/encoder/vp9_aq_complexity.h b/vp9/encoder/vp9_aq_complexity.h
index c0dce6c5b..e9acb1ca5 100644
--- a/vp9/encoder/vp9_aq_complexity.h
+++ b/vp9/encoder/vp9_aq_complexity.h
@@ -16,6 +16,8 @@
extern "C" {
#endif
+#include "vp9/common/vp9_enums.h"
+
struct VP9_COMP;
struct macroblock;
diff --git a/vp9/encoder/vp9_temporal_filter.c b/vp9/encoder/vp9_temporal_filter.c
index a90c13f55..10c67ff49 100644
--- a/vp9/encoder/vp9_temporal_filter.c
+++ b/vp9/encoder/vp9_temporal_filter.c
@@ -23,6 +23,7 @@
#include "vp9/encoder/vp9_quantize.h"
#include "vp9/encoder/vp9_ratectrl.h"
#include "vp9/encoder/vp9_segmentation.h"
+#include "vp9/encoder/vp9_temporal_filter.h"
#include "vpx_mem/vpx_mem.h"
#include "vpx_ports/mem.h"
#include "vpx_ports/vpx_timer.h"