summaryrefslogtreecommitdiff
path: root/vp8/encoder/rdopt.c
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2011-02-17 04:13:44 -0800
committerCode Review <code-review@webmproject.org>2011-02-17 04:13:44 -0800
commitc351aa7f1be6aacf66634bca6248c140cfd9ead2 (patch)
treec5b6a976134c0235fdd84e605fac902e8be31b45 /vp8/encoder/rdopt.c
parentda9402fbf6ffb5d0ea5cb7f07598a81c6fedd7a1 (diff)
parent02321de0f2177cea1dae0b1f6a3b2448eb522939 (diff)
downloadlibvpx-c351aa7f1be6aacf66634bca6248c140cfd9ead2.tar
libvpx-c351aa7f1be6aacf66634bca6248c140cfd9ead2.tar.gz
libvpx-c351aa7f1be6aacf66634bca6248c140cfd9ead2.tar.bz2
libvpx-c351aa7f1be6aacf66634bca6248c140cfd9ead2.zip
Merge "Fix relative include paths"
Diffstat (limited to 'vp8/encoder/rdopt.c')
-rw-r--r--vp8/encoder/rdopt.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/vp8/encoder/rdopt.c b/vp8/encoder/rdopt.c
index 3449e4532..ba5d337d2 100644
--- a/vp8/encoder/rdopt.c
+++ b/vp8/encoder/rdopt.c
@@ -13,28 +13,28 @@
#include <math.h>
#include <limits.h>
#include <assert.h>
-#include "pragmas.h"
+#include "vp8/common/pragmas.h"
#include "tokenize.h"
#include "treewriter.h"
#include "onyx_int.h"
#include "modecosts.h"
#include "encodeintra.h"
-#include "entropymode.h"
-#include "reconinter.h"
-#include "reconintra.h"
-#include "reconintra4x4.h"
-#include "findnearmv.h"
+#include "vp8/common/entropymode.h"
+#include "vp8/common/reconinter.h"
+#include "vp8/common/reconintra.h"
+#include "vp8/common/reconintra4x4.h"
+#include "vp8/common/findnearmv.h"
#include "encodemb.h"
#include "quantize.h"
-#include "idct.h"
-#include "g_common.h"
+#include "vp8/common/idct.h"
+#include "vp8/common/g_common.h"
#include "variance.h"
#include "mcomp.h"
#include "vpx_mem/vpx_mem.h"
#include "dct.h"
-#include "systemdependent.h"
+#include "vp8/common/systemdependent.h"
#if CONFIG_RUNTIME_CPU_DETECT
#define IF_RTCD(x) (x)