Cleanup Synth_Dexed (moving to third-party folder).

dev
Holger Wirtz 3 years ago
parent c10687ba22
commit 81669512ad
  1. 1
      Synth_Dexed
  2. 3
      third-party/Synth_Dexed/src/fm_op_kernel.cpp

@ -1 +0,0 @@
Subproject commit aed9a0994c62b5391fa5448ef8c21932caf9b817

@ -183,7 +183,6 @@ void FmOpKernel::compute(int32_t *output, const int32_t *input,
}
#endif
}
}
void FmOpKernel::compute_pure(int32_t *output, int32_t phase0, int32_t freq,
int32_t gain1, int32_t gain2, bool add) {
@ -194,7 +193,6 @@ void FmOpKernel::compute_pure(int32_t *output, int32_t phase0, int32_t freq,
neon_fm_kernel(zeros, add ? output : zeros, output, _N_,
phase0, freq, gain, dgain);
#else
} else {
if (add) {
for (int i = 0; i < _N_; i++) {
gain += dgain;
@ -213,7 +211,6 @@ void FmOpKernel::compute_pure(int32_t *output, int32_t phase0, int32_t freq,
}
}
#endif
}
}
#define noDOUBLE_ACCURACY

Loading…
Cancel
Save