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-11-30 23:18:04 +0300
committerJan Buethe <jbuethe@amazon.de>2023-11-30 23:18:04 +0300
commitdb14dbc132c92ee51b6f6a3ee6608bdbb56507ac (patch)
treed3a30a95791afb9469abea0efbf13a7b77c18cbf
parentba8ea64ed5d23748901fd0b3d0a8eada3aa7fdda (diff)
bugfix
-rw-r--r--dnn/nndsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dnn/nndsp.c b/dnn/nndsp.c
index c6b8e7b6..ce310f22 100644
--- a/dnn/nndsp.c
+++ b/dnn/nndsp.c
@@ -383,7 +383,7 @@ void adashape_process_frame(
/* shape signal */
for (i = 0; i < frame_size; i ++)
{
- x_out[out_stride * i + out_offset] = exp(out_stride * out_buffer[i] + out_offset) * x_in[in_stride * i + in_offset];
+ x_out[out_stride * i + out_offset] = exp(out_buffer[i]) * x_in[in_stride * i + in_offset];
}
} \ No newline at end of file