comparison libfaad2/sbr_dct.h @ 13453:6d50ef45a058

Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12. patch by adland <adland123 at yahoo dot com>
author diego
date Fri, 24 Sep 2004 17:31:36 +0000
parents d81145997036
children 2ae5ab4331ca
comparison
equal deleted inserted replaced
13452:c364b7c13dd8 13453:6d50ef45a058
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 ** Initially modified for use with MPlayer by Arpad Gereöffy on 2003/08/30 25 ** Initially modified for use with MPlayer by Arpad Gereöffy on 2003/08/30
26 ** $Id: sbr_dct.h,v 1.3 2004/06/02 22:59:03 diego Exp $ 26 ** $Id: sbr_dct.h,v 1.4 2004/06/23 13:50:51 diego Exp $
27 ** detailed CVS changelog at http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/ 27 ** detailed CVS changelog at http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
28 **/ 28 **/
29 29
30 #ifndef __SBR_DCT_H__ 30 #ifndef __SBR_DCT_H__
31 #define __SBR_DCT_H__ 31 #define __SBR_DCT_H__
32 32
33 #ifdef __cplusplus 33 #ifdef __cplusplus
34 extern "C" { 34 extern "C" {
35 #endif 35 #endif
36 36
37 void dct4_kernel(real_t * in_real, real_t * in_imag, real_t * out_real, real_t * out_imag);
38
37 void DCT3_32_unscaled(real_t *y, real_t *x); 39 void DCT3_32_unscaled(real_t *y, real_t *x);
38 void DCT2_64_unscaled(real_t *y, real_t *x); 40 void DCT4_32(real_t *y, real_t *x);
39 void DST2_64_unscaled(real_t *y, real_t *x); 41 void DST4_32(real_t *y, real_t *x);
40 void DCT4_64(real_t *y, real_t *x); 42 void DCT2_32_unscaled(real_t *y, real_t *x);
41 void DCT4_64_kernel(real_t *y, real_t *t2); 43 void DCT4_16(real_t *y, real_t *x);
44 void DCT2_16_unscaled(real_t *y, real_t *x);
42 45
43 46
44 #ifdef __cplusplus 47 #ifdef __cplusplus
45 } 48 }
46 #endif 49 #endif