comparison dsputil.h @ 1879:dd63cb7e5080 libavcodec

fft_*() renamed into ff_fft_*() patch by (Gildas Bazin <gbazin at altern dot org>)
author michael
date Sat, 13 Mar 2004 21:43:24 +0000
parents 1755f959ab7f
children 55b7435c59b8
comparison
equal deleted inserted replaced
1878:838c18d1e7fc 1879:dd63cb7e5080
506 FFTComplex *exptab; 506 FFTComplex *exptab;
507 FFTComplex *exptab1; /* only used by SSE code */ 507 FFTComplex *exptab1; /* only used by SSE code */
508 void (*fft_calc)(struct FFTContext *s, FFTComplex *z); 508 void (*fft_calc)(struct FFTContext *s, FFTComplex *z);
509 } FFTContext; 509 } FFTContext;
510 510
511 int fft_init(FFTContext *s, int nbits, int inverse); 511 int ff_fft_init(FFTContext *s, int nbits, int inverse);
512 void fft_permute(FFTContext *s, FFTComplex *z); 512 void ff_fft_permute(FFTContext *s, FFTComplex *z);
513 void fft_calc_c(FFTContext *s, FFTComplex *z); 513 void ff_fft_calc_c(FFTContext *s, FFTComplex *z);
514 void fft_calc_sse(FFTContext *s, FFTComplex *z); 514 void ff_fft_calc_sse(FFTContext *s, FFTComplex *z);
515 void fft_calc_altivec(FFTContext *s, FFTComplex *z); 515 void ff_fft_calc_altivec(FFTContext *s, FFTComplex *z);
516 516
517 static inline void fft_calc(FFTContext *s, FFTComplex *z) 517 static inline void ff_fft_calc(FFTContext *s, FFTComplex *z)
518 { 518 {
519 s->fft_calc(s, z); 519 s->fft_calc(s, z);
520 } 520 }
521 void fft_end(FFTContext *s); 521 void ff_fft_end(FFTContext *s);
522 522
523 /* MDCT computation */ 523 /* MDCT computation */
524 524
525 typedef struct MDCTContext { 525 typedef struct MDCTContext {
526 int n; /* size of MDCT (i.e. number of input data * 2) */ 526 int n; /* size of MDCT (i.e. number of input data * 2) */