HomeSort by relevance Sort by last modified time
    Searched full:drft_lookup (Results 1 - 5 of 5) sorted by null

  /external/speex/libspeex/
smallft.h 31 struct drft_lookup{ struct
37 extern void spx_drft_forward(struct drft_lookup *l,float *data);
38 extern void spx_drft_backward(struct drft_lookup *l,float *data);
39 extern void spx_drft_init(struct drft_lookup *l,int n);
40 extern void spx_drft_clear(struct drft_lookup *l);
fftwrap.c 86 struct drft_lookup *table;
87 table = speex_alloc(sizeof(struct drft_lookup));
88 spx_drft_init((struct drft_lookup *)table, size);
103 float scale = 1./((struct drft_lookup *)table)->n;
105 for (i=0;i<((struct drft_lookup *)table)->n;i++)
109 float scale = 1./((struct drft_lookup *)table)->n;
110 for (i=0;i<((struct drft_lookup *)table)->n;i++)
113 spx_drft_forward((struct drft_lookup *)table, out);
123 for (i=0;i<((struct drft_lookup *)table)->n;i++)
126 spx_drft_backward((struct drft_lookup *)table, out)
    [all...]
vorbis_psy.h 81 struct drft_lookup lookup;
scal.c 63 struct drft_lookup lookup;
smallft.c 1234 void spx_drft_forward(struct drft_lookup *l,float *data){
1239 void spx_drft_backward(struct drft_lookup *l,float *data){
1244 void spx_drft_init(struct drft_lookup *l,int n)
1252 void spx_drft_clear(struct drft_lookup *l)

Completed in 295 milliseconds