From 2184692c07c15290b424d538ae942d5f60eb7df8 Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 4 May 2016 15:06:44 -0700 Subject: [PATCH] vpx_dsp/*.[hc]: add missing vpx_dsp_rtcd.h include Change-Id: I103be7eee36492f8619144ce8325bc916d4975c7 --- vpx_dsp/fwd_txfm.c | 1 + vpx_dsp/inv_txfm.c | 1 + vpx_dsp/loopfilter.c | 1 + vpx_dsp/quantize.c | 1 + vpx_dsp/x86/fwd_dct32x32_impl_avx2.h | 1 + vpx_dsp/x86/fwd_txfm_sse2.c | 1 + 6 files changed, 6 insertions(+) diff --git a/vpx_dsp/fwd_txfm.c b/vpx_dsp/fwd_txfm.c index a5802e1f9..4c0d5db83 100644 --- a/vpx_dsp/fwd_txfm.c +++ b/vpx_dsp/fwd_txfm.c @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "./vpx_dsp_rtcd.h" #include "vpx_dsp/fwd_txfm.h" void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride) { diff --git a/vpx_dsp/inv_txfm.c b/vpx_dsp/inv_txfm.c index a0f59bf75..ff7533745 100644 --- a/vpx_dsp/inv_txfm.c +++ b/vpx_dsp/inv_txfm.c @@ -11,6 +11,7 @@ #include #include +#include "./vpx_dsp_rtcd.h" #include "vpx_dsp/inv_txfm.h" void vpx_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride) { diff --git a/vpx_dsp/loopfilter.c b/vpx_dsp/loopfilter.c index 46ef64617..645a1ab95 100644 --- a/vpx_dsp/loopfilter.c +++ b/vpx_dsp/loopfilter.c @@ -11,6 +11,7 @@ #include #include "./vpx_config.h" +#include "./vpx_dsp_rtcd.h" #include "vpx_dsp/vpx_dsp_common.h" #include "vpx_ports/mem.h" diff --git a/vpx_dsp/quantize.c b/vpx_dsp/quantize.c index e4e741a90..6426cccc7 100644 --- a/vpx_dsp/quantize.c +++ b/vpx_dsp/quantize.c @@ -8,6 +8,7 @@ * be found in the AUTHORS file in the root of the source tree. */ +#include "./vpx_dsp_rtcd.h" #include "vpx_dsp/quantize.h" #include "vpx_mem/vpx_mem.h" diff --git a/vpx_dsp/x86/fwd_dct32x32_impl_avx2.h b/vpx_dsp/x86/fwd_dct32x32_impl_avx2.h index 4df39dff8..951af3a62 100644 --- a/vpx_dsp/x86/fwd_dct32x32_impl_avx2.h +++ b/vpx_dsp/x86/fwd_dct32x32_impl_avx2.h @@ -10,6 +10,7 @@ #include // AVX2 +#include "./vpx_dsp_rtcd.h" #include "vpx_dsp/txfm_common.h" #define pair256_set_epi16(a, b) \ diff --git a/vpx_dsp/x86/fwd_txfm_sse2.c b/vpx_dsp/x86/fwd_txfm_sse2.c index e4deeecae..3e4f49bd9 100644 --- a/vpx_dsp/x86/fwd_txfm_sse2.c +++ b/vpx_dsp/x86/fwd_txfm_sse2.c @@ -11,6 +11,7 @@ #include // SSE2 #include "./vpx_config.h" +#include "./vpx_dsp_rtcd.h" #include "vpx_dsp/vpx_dsp_common.h" #include "vpx_dsp/x86/fwd_txfm_sse2.h" -- 2.40.0