Filter:   InfoImg
download fft.c
Language: C
Copyright: (c) 2002 Fabrice Bellard.
LOC: 179
Project Info
FFMpeg
Server: MPlayerHQ
Type: cvs
...f\ffmpeg\ffmpeg\libavcodec\
   .cvsignore
   4xm.c
   8bps.c
   a52dec.c
   aasc.c
   ac3.h
   ac3dec.c
   ac3enc.c
   ac3tab.h
   adpcm.c
   adx.c
   alac.c
   allcodecs.c
   amr.c
   apiexample.c
   asv1.c
   avcodec.h
   beosthread.c
   bitstream.c
   bitstream.h
   bmp.c
   cabac.c
   cabac.h
   cinepak.c
   cljr.c
   cook.c
   cookdata.h
   cyuv.c
   dct-test.c
   dpcm.c
   dsputil.c
   dsputil.h
   dtsdec.c
   dv.c
   dvbsub.c
   dvbsubdec.c
   dvdata.h
   dvdsub.c
   dvdsubenc.c
   error_resilience.c
   eval.c
   faac.c
   faad.c
   faandct.c
   faandct.h
   fdctref.c
   fft-test.c
   fft.c
   ffv1.c
   flac.c
   flicvideo.c
   fraps.c
   g726.c
   golomb.c
   golomb.h
   h261.c
   h261data.h
   h263.c
   h263data.h
   h263dec.c
   h264.c
   h264data.h
   h264idct.c
   huffyuv.c
   idcinvideo.c
   imgconvert.c
   imgconvert_template.h
   imgresample.c
   indeo2.c
   indeo2data.h
   indeo3.c
   indeo3data.h
   interplayvideo.c
   jfdctfst.c
   jfdctint.c
   jpeg_ls.c
   jrevdct.c
   lcl.c
   libgsm.c
   loco.c
   mace.c
   mdct.c
   mdec.c
   mem.c
   mjpeg.c
   motion_est.c
   motion_est_template.c
   motion_test.c
   mp3lameaudio.c
   mpeg12.c
   mpeg12data.h
   mpeg4data.h
   mpegaudio.c
   mpegaudio.h
   mpegaudiodec.c
   mpegaudiodectab.h
   mpegaudiotab.h
   mpegvideo.c
   mpegvideo.h
   msmpeg4.c
   msmpeg4data.h
   msrle.c
   msvideo1.c
   oggtheora.c
   oggvorbis.c
   opt.c
   opt.h
   parser.c
   pcm.c
   png.c
   pnm.c
   pthread.c
   qdm2.c
   qdm2data.h
   qdrw.c
   qpeg.c
   qtrle.c
   ra144.c
   ra144.h
   ra288.c
   ra288.h
   rangecoder.c
   rangecoder.h
   ratecontrol.c
   raw.c
   resample.c
   resample2.c
   roqvideo.c
   rpza.c
   rv10.c
   shorten.c
   simple_idct.c
   simple_idct.h
   smc.c
   snow.c
   sonic.c
   sp5x.h
   svq1.c
   svq1_cb.h
   svq1_vlc.h
   svq3.c
   truemotion1.c
   truemotion1data.h
   truemotion2.c
   tscc.c
   ulti.c
   ulti_cb.h
   utils.c
   vc9.c
   vc9data.h
   vcr1.c
   vmdav.c
   vorbis.c
   vorbis.h
   vp3.c
   vp3data.h
   vp3dsp.c
   vqavideo.c
   w32thread.c
   wmadata.h
   wmadec.c
   wmv2.c
   wnv1.c
   ws-snd1.c
   x264.c
   xan.c
   xl.c
   xvidff.c
   xvmcvideo.c

/*
 * FFT/IFFT transforms
 * Copyright (c) 2002 Fabrice Bellard.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

/**
 * @file fft.c
 * FFT/IFFT transforms.
 */

#include "dsputil.h"

/**
 * The size of the FFT is 2^nbits. If inverse is TRUE, inverse FFT is
 * done
 */
int ff_fft_init(FFTContext *s, int nbits, int inverse)
{
    int i, j, m, n;
    float alpha, c1, s1, s2;

    s->nbits = nbits;
    n = 1 << nbits;

    s->exptab = av_malloc((n / 2) * sizeof(FFTComplex));
    if (!s->exptab)
        goto fail;
    s->revtab = av_malloc(n * sizeof(uint16_t));
    if (!s->revtab)
        goto fail;
    s->inverse = inverse;

    s2 = inverse ? 1.0 : -1.0;

    for(i=0;i<(n/2);i++) {
        alpha = 2 * M_PI * (float)i / (float)n;
        c1 = cos(alpha);
        s1 = sin(alpha) * s2;
        s->exptab[i].re = c1;
        s->exptab[i].im = s1;
    }
    s->fft_calc = ff_fft_calc_c;
    s->exptab1 = NULL;

    /* compute constant table for HAVE_SSE version */
#if (defined(HAVE_MMX) && defined(HAVE_BUILTIN_VECTOR)) || defined(HAVE_ALTIVEC)
    {
        int has_vectors = 0;

#if defined(HAVE_MMX)
        has_vectors = mm_support() & MM_SSE;
#endif
#if defined(HAVE_ALTIVEC) && !defined(ALTIVEC_USE_REFERENCE_C_CODE)
        has_vectors = mm_support() & MM_ALTIVEC;
#endif
        if (has_vectors) {
            int np, nblocks, np2, l;
            FFTComplex *q;

            np = 1 << nbits;
            nblocks = np >> 3;
            np2 = np >> 1;
            s->exptab1 = av_malloc(np * 2 * sizeof(FFTComplex));
            if (!s->exptab1)
                goto fail;
            q = s->exptab1;
            do {
                for(l = 0; l < np2; l += 2 * nblocks) {
                    *q++ = s->exptab[l];
                    *q++ = s->exptab[l + nblocks];

                    q->re = -s->exptab[l].im;
                    q->im = s->exptab[l].re;
                    q++;
                    q->re = -s->exptab[l + nblocks].im;
                    q->im = s->exptab[l + nblocks].re;
                    q++;
                }
                nblocks = nblocks >> 1;
            } while (nblocks != 0);
            av_freep(&s->exptab);
#if defined(HAVE_MMX)
            s->fft_calc = ff_fft_calc_sse;
#else
            s->fft_calc = ff_fft_calc_altivec;
#endif
        }
    }
#endif

    /* compute bit reverse table */

    for(i=0;i<n;i++) {
        m=0;
        for(j=0;j<nbits;j++) {
            m |= ((i >> j) & 1) << (nbits-j-1);
        }
        s->revtab[i]=m;
    }
    return 0;
 fail:
    av_freep(&s->revtab);
    av_freep(&s->exptab);
    av_freep(&s->exptab1);
    return -1;
}

/* butter fly op */
#define BF(pre, pim, qre, qim, pre1, pim1, qre1, qim1) \
{\
  FFTSample ax, ay, bx, by;\
  bx=pre1;\
  by=pim1;\
  ax=qre1;\
  ay=qim1;\
  pre = (bx + ax);\
  pim = (by + ay);\
  qre = (bx - ax);\
  qim = (by - ay);\
}

#define MUL16(a,b) ((a) * (b))

#define CMUL(pre, pim, are, aim, bre, bim) \
{\
   pre = (MUL16(are, bre) - MUL16(aim, bim));\
   pim = (MUL16(are, bim) + MUL16(bre, aim));\
}

/**
 * Do a complex FFT with the parameters defined in ff_fft_init(). The
 * input data must be permuted before with s->revtab table. No
 * 1.0/sqrt(n) normalization is done.
 */
void ff_fft_calc_c(FFTContext *s, FFTComplex *z)
{
    int ln = s->nbits;
    int j, np, np2;
    int nblocks, nloops;
    register FFTComplex *p, *q;
    FFTComplex *exptab = s->exptab;
    int l;
    FFTSample tmp_re, tmp_im;

    np = 1 << ln;

    /* pass 0 */

    p=&z[0];
    j=(np >> 1);
    do {
        BF(p[0].re, p[0].im, p[1].re, p[1].im,
           p[0].re, p[0].im, p[1].re, p[1].im);
        p+=2;
    } while (--j != 0);

    /* pass 1 */


    p=&z[0];
    j=np >> 2;
    if (s->inverse) {
        do {
            BF(p[0].re, p[0].im, p[2].re, p[2].im,
               p[0].re, p[0].im, p[2].re, p[2].im);
            BF(p[1].re, p[1].im, p[3].re, p[3].im,
               p[1].re, p[1].im, -p[3].im, p[3].re);
            p+=4;
        } while (--j != 0);
    } else {
        do {
            BF(p[0].re, p[0].im, p[2].re, p[2].im,
               p[0].re, p[0].im, p[2].re, p[2].im);
            BF(p[1].re, p[1].im, p[3].re, p[3].im,
               p[1].re, p[1].im, p[3].im, -p[3].re);
            p+=4;
        } while (--j != 0);
    }
    /* pass 2 .. ln-1 */

    nblocks = np >> 3;
    nloops = 1 << 2;
    np2 = np >> 1;
    do {
        p = z;
        q = z + nloops;
        for (j = 0; j < nblocks; ++j) {
            BF(p->re, p->im, q->re, q->im,
               p->re, p->im, q->re, q->im);

            p++;
            q++;
            for(l = nblocks; l < np2; l += nblocks) {
                CMUL(tmp_re, tmp_im, exptab[l].re, exptab[l].im, q->re, q->im);
                BF(p->re, p->im, q->re, q->im,
                   p->re, p->im, tmp_re, tmp_im);
                p++;
                q++;
            }

            p += nloops;
            q += nloops;
        }
        nblocks = nblocks >> 1;
        nloops = nloops << 1;
    } while (nblocks != 0);
}

/**
 * Do the permutation needed BEFORE calling ff_fft_calc()
 */
void ff_fft_permute(FFTContext *s, FFTComplex *z)
{
    int j, k, np;
    FFTComplex tmp;
    const uint16_t *revtab = s->revtab;

    /* reverse */
    np = 1 << s->nbits;
    for(j=0;j<np;j++) {
        k = revtab[j];
        if (k < j) {
            tmp = z[k];
            z[k] = z[j];
            z[j] = tmp;
        }
    }
}

void ff_fft_end(FFTContext *s)
{
    av_freep(&s->revtab);
    av_freep(&s->exptab);
    av_freep(&s->exptab1);
}