vp10: add some missing includes

quiets some -Wmissing-prototypes warnings

BUG=b/29584271

Change-Id: I9174728459fcabb6d9ac0028ae58029e52c0da92
This commit is contained in:
James Zern
2016-07-01 17:41:26 -07:00
parent 5041ff4921
commit bc4341fd94
8 changed files with 8 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
#include <string.h> #include <string.h>
#include "./vp10_rtcd.h" #include "./vp10_rtcd.h"
#include "vp10/common/vp10_convolve.h"
#include "vp10/common/filter.h" #include "vp10/common/filter.h"
#include "vpx_dsp/vpx_dsp_common.h" #include "vpx_dsp/vpx_dsp_common.h"
#include "vpx_ports/mem.h" #include "vpx_ports/mem.h"

View File

@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * be found in the AUTHORS file in the root of the source tree.
*/ */
#include "./vp10_rtcd.h"
#include "vp10/common/vp10_fwd_txfm.h" #include "vp10/common/vp10_fwd_txfm.h"
void vp10_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) { void vp10_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) {

View File

@@ -10,6 +10,7 @@
#include <assert.h> #include <assert.h>
#include "./vp10_rtcd.h"
#include "vp10/common/enums.h" #include "vp10/common/enums.h"
#include "vp10/common/vp10_fwd_txfm1d.h" #include "vp10/common/vp10_fwd_txfm1d.h"
#include "vp10/common/vp10_fwd_txfm2d_cfg.h" #include "vp10/common/vp10_fwd_txfm2d_cfg.h"

View File

@@ -12,6 +12,7 @@
#include <math.h> #include <math.h>
#include <string.h> #include <string.h>
#include "./vp10_rtcd.h"
#include "vp10/common/vp10_inv_txfm.h" #include "vp10/common/vp10_inv_txfm.h"
void vp10_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride) { void vp10_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride) {

View File

@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * 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/enums.h"
#include "vp10/common/vp10_txfm.h" #include "vp10/common/vp10_txfm.h"
#include "vp10/common/vp10_inv_txfm1d.h" #include "vp10/common/vp10_inv_txfm1d.h"

View File

@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * 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/inv_txfm_sse2.h"
#include "vpx_dsp/x86/txfm_common_sse2.h" #include "vpx_dsp/x86/txfm_common_sse2.h"
#include "vpx_ports/mem.h" #include "vpx_ports/mem.h"

View File

@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree. * 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/enums.h"
#include "vp10/common/vp10_txfm.h" #include "vp10/common/vp10_txfm.h"
#include "vp10/common/x86/vp10_txfm1d_sse4.h" #include "vp10/common/x86/vp10_txfm1d_sse4.h"

View File

@@ -10,6 +10,7 @@
#include <emmintrin.h> // SSE2 #include <emmintrin.h> // SSE2
#include "./vp10_rtcd.h"
#include "./vpx_config.h" #include "./vpx_config.h"
#include "vpx_dsp/vpx_dsp_common.h" #include "vpx_dsp/vpx_dsp_common.h"
#include "vpx_dsp/x86/fwd_txfm_sse2.h" #include "vpx_dsp/x86/fwd_txfm_sse2.h"