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
path: root/tests
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2018-07-26 19:06:35 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2018-07-27 02:49:35 +0300
commit722a66b84becd0907f0bb4f6f80d17dbc04eb5e6 (patch)
tree69bb2a713f5f823204f5a144df56c5a3d1810f69 /tests
parentac044500cc3ad39f9b0795cec08106124d705564 (diff)
Remove ambisonics experimental flag
Diffstat (limited to 'tests')
-rw-r--r--tests/test_opus_projection.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/test_opus_projection.c b/tests/test_opus_projection.c
index b00ff1e3..4d622e86 100644
--- a/tests/test_opus_projection.c
+++ b/tests/test_opus_projection.c
@@ -42,8 +42,6 @@
#include "../src/mapping_matrix.h"
#include "mathops.h"
-#ifdef ENABLE_EXPERIMENTAL_AMBISONICS
-
#define BUFFER_SIZE 960
#define MAX_DATA_BYTES 32768
#define MAX_FRAME_SAMPLES 5760
@@ -392,15 +390,3 @@ int main(int _argc, char **_argv)
return 0;
}
-#else
-
-int main(int _argc, char **_argv)
-{
- (void)_argc;
- (void)_argv;
- fprintf(stderr, "Projection tests are disabled. "
- "Configure with --enable-ambisonics for support.\n");
- return 0;
-}
-
-#endif /* ENABLE_EXPERIMENTAL_AMBISONICS */