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:
authorJan Buethe <jbuethe@amazon.de>2023-12-05 17:21:11 +0300
committerJan Buethe <jbuethe@amazon.de>2023-12-05 17:21:11 +0300
commitec7c91ffb5eb0de223aa2e016f79eb4e4a732bfa (patch)
tree154049e1f092f4c1d119d0d5982d5398a346d2cd
parente0a2efd3e9b654ec4fb0ff4a9e0d010af61671f3 (diff)
USE_XCORR accepted
-rw-r--r--dnn/nndsp.c39
-rw-r--r--dnn/nndsp.h1
2 files changed, 1 insertions, 39 deletions
diff --git a/dnn/nndsp.c b/dnn/nndsp.c
index ac93a847..62601157 100644
--- a/dnn/nndsp.c
+++ b/dnn/nndsp.c
@@ -115,16 +115,14 @@ void adaconv_process_frame(
float output_buffer[ADACONV_MAX_FRAME_SIZE * ADACONV_MAX_OUTPUT_CHANNELS];
float kernel_buffer[ADACONV_MAX_KERNEL_SIZE * ADACONV_MAX_INPUT_CHANNELS * ADACONV_MAX_OUTPUT_CHANNELS];
float input_buffer[ADACONV_MAX_INPUT_CHANNELS * (ADACONV_MAX_FRAME_SIZE + ADACONV_MAX_KERNEL_SIZE)];
-#ifdef USE_XCORR
float kernel0[ADACONV_MAX_KERNEL_SIZE];
float kernel1[ADACONV_MAX_KERNEL_SIZE];
float channel_buffer0[ADACONV_MAX_OVERLAP_SIZE];
float channel_buffer1[ADACONV_MAX_FRAME_SIZE];
-#endif
float window_buffer[ADACONV_MAX_OVERLAP_SIZE];
float gain_buffer[ADACONV_MAX_OUTPUT_CHANNELS];
float *p_input;
- int i_in_channels, i_out_channels, i_sample, i_kernel;
+ int i_in_channels, i_out_channels, i_sample;
(void) feature_dim; /* ToDo: figure out whether we might need this information */
@@ -180,7 +178,6 @@ void adaconv_process_frame(
{
for (i_in_channels = 0; i_in_channels < in_channels; i_in_channels++)
{
-#ifdef USE_XCORR
OPUS_CLEAR(kernel0, ADACONV_MAX_KERNEL_SIZE);
OPUS_CLEAR(kernel1, ADACONV_MAX_KERNEL_SIZE);
@@ -197,43 +194,9 @@ void adaconv_process_frame(
{
output_buffer[i_sample + i_out_channels * frame_size] += channel_buffer1[i_sample];
}
-#else
-
- for (i_sample = 0; i_sample < overlap_size; i_sample++)
- {
- for (i_kernel = 0; i_kernel < kernel_size; i_kernel++)
- {
-
- output_buffer[i_sample + i_out_channels * frame_size] +=
- window[i_sample] * p_input[(i_sample + i_kernel - left_padding) + i_in_channels * (frame_size + kernel_size)] * hAdaConv->last_kernel[KERNEL_INDEX(i_out_channels, i_in_channels, i_kernel)];
- output_buffer[i_sample + i_out_channels * frame_size] +=
- (1 - window[i_sample]) * p_input[(i_sample + i_kernel - left_padding) + i_in_channels * (frame_size + kernel_size)] * kernel_buffer[KERNEL_INDEX(i_out_channels, i_in_channels, i_kernel)];
- }
- }
-#endif
}
}
-#ifndef USE_XCORR
- /* calculate non-overlapping part */
-
- for (i_out_channels = 0; i_out_channels < out_channels; i_out_channels++)
- {
- for (i_in_channels = 0; i_in_channels < in_channels; i_in_channels++)
- {
- for (i_sample = overlap_size; i_sample < frame_size; i_sample++)
- {
- for (i_kernel = 0; i_kernel < kernel_size; i_kernel++)
- {
-
- output_buffer[i_sample + i_out_channels * frame_size] +=
- p_input[(i_sample + i_kernel - left_padding) + i_in_channels * (frame_size + kernel_size)] * kernel_buffer[KERNEL_INDEX(i_out_channels, i_in_channels, i_kernel)];
- }
- }
- }
- }
-#endif
-
OPUS_COPY(x_out, output_buffer, out_channels * frame_size);
#ifdef DEBUG_NNDSP
diff --git a/dnn/nndsp.h b/dnn/nndsp.h
index 46402693..70c8fd0a 100644
--- a/dnn/nndsp.h
+++ b/dnn/nndsp.h
@@ -25,7 +25,6 @@
#include <stdio.h>
#endif
-#define USE_XCORR
void print_float_vector(const char* name, const float *vec, int length);