Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Allen <bitllama@google.com>2018-03-20 00:55:24 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2018-03-21 20:59:30 +0300
commit9b092dd388a98f8ceb8ec703fe2b757e88e96ec0 (patch)
tree9450b8c19a05df1ca6286c9fc56c592a34c52e3c /include
parenta4b5282f94deea91e4e5271d7ff7f72a8d1f9b6b (diff)
Support for Ambisonics.
Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
Diffstat (limited to 'include')
-rw-r--r--include/opus_defines.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/opus_defines.h b/include/opus_defines.h
index 33c5acdb..fbf5d0eb 100644
--- a/include/opus_defines.h
+++ b/include/opus_defines.h
@@ -169,6 +169,9 @@ extern "C" {
#define OPUS_SET_PHASE_INVERSION_DISABLED_REQUEST 4046
#define OPUS_GET_PHASE_INVERSION_DISABLED_REQUEST 4047
+/** Defines for the presence of extended APIs. */
+#define OPUS_HAVE_OPUS_PROJECTION_H
+
/* Macros to trigger compilation errors when the wrong types are provided to a CTL */
#define __opus_check_int(x) (((void)((x) == (opus_int32)0)), (opus_int32)(x))
#define __opus_check_int_ptr(ptr) ((ptr) + ((ptr) - (opus_int32*)(ptr)))