Move some abstraction around
[platform/upstream/libvorbis.git] / lib / window.c
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE.  *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
5  * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE.    *
6  * PLEASE READ THESE TERMS DISTRIBUTING.                            *
7  *                                                                  *
8  * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-1999             *
9  * by 1999 Monty <monty@xiph.org> and The XIPHOPHORUS Company       *
10  * http://www.xiph.org/                                             *
11  *                                                                  *
12  ********************************************************************
13
14  function: window functions
15  author: Monty <xiphmont@mit.edu>
16  modifications by: Monty
17  last modification date: Jul 27 1999
18
19  ********************************************************************/
20
21 #include <stdlib.h>
22 #include <math.h>
23
24 /* The 'vorbis window' is sin(sin(x)*sin(x)*2pi) */
25
26 double *_vorbis_window(int window,int left,int right){
27   double *ret=calloc(window,sizeof(double));
28   int leftbegin=window/4-left/2;
29   int rightbegin=window-window/4-right/2;
30   int i;
31   
32   for(i=0;i<left;i++){
33     double x=(i+.5)/left*M_PI/2.;
34     x=sin(x);
35     x*=x;
36     x*=M_PI/2.;
37     x=sin(x);
38     ret[i+leftbegin]=x;
39   }
40
41   for(i=leftbegin+left;i<rightbegin;i++)
42     ret[i]=1.;
43
44   for(i=0;i<right;i++){
45     double x=(right-i-.5)/right*M_PI/2.;
46     x=sin(x);
47     x*=x;
48     x*=M_PI/2.;
49     x=sin(x);
50     ret[i+rightbegin]=x;
51   }
52
53   return(ret);
54 }