summaryrefslogtreecommitdiff
path: root/examples/vp9_lossless_encoder.c
diff options
context:
space:
mode:
authorTom Finegan <tomfinegan@google.com>2015-02-04 16:11:57 -0800
committerTom Finegan <tomfinegan@google.com>2015-02-04 16:11:57 -0800
commit9e96bdc733a17a511773831e32cdeabd7eb2993b (patch)
tree55d056849d976c0c8e3bc5763d80431906c4bdc2 /examples/vp9_lossless_encoder.c
parent1221641914b9c774cb4dc87c4c8578fb444611ef (diff)
downloadlibvpx-9e96bdc733a17a511773831e32cdeabd7eb2993b.tar
libvpx-9e96bdc733a17a511773831e32cdeabd7eb2993b.tar.gz
libvpx-9e96bdc733a17a511773831e32cdeabd7eb2993b.tar.bz2
libvpx-9e96bdc733a17a511773831e32cdeabd7eb2993b.zip
Xcode: Fix includes in examples.
The current file's directory, ".", is treated much more literally when building libvpx examples with Xcode than it is with make, and clang cannot find common include files included via "./" when those files actually reside one directory up in the tree. Change-Id: I5f66a026282e35d80248ca4052ebb882b859172e
Diffstat (limited to 'examples/vp9_lossless_encoder.c')
-rw-r--r--examples/vp9_lossless_encoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/vp9_lossless_encoder.c b/examples/vp9_lossless_encoder.c
index 3fcda0cd4..54275770d 100644
--- a/examples/vp9_lossless_encoder.c
+++ b/examples/vp9_lossless_encoder.c
@@ -15,8 +15,8 @@
#include "vpx/vpx_encoder.h"
#include "vpx/vp8cx.h"
-#include "./tools_common.h"
-#include "./video_writer.h"
+#include "../tools_common.h"
+#include "../video_writer.h"
static const char *exec_name;