From bc4341fd945e8617202dcb305152e8781e7c0e76 Mon Sep 17 00:00:00 2001 From: James Zern Date: Fri, 1 Jul 2016 17:41:26 -0700 Subject: [PATCH] vp10: add some missing includes quiets some -Wmissing-prototypes warnings BUG=b/29584271 Change-Id: I9174728459fcabb6d9ac0028ae58029e52c0da92 --- vp10/common/vp10_convolve.c | 1 + vp10/common/vp10_fwd_txfm.c | 1 + vp10/common/vp10_fwd_txfm2d.c | 1 + vp10/common/vp10_inv_txfm.c | 1 + vp10/common/vp10_inv_txfm2d.c | 1 + vp10/common/x86/idct_intrin_sse2.c | 1 + vp10/common/x86/vp10_fwd_txfm2d_sse4.c | 1 + vp10/common/x86/vp10_fwd_txfm_sse2.c | 1 + 8 files changed, 8 insertions(+) diff --git a/vp10/common/vp10_convolve.c b/vp10/common/vp10_convolve.c index 2026df198..6794a4be3 100644 --- a/vp10/common/vp10_convolve.c +++ b/vp10/common/vp10_convolve.c @@ -2,6 +2,7 @@ #include #include "./vp10_rtcd.h" +#include "vp10/common/vp10_convolve.h" #include "vp10/common/filter.h" #include "vpx_dsp/vpx_dsp_common.h" #include "vpx_ports/mem.h" diff --git a/vp10/common/vp10_fwd_txfm.c b/vp10/common/vp10_fwd_txfm.c index 3211cd082..17935c591 100644 --- a/vp10/common/vp10_fwd_txfm.c +++ b/vp10/common/vp10_fwd_txfm.c @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "./vp10_rtcd.h" #include "vp10/common/vp10_fwd_txfm.h" void vp10_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) { diff --git a/vp10/common/vp10_fwd_txfm2d.c b/vp10/common/vp10_fwd_txfm2d.c index 91a5357df..cddd7dc65 100644 --- a/vp10/common/vp10_fwd_txfm2d.c +++ b/vp10/common/vp10_fwd_txfm2d.c @@ -10,6 +10,7 @@ #include +#include "./vp10_rtcd.h" #include "vp10/common/enums.h" #include "vp10/common/vp10_fwd_txfm1d.h" #include "vp10/common/vp10_fwd_txfm2d_cfg.h" diff --git a/vp10/common/vp10_inv_txfm.c b/vp10/common/vp10_inv_txfm.c index 403b209a2..0ebac42cf 100644 --- a/vp10/common/vp10_inv_txfm.c +++ b/vp10/common/vp10_inv_txfm.c @@ -12,6 +12,7 @@ #include #include +#include "./vp10_rtcd.h" #include "vp10/common/vp10_inv_txfm.h" void vp10_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride) { diff --git a/vp10/common/vp10_inv_txfm2d.c b/vp10/common/vp10_inv_txfm2d.c index ccf4614b1..85a33baa4 100644 --- a/vp10/common/vp10_inv_txfm2d.c +++ b/vp10/common/vp10_inv_txfm2d.c @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "./vp10_rtcd.h" #include "vp10/common/enums.h" #include "vp10/common/vp10_txfm.h" #include "vp10/common/vp10_inv_txfm1d.h" diff --git a/vp10/common/x86/idct_intrin_sse2.c b/vp10/common/x86/idct_intrin_sse2.c index d8b6d957b..da60764ec 100644 --- a/vp10/common/x86/idct_intrin_sse2.c +++ b/vp10/common/x86/idct_intrin_sse2.c @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "./vp10_rtcd.h" #include "vpx_dsp/x86/inv_txfm_sse2.h" #include "vpx_dsp/x86/txfm_common_sse2.h" #include "vpx_ports/mem.h" diff --git a/vp10/common/x86/vp10_fwd_txfm2d_sse4.c b/vp10/common/x86/vp10_fwd_txfm2d_sse4.c index 1d70f1447..ff04dc891 100644 --- a/vp10/common/x86/vp10_fwd_txfm2d_sse4.c +++ b/vp10/common/x86/vp10_fwd_txfm2d_sse4.c @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "./vp10_rtcd.h" #include "vp10/common/enums.h" #include "vp10/common/vp10_txfm.h" #include "vp10/common/x86/vp10_txfm1d_sse4.h" diff --git a/vp10/common/x86/vp10_fwd_txfm_sse2.c b/vp10/common/x86/vp10_fwd_txfm_sse2.c index 032c3ccd1..30bce5f7f 100644 --- a/vp10/common/x86/vp10_fwd_txfm_sse2.c +++ b/vp10/common/x86/vp10_fwd_txfm_sse2.c @@ -10,6 +10,7 @@ #include // SSE2 +#include "./vp10_rtcd.h" #include "./vpx_config.h" #include "vpx_dsp/vpx_dsp_common.h" #include "vpx_dsp/x86/fwd_txfm_sse2.h"