aboutsummaryrefslogtreecommitdiff
path: root/src/opus_projection_decoder.c
diff options
context:
space:
mode:
authorAndrew Allen <bitllama@google.com>2018-03-19 14:55:24 -0700
committerJean-Marc Valin <jmvalin@jmvalin.ca>2018-03-21 13:59:30 -0400
commit9b092dd388a98f8ceb8ec703fe2b757e88e96ec0 (patch)
tree9450b8c19a05df1ca6286c9fc56c592a34c52e3c /src/opus_projection_decoder.c
parenta4b5282f94deea91e4e5271d7ff7f72a8d1f9b6b (diff)
downloadlibopus-9b092dd388a98f8ceb8ec703fe2b757e88e96ec0.tar.gz
Support for Ambisonics.
Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
Diffstat (limited to 'src/opus_projection_decoder.c')
-rw-r--r--src/opus_projection_decoder.c101
1 files changed, 101 insertions, 0 deletions
diff --git a/src/opus_projection_decoder.c b/src/opus_projection_decoder.c
index d39cb834..c879ead7 100644
--- a/src/opus_projection_decoder.c
+++ b/src/opus_projection_decoder.c
@@ -254,4 +254,105 @@ void opus_projection_decoder_destroy(OpusProjectionDecoder *st)
opus_free(st);
}
+#else /* ENABLE_EXPERIMENTAL_AMBISONICS */
+
+opus_int32 opus_projection_decoder_get_size(
+ int channels,
+ int streams,
+ int coupled_streams)
+{
+ (void)channels;
+ (void)streams;
+ (void)coupled_streams;
+ return OPUS_UNIMPLEMENTED;
+}
+
+OpusProjectionDecoder *opus_projection_decoder_create(
+ opus_int32 Fs,
+ int channels,
+ int streams,
+ int coupled_streams,
+ unsigned char *demixing_matrix,
+ opus_int32 demixing_matrix_size,
+ int *error)
+{
+ (void)Fs;
+ (void)channels;
+ (void)streams;
+ (void)coupled_streams;
+ (void)demixing_matrix;
+ (void)demixing_matrix_size;
+ if (error) *error = OPUS_UNIMPLEMENTED;
+ return NULL;
+}
+
+int opus_projection_decoder_init(
+ OpusProjectionDecoder *st,
+ opus_int32 Fs,
+ int channels,
+ int streams,
+ int coupled_streams,
+ unsigned char *demixing_matrix,
+ opus_int32 demixing_matrix_size)
+{
+ (void)st;
+ (void)Fs;
+ (void)channels;
+ (void)streams;
+ (void)coupled_streams;
+ (void)demixing_matrix;
+ (void)demixing_matrix_size;
+ return OPUS_UNIMPLEMENTED;
+}
+
+int opus_projection_decode(
+ OpusProjectionDecoder *st,
+ const unsigned char *data,
+ opus_int32 len,
+ opus_int16 *pcm,
+ int frame_size,
+ int decode_fec)
+{
+ (void)st;
+ (void)data;
+ (void)len;
+ (void)pcm;
+ (void)frame_size;
+ (void)decode_fec;
+ return OPUS_UNIMPLEMENTED;
+}
+
+int opus_projection_decode_float(
+ OpusProjectionDecoder *st,
+ const unsigned char *data,
+ opus_int32 len,
+ float *pcm,
+ int frame_size,
+ int decode_fec)
+{
+ (void)st;
+ (void)data;
+ (void)len;
+ (void)pcm;
+ (void)frame_size;
+ (void)decode_fec;
+ return OPUS_UNIMPLEMENTED;
+}
+
+int opus_projection_decoder_ctl(
+ OpusProjectionDecoder *st,
+ int request,
+ ...)
+{
+ (void)st;
+ (void)request;
+ return OPUS_UNIMPLEMENTED;
+}
+
+void opus_projection_decoder_destroy(
+ OpusProjectionDecoder *st)
+{
+ (void)st;
+}
+
#endif /* ENABLE_EXPERIMENTAL_AMBISONICS */