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
committerJean-Marc Valin <jmvalin@amazon.com>2023-12-01 00:24:39 +0300
commit2aa47907a96158a2c67eeb1c11c2a34c52418a09 (patch)
tree1bb39b0ec85158a6f1661916c55baa5ac4d35cf7
parent6f1017f1035628c6fc8d5677cd1c216137773d56 (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