~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavcodec/fft.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-01-18 15:46:55 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20140118154655-iz6u00yevkat1jqi
Tags: 6:10~alpha2-1
New Upstream release 10_alpha2. This upstream git snapshot has too many
changes to list here, cf. to the upstream Changelog:
http://git.libav.org/?p=libav.git;a=blob;f=Changelog;hb=refs/tags/v10_alpha2

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef AVCODEC_FFT_H
23
23
#define AVCODEC_FFT_H
24
24
 
25
 
#ifndef CONFIG_FFT_FLOAT
26
 
#define CONFIG_FFT_FLOAT 1
 
25
#ifndef FFT_FLOAT
 
26
#define FFT_FLOAT 1
27
27
#endif
28
28
 
29
29
#include <stdint.h>
30
30
#include "config.h"
31
31
#include "libavutil/mem.h"
32
32
 
33
 
#if CONFIG_FFT_FLOAT
 
33
#if FFT_FLOAT
34
34
 
35
35
#include "avfft.h"
36
36
 
51
51
 
52
52
typedef struct FFTContext FFTContext;
53
53
 
54
 
#endif /* CONFIG_FFT_FLOAT */
 
54
#endif /* FFT_FLOAT */
55
55
 
56
56
typedef struct FFTDComplex {
57
57
    FFTDouble re, im;