summaryrefslogtreecommitdiff
path: root/drivers/opus/celt/celt.c
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/celt.c
parented4738fbed6d08e85bbf2b60b9dcad64bd4c8753 (diff)
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/celt.c')
-rw-r--r--drivers/opus/celt/celt.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/opus/celt/celt.c b/drivers/opus/celt/celt.c
index b894e1e13f..8ff9239844 100644
--- a/drivers/opus/celt/celt.c
+++ b/drivers/opus/celt/celt.c
@@ -28,27 +28,27 @@
*/
#ifdef OPUS_HAVE_CONFIG_H
-#include "opus_config.h"
+#include "opus/opus_config.h"
#endif
#define CELT_C
-#include "os_support.h"
-#include "mdct.h"
+#include "opus/celt/os_support.h"
+#include "opus/celt/mdct.h"
#include <math.h>
-#include "celt.h"
-#include "pitch.h"
-#include "bands.h"
-#include "opus_modes.h"
-#include "entcode.h"
-#include "quant_bands.h"
-#include "rate.h"
-#include "stack_alloc.h"
-#include "mathops.h"
-#include "float_cast.h"
+#include "opus/celt/celt.h"
+#include "opus/celt/pitch.h"
+#include "opus/celt/bands.h"
+#include "opus/celt/opus_modes.h"
+#include "opus/celt/entcode.h"
+#include "opus/celt/quant_bands.h"
+#include "opus/celt/rate.h"
+#include "opus/celt/stack_alloc.h"
+#include "opus/celt/mathops.h"
+#include "opus/celt/float_cast.h"
#include <stdarg.h>
-#include "celt_lpc.h"
-#include "vq.h"
+#include "opus/celt/celt_lpc.h"
+#include "opus/celt/vq.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "unknown"