]> granicus.if.org Git - libvpx/commitdiff
vpx_dsp/*.[hc]: add missing vpx_dsp_rtcd.h include
authorJames Zern <jzern@google.com>
Wed, 4 May 2016 22:06:44 +0000 (15:06 -0700)
committerJames Zern <jzern@google.com>
Wed, 4 May 2016 22:06:44 +0000 (15:06 -0700)
Change-Id: I103be7eee36492f8619144ce8325bc916d4975c7

vpx_dsp/fwd_txfm.c
vpx_dsp/inv_txfm.c
vpx_dsp/loopfilter.c
vpx_dsp/quantize.c
vpx_dsp/x86/fwd_dct32x32_impl_avx2.h
vpx_dsp/x86/fwd_txfm_sse2.c

index a5802e1f924d89939447cd4d43b3060437f878af..4c0d5db83760beb1b69789caf228e02fcd3e8ec7 100644 (file)
@@ -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) {
index a0f59bf75713e6775f00a14a47b3bc11e207ca3a..ff75337456b4a2e0995a52c89c0da3bad48a5cc5 100644 (file)
@@ -11,6 +11,7 @@
 #include <math.h>
 #include <string.h>
 
+#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) {
index 46ef646173e79ca4b245ebf7e447d36ad6b4bfb7..645a1ab95ee996085af04c2391d723446f9ce7a4 100644 (file)
@@ -11,6 +11,7 @@
 #include <stdlib.h>
 
 #include "./vpx_config.h"
+#include "./vpx_dsp_rtcd.h"
 #include "vpx_dsp/vpx_dsp_common.h"
 #include "vpx_ports/mem.h"
 
index e4e741a9089a896f078b73c17a3ecb49c5fa73e6..6426cccc73389cf1fb51d8d9613881e645b945d3 100644 (file)
@@ -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"
 
index 4df39dff861449ab5b590ed768642d3df0262016..951af3a622dbeb24ed90bdada0e22e9b259c4217 100644 (file)
@@ -10,6 +10,7 @@
 
 #include <immintrin.h>  // AVX2
 
+#include "./vpx_dsp_rtcd.h"
 #include "vpx_dsp/txfm_common.h"
 
 #define pair256_set_epi16(a, b) \
index e4deeecaeb0530acfcf601cbc98148ac1fffea86..3e4f49bd95262d4903e9e3a2c3d64dbca1a456fd 100644 (file)
@@ -11,6 +11,7 @@
 #include <emmintrin.h>  // 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"