summaryrefslogtreecommitdiffstats
path: root/drivers/opus/celt/stack_alloc.h
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2015-11-27 19:29:48 -0200
committerGeorge Marques <george@gmarqu.es>2015-11-27 19:59:13 -0200
commitfc0c4c617538d6fa33808f3acacd9897046bd3d0 (patch)
tree4bf462c911848f40a888ca87bdf0ea5a31eb7475 /drivers/opus/celt/stack_alloc.h
parented4738fbed6d08e85bbf2b60b9dcad64bd4c8753 (diff)
downloadredot-engine-fc0c4c617538d6fa33808f3acacd9897046bd3d0.tar.gz
Remove Opus extra includes
Remove the extra directories to include that were needed by the Opus library. Now the lib includes more specific paths to avoid those.
Diffstat (limited to 'drivers/opus/celt/stack_alloc.h')
-rw-r--r--drivers/opus/celt/stack_alloc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/opus/celt/stack_alloc.h b/drivers/opus/celt/stack_alloc.h
index d500c4dab9..464a6d0b7f 100644
--- a/drivers/opus/celt/stack_alloc.h
+++ b/drivers/opus/celt/stack_alloc.h
@@ -32,8 +32,8 @@
#ifndef STACK_ALLOC_H
#define STACK_ALLOC_H
-#include "opus_types.h"
-#include "opus_defines.h"
+#include "opus/opus_types.h"
+#include "opus/opus_defines.h"
#if (!defined (VAR_ARRAYS) && !defined (USE_ALLOCA) && !defined (NONTHREADSAFE_PSEUDOSTACK))
#define VAR_ARRAYS
@@ -149,7 +149,7 @@ extern char *global_stack_top;
#endif /* ENABLE_VALGRIND */
-#include "os_support.h"
+#include "opus/celt/os_support.h"
#define VARDECL(type, var) type *var
#define ALLOC(var, size, type) var = PUSH(global_stack, size, type)
#define SAVE_STACK char *_saved_stack = global_stack;