summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2011-11-09 09:14:43 -0800
committerYaowu Xu <yaowu@google.com>2011-11-09 09:14:43 -0800
commitfa454ade9333e0cc101098f1b52be680a1b903bb (patch)
tree3e8127888dbc29d496b143e902266854c12ba54a
parent4d1c5aa413a8a0d8dbced6e48a75ac8c1198e6bc (diff)
downloadlibvpx-fa454ade9333e0cc101098f1b52be680a1b903bb.tar
libvpx-fa454ade9333e0cc101098f1b52be680a1b903bb.tar.gz
libvpx-fa454ade9333e0cc101098f1b52be680a1b903bb.tar.bz2
libvpx-fa454ade9333e0cc101098f1b52be680a1b903bb.zip
Fixed building issues
Change-Id: I027f41db4bd46e2350fd0e4b8e6e9239f897b256
-rw-r--r--vp8/common/idctllm.c2
-rw-r--r--vp8/encoder/dct.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/vp8/common/idctllm.c b/vp8/common/idctllm.c
index c65d35adc..a71e4be9c 100644
--- a/vp8/common/idctllm.c
+++ b/vp8/common/idctllm.c
@@ -22,7 +22,7 @@
* so
* x * sqrt(2) * cos (pi/8) = x + x * (sqrt(2) *cos(pi/8)-1).
**************************************************************************/
-#include "vpx_ports/config.h"
+#include "vpx_config.h"
static const int cospi8sqrt2minus1 = 20091;
static const int sinpi8sqrt2 = 35468;
diff --git a/vp8/encoder/dct.c b/vp8/encoder/dct.c
index 69a882c89..c15437f3e 100644
--- a/vp8/encoder/dct.c
+++ b/vp8/encoder/dct.c
@@ -10,7 +10,7 @@
#include <math.h>
-#include "vpx_ports/config.h"
+#include "vpx_config.h"
void vp8_short_fdct4x4_c(short *input, short *output, int pitch)
{
int i;