Commit minor speed patch (sliding window in vorbis_blockin)
[platform/upstream/libvorbis.git] / lib / mdct.h
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
5  * THE GNU LESSER/LIBRARY PUBLIC LICENSE, WHICH IS INCLUDED WITH    *
6  * THIS SOURCE. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.        *
7  *                                                                  *
8  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2000             *
9  * by Monty <monty@xiph.org> and the XIPHOPHORUS Company            *
10  * http://www.xiph.org/                                             *
11  *                                                                  *
12  ********************************************************************
13
14  function: modified discrete cosine transform prototypes
15  last mod: $Id: mdct.h,v 1.16 2000/12/21 21:04:39 xiphmont Exp $
16
17  ********************************************************************/
18
19 #ifndef _OGG_mdct_H_
20 #define _OGG_mdct_H_
21
22 #include "vorbis/codec.h"
23
24 /*#define MDCT_INTEGERIZED  <- be warned there could be some hurt left here*/
25 #ifdef MDCT_INTEGERIZED
26
27 #define DATA_TYPE int
28 #define REG_TYPE  register int
29 #define TRIGBITS 14
30 #define cPI3_8 6270
31 #define cPI2_8 11585
32 #define cPI1_8 15137
33
34 #define FLOAT_CONV(x) ((int)((x)*(1<<TRIGBITS)+.5))
35 #define MULT_NORM(x) ((x)>>TRIGBITS)
36 #define HALVE(x) ((x)>>1)
37
38 #else
39
40 #define DATA_TYPE float
41 #define REG_TYPE  float
42 #define cPI3_8 .38268343236508977175F
43 #define cPI2_8 .70710678118654752441F
44 #define cPI1_8 .92387953251128675613F
45
46 #define FLOAT_CONV(x) (x)
47 #define MULT_NORM(x) (x)
48 #define HALVE(x) ((x)*.5f)
49
50 #endif
51
52
53 typedef struct {
54   int n;
55   int log2n;
56   
57   DATA_TYPE *trig;
58   int       *bitrev;
59
60   DATA_TYPE scale;
61 } mdct_lookup;
62
63 extern void mdct_init(mdct_lookup *lookup,int n);
64 extern void mdct_clear(mdct_lookup *l);
65 extern void mdct_forward(mdct_lookup *init, DATA_TYPE *in, DATA_TYPE *out);
66 extern void mdct_backward(mdct_lookup *init, DATA_TYPE *in, DATA_TYPE *out);
67
68 #endif
69
70
71
72
73
74
75
76
77
78
79
80