~ubuntu-branches/ubuntu/wily/octave-ltfat/wily

« back to all changes in this revision

Viewing changes to oct/comp_ifilterbank_fft.cc

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot, Rafael Laboissiere
  • Date: 2015-07-18 23:36:41 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20150718233641-jhuf3f551a3523qc
Tags: 2.1.0+dfsg-1
* Team upload.

[ Rafael Laboissiere ]
* Imported Upstream version 2.1.0+dfsg
* d/rules: Prevent unit testing on armhf and mips.
  This avoids FTBFS on theses architectures (see Bug#765545).
* Unit testing does not need X-window anymore
  + d/rules: Do not use xfvb-run to run the tests.
  + d/control: Drop xauth, xvfb, and gnuplot-nox from Build-Depends.
    Also, the versioned dependency on octave-pkg-dev is relaxed.
* Drop .jar file from upstream tarball, complying with the Debian Policy
  + d/copyright: Exclude file blockproc.jar
  + d/rules: Add get-orig-source target
  + d/watch: Mangle upstream version to cope with "+dfsg" tag
* Build blockproc.jar, which is deleted from the upstream tarball
  + d/rules: Add commands for building blockproc.jar
  + d/control: Build-depend on default-jdk
  + d/p/fix-path-of-included-makefile.patch: New patch
* Bump Standard-Versions to 3.9.6 (no changes needed)
* d/p/autoload-yes.patch: Remove patch (deprecated upstream)
* Bump Build-Depends on octave to >> 4.0.0~rc4-1 (for sndfile support)
* d/check.m: Avoid verbose output of unit tests
* d/watch: Add the repacksuffix option
* d/p/add-hardening-flags.patch: Drop patch (applied upstream)
* d/p/fix-path-of-included-makefile.patch: Drop patch (applied upstream)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
                    const ltfatInt a[], const ltfatInt M,
18
18
                    Complex *f)
19
19
{
20
 
    ifilterbank_fft_d(reinterpret_cast<const double _Complex **>(c),
21
 
                      reinterpret_cast<const double _Complex **>(filt),
 
20
    ifilterbank_fft_d(reinterpret_cast<const fftw_complex **>(c),
 
21
                      reinterpret_cast<const fftw_complex **>(filt),
22
22
                      L, W, a, M,
23
 
                      reinterpret_cast<double _Complex *>(f));
 
23
                      reinterpret_cast<fftw_complex *>(f));
24
24
}
25
25
 
26
26
static inline void
29
29
                    const ltfatInt a[], const ltfatInt M,
30
30
                    FloatComplex *f)
31
31
{
32
 
    ifilterbank_fft_s(reinterpret_cast<const float _Complex **>(c),
33
 
                      reinterpret_cast<const float _Complex **>(filt),
 
32
    ifilterbank_fft_s(reinterpret_cast<const fftwf_complex **>(c),
 
33
                      reinterpret_cast<const fftwf_complex **>(filt),
34
34
                      L, W, a, M,
35
 
                      reinterpret_cast<float _Complex *>(f));
 
35
                      reinterpret_cast<fftwf_complex *>(f));
36
36
}
37
37
 
38
38
template <class LTFAT_TYPE, class LTFAT_REAL, class LTFAT_COMPLEX>