comparison libfaad2/mdct.h @ 18141:59b6fa5b4201

Update to faad2 cvs 20040915+MPlayer fixes Patch by me and Emanuele Giaquinta
author rtognimp
date Tue, 18 Apr 2006 19:39:34 +0000
parents 2ae5ab4331ca
children e83eef58b30a
comparison
equal deleted inserted replaced
18140:e371c7e18402 18141:59b6fa5b4201
20 ** forbidden. 20 ** forbidden.
21 ** 21 **
22 ** Commercial non-GPL licensing of this software is possible. 22 ** Commercial non-GPL licensing of this software is possible.
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com. 23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
24 ** 24 **
25 ** $Id: mdct.h,v 1.23 2004/02/26 09:29:27 menno Exp $ 25 ** $Id: mdct.h,v 1.26 2004/09/08 09:43:11 gcp Exp $
26 **/ 26 **/
27 27
28 #ifndef __MDCT_H__ 28 #ifndef __MDCT_H__
29 #define __MDCT_H__ 29 #define __MDCT_H__
30 30
34 34
35 35
36 mdct_info *faad_mdct_init(uint16_t N); 36 mdct_info *faad_mdct_init(uint16_t N);
37 void faad_mdct_end(mdct_info *mdct); 37 void faad_mdct_end(mdct_info *mdct);
38 void faad_imdct(mdct_info *mdct, real_t *X_in, real_t *X_out); 38 void faad_imdct(mdct_info *mdct, real_t *X_in, real_t *X_out);
39 #ifdef USE_SSE
40 void faad_imdct_sse(mdct_info *mdct, real_t *X_in, real_t *X_out);
41 #endif
42 void faad_mdct(mdct_info *mdct, real_t *X_in, real_t *X_out); 39 void faad_mdct(mdct_info *mdct, real_t *X_in, real_t *X_out);
43 40
44 41
45 #ifdef __cplusplus 42 #ifdef __cplusplus
46 } 43 }