[LAD] fftw_complex and C++11

Aurélien Leblond blablack at gmail.com
Sun Jan 4 13:56:51 UTC 2015


>
> > Hi all,
> >
> > I'm porting the FFT Vocoder from AMS to ams.lv2.
> > The FFT Vocoder is using fftw_complex, and I can compile my code if I use
> > -std=c99 but not if I use -std=c++11
> >
> > I get error like:
> >
> > error: incompatible types in assignment of ‘float’ to ‘fftw_complex {aka
> > double [2]}’
> >    modinforward[l2] = modbuf[l2] * window[l2];
> >
> > error: cannot convert ‘double*’ to ‘__complex__ double’ for argument ‘1’
> to
> > ‘double creal(__complex__ double)’
> >    p(p_modulatorfft)[l2] = logf(fabs (creal (modoutforward[l2])) + 1.0);
> >
> > error: invalid array assignment
> >    modinbackward[ lclfrq ] = modoutforward [l2];
> >
> > carrinforward, carroutforward, carrinbackward,
> > carroutbackward, modinforward, modoutforward, modinbackward,
> modoutbackward
> > are pointers to fftw_complex.
> >
> >
> > Would you guys have any idea why it doesn't compile in the c++11
> standard?
> >>From my research I saw there were some changes between c99 and c11 with
> > complex numbers, but I can't figure out how to bring the code to C++11.
> >
>
> Just to make sure I understand correctly. Your goal is to rewrite the
> code from c99 to c++11 and not c11?
>
>
Well all the plugins in ams.lv2 are coded in c++ and are compiled with the
c++11 standard.
But when ported the FFT Vocoder, it only compiles when using the c99
standard.

So I guess yes, I would like to rewrite the code from c99 to c++11.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linuxaudio.org/pipermail/linux-audio-dev/attachments/20150104/9bf7b011/attachment.html>


More information about the Linux-audio-dev mailing list