Searched refs:RDFTContext (Results 1 – 12 of 12) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | rdft.h | 28 struct RDFTContext { struct 38 void (*rdft_calc)(struct RDFTContext *s, FFTSample *z); argument 46 int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans); 47 void ff_rdft_end(RDFTContext *s); 49 void ff_rdft_init_arm(RDFTContext *s);
|
D | avfft.h | 78 typedef struct RDFTContext RDFTContext; typedef 85 RDFTContext *av_rdft_init(int nbits, enum RDFTransformType trans); 86 void av_rdft_calc(RDFTContext *s, FFTSample *data); 87 void av_rdft_end(RDFTContext *s);
|
D | avfft.c | 95 RDFTContext *av_rdft_init(int nbits, enum RDFTransformType trans) in av_rdft_init() 97 RDFTContext *s = av_malloc(sizeof(*s)); in av_rdft_init() 105 void av_rdft_calc(RDFTContext *s, FFTSample *data) in av_rdft_calc() 110 av_cold void av_rdft_end(RDFTContext *s) in av_rdft_end()
|
D | rdft.c | 36 static void rdft_calc_c(RDFTContext *s, FFTSample *data) in rdft_calc_c() 89 av_cold int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans) in ff_rdft_init() 117 av_cold void ff_rdft_end(RDFTContext *s) in ff_rdft_end()
|
D | dct.h | 35 RDFTContext rdft;
|
D | binkaudio.c | 67 RDFTContext rdft;
|
D | wmavoice.c | 266 RDFTContext rdft, irdft; ///< contexts for FFT-calculation in the
|
D | qdm2.c | 165 RDFTContext rdft_ctx;
|
/third_party/ffmpeg/libavcodec/arm/ |
D | rdft_init_arm.c | 25 void ff_rdft_calc_neon(struct RDFTContext *s, FFTSample *z); 27 av_cold void ff_rdft_init_arm(RDFTContext *s) in ff_rdft_init_arm()
|
/third_party/ffmpeg/libavcodec/tests/ |
D | fft.c | 293 static inline void rdft_init(RDFTContext **r, int nbits, enum RDFTransformType trans) in rdft_init() 311 static inline void rdft_calc(RDFTContext *r, FFTSample *tab) in rdft_calc() 329 static inline void rdft_end(RDFTContext *r) in rdft_end() 380 RDFTContext *r; in main()
|
/third_party/ffmpeg/libavfilter/ |
D | af_firequalizer.c | 69 RDFTContext *analysis_rdft; 70 RDFTContext *analysis_irdft; 71 RDFTContext *rdft; 72 RDFTContext *irdft; 74 RDFTContext *cepstrum_rdft; 75 RDFTContext *cepstrum_irdft;
|
/third_party/ffmpeg/fftools/ |
D | ffplay.c | 267 RDFTContext *rdft;
|