Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 98d960ae authored by hhakim's avatar hhakim
Browse files

Fix a bug introduced by 68648185 into Faust::TransformHelper::fourierFaust().

parent 8a7cbfeb
Branches
Tags 2.3rc9
No related merge requests found
Pipeline #833857 skipped
...@@ -970,10 +970,10 @@ namespace Faust { ...@@ -970,10 +970,10 @@ namespace Faust {
TransformHelper<FPP,Cpu>* fourierFaust = nullptr; TransformHelper<FPP,Cpu>* fourierFaust = nullptr;
try try
{ {
fft_factors(n, factors); fft_factors(n, factors);
// for(int i=0;i<n+1;i++) // for(int i=0;i<n+1;i++)
// factors[i]->Display(); // factors[i]->Display();
new TransformHelper<FPP, Cpu>(factors, 1.0, false, false); fourierFaust = new TransformHelper<FPP, Cpu>(factors, 1.0, false, false);
} }
catch(std::bad_alloc e) catch(std::bad_alloc e)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment