view peck_fftr.c @ 13:3e85a9101f02 default tip

readme
author Peter Meerwald <p.meerwald@bct-electronic.com>
date Thu, 09 Feb 2012 09:44:39 +0100
parents 655dc5c14169
children
line wrap: on
line source

/*
Copyright (c) 2003-2004, Mark Borgerding

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
    * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include "peck_fftr.h"
#include "_peck_fft_guts.h"

struct peck_fftr_state{
    peck_fft_cfg substate;
    peck_fft_cpx *tmpbuf;
    peck_fft_cpx *super_twiddles;
    void *pad;
};

peck_fftr_cfg peck_fftr_alloc(int nfft, int inverse_fft, void *mem, size_t *lenmem) {
    int i;
    peck_fftr_cfg st = NULL;
    size_t subsize, memneeded;

    if (nfft & 1) {
        fprintf(stderr, "Real FFT must be even.\n");
        return NULL;
    }
    nfft >>= 1;
    peck_fft_alloc(nfft, inverse_fft, NULL, &subsize);

    memneeded = sizeof(struct peck_fftr_state) + subsize + sizeof(peck_fft_cpx) * (nfft * 3 / 2);
    if (lenmem == NULL) {
        st = (peck_fftr_cfg) PECK_FFT_MALLOC(memneeded);
    } else {
        if (*lenmem >= memneeded)
            st = (peck_fftr_cfg) mem;
        *lenmem = memneeded;
    }
    if (!st)
        return NULL;

    st->substate = (peck_fft_cfg) (st + 1); /* just beyond peck_fftr_state struct */
    st->tmpbuf = (peck_fft_cpx *) (((char *) st->substate) + subsize);
    st->super_twiddles = st->tmpbuf + nfft;

    peck_fft_alloc(nfft, inverse_fft, st->substate, &subsize);

    for (i = 0; i < nfft/2; ++i) {
        float phase =
            -3.14159265359f * ((float) (i+1) / nfft + 0.5f);
        if (inverse_fft)
            phase *= -1;
        kf_cexp(st->super_twiddles+i, phase);
    }

    return st;
}

void peck_fftr(peck_fftr_cfg st, const peck_fft_scalar *timedata, peck_fft_cpx *freqdata) {
    /* Input buffer timedata is stored row-wise */
    int k, ncfft;
    peck_fft_cpx fpnk, fpk, f1k, f2k, tw, tdc;

    if (st->substate->inverse) {
        fprintf(stderr, "peck_fft usage error: improper alloc\n");
        exit(EXIT_FAILURE);
    }

    ncfft = st->substate->nfft;

    /* Perform the parallel FFT of two real signals packed in real,imag */
    peck_fft(st->substate, (const peck_fft_cpx*)timedata, st->tmpbuf);
    /* The real part of the DC element of the frequency spectrum in st->tmpbuf
     * contains the sum of the even-numbered elements of the input time sequence.
     * The imag part is the sum of the odd-numbered elements.
     *
     * The sum of tdc.r and tdc.i is the sum of the input time sequence, 
     * yielding DC of the input time sequence.
     * The difference of tdc.r - tdc.i is the sum of the input (dot product) [1,-1,1,-1,... 
     * yielding the Nyquist bin of input time sequence.
     */
 
    tdc.r = st->tmpbuf[0].r;
    tdc.i = st->tmpbuf[0].i;
    freqdata[0].r = tdc.r + tdc.i;
    freqdata[ncfft].r = tdc.r - tdc.i;
#if USE_SIMD == SIMD_SSE2
    freqdata[ncfft].i = freqdata[0].i = _mm_set1_ps(0);
#elif USE_SIMD == SIMD_NEON4
    freqdata[ncfft].i = freqdata[0].i = vdupq_n_f32(0.0f);
#elif USE_SIMD == SIMD_NEON2
    freqdata[ncfft].i = freqdata[0].i = vdup_n_f32(0.0f);
#else
    freqdata[ncfft].i = freqdata[0].i = 0;
#endif

    for (k = 1; k <= ncfft/2; ++k) {
        fpk    = st->tmpbuf[k]; 
        fpnk.r = st->tmpbuf[ncfft-k].r;
        fpnk.i = - st->tmpbuf[ncfft-k].i;

        C_ADD(f1k, fpk, fpnk);
        C_SUB(f2k, fpk, fpnk);
        C_MUL(tw, f2k, st->super_twiddles[k-1]);

        freqdata[k].r = HALF_OF(f1k.r + tw.r);
        freqdata[k].i = HALF_OF(f1k.i + tw.i);
        freqdata[ncfft-k].r = HALF_OF(f1k.r - tw.r);
        freqdata[ncfft-k].i = HALF_OF(tw.i - f1k.i);
    }
}

void peck_fftri(peck_fftr_cfg st,const peck_fft_cpx *freqdata,peck_fft_scalar *timedata) {
    /* input buffer timedata is stored row-wise */
    int k, ncfft;

    if (st->substate->inverse == 0) {
        fprintf (stderr, "peck_fft usage error: improper alloc\n");
        exit(EXIT_FAILURE);
    }

    ncfft = st->substate->nfft;

    st->tmpbuf[0].r = freqdata[0].r + freqdata[ncfft].r;
    st->tmpbuf[0].i = freqdata[0].r - freqdata[ncfft].r;

    for (k = 1; k <= ncfft / 2; ++k) {
        peck_fft_cpx fk, fnkc, fek, fok, tmp;
        fk = freqdata[k];
        fnkc.r = freqdata[ncfft - k].r;
        fnkc.i = -freqdata[ncfft - k].i;

        C_ADD(fek, fk, fnkc);
        C_SUB(tmp, fk, fnkc);
        C_MUL(fok, tmp, st->super_twiddles[k-1]);
        C_ADD(st->tmpbuf[k],     fek, fok);
        C_SUB(st->tmpbuf[ncfft - k], fek, fok);
#if USE_SIMD == SIMD_SSE2
        st->tmpbuf[ncfft - k].i *= _mm_set1_ps(-1.0f);
#elif USE_SIMD == SIMD_NEON4
        st->tmpbuf[ncfft - k].i *= vdupq_n_f32(-1.0f);
#elif USE_SIMD == SIMD_NEON2
        st->tmpbuf[ncfft - k].i *= vdup_n_f32(-1.0f);
#else
        st->tmpbuf[ncfft - k].i *= -1;
#endif
    }
    peck_fft(st->substate, st->tmpbuf, (peck_fft_cpx *) timedata);
}

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.