X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=lib%2Fmdct.c;h=f3f1ed805b592059a3e58f8f89b587116d4e5bce;hb=018ca26dece618457dd13585cad52941193c4a25;hp=321adc6ec60d48eea809865793c6b1c45ce9cdf8;hpb=0767f5fbb63b6255e0ca13708f0c38c971c30d34;p=platform%2Fupstream%2Flibvorbis.git diff --git a/lib/mdct.c b/lib/mdct.c index 321adc6..f3f1ed8 100644 --- a/lib/mdct.c +++ b/lib/mdct.c @@ -1,79 +1,75 @@ /******************************************************************** * * - * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE. * - * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY * - * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE. * - * PLEASE READ THESE TERMS DISTRIBUTING. * + * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * + * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * + * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * + * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * * * - * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-1999 * - * by 1999 Monty and The XIPHOPHORUS Company * - * http://www.xiph.org/ * + * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2009 * + * by the Xiph.Org Foundation http://www.xiph.org/ * * * ******************************************************************** - function: modified discrete cosine transform - power of two length transform only [16 <= n ] + function: normalized modified discrete cosine transform + power of two length transform only [64 <= n ] - author: Monty - modifications by: Monty - last modification date: Oct 10 1999 + Original algorithm adapted long ago from _The use of multirate filter + banks for coding of high quality digital audio_, by T. Sporer, + K. Brandenburg and B. Edler, collection of the European Signal + Processing Conference (EUSIPCO), Amsterdam, June 1992, Vol.1, pp + 211-214 - Algorithm adapted from _The use of multirate filter banks for coding - of high quality digital audio_, by T. Sporer, K. Brandenburg and - B. Edler, collection of the European Signal Processing Conference - (EUSIPCO), Amsterdam, June 1992, Vol.1, pp 211-214 + The below code implements an algorithm that no longer looks much like + that presented in the paper, but the basic structure remains if you + dig deep enough to see it. - Note that the below code won't make much sense without the paper; - The presented algorithm was already fairly polished, and the code - once followed it closely. The current code both corrects several - typos in the paper and goes beyond the presented optimizations - (steps 4 through 6 are, for example, entirely eliminated). - - This module DOES NOT INCLUDE code to generate the window function. - Everybody has their own weird favorite including me... I happen to - like the properties of y=sin(2PI*sin^2(x)), but others may vehemently - disagree. + This module DOES NOT INCLUDE code to generate/apply the window + function. Everybody has their own weird favorite including me... I + happen to like the properties of y=sin(.5PI*sin^2(x)), but others may + vehemently disagree. ********************************************************************/ +/* this can also be run as an integer transform by uncommenting a + define in mdct.h; the integerization is a first pass and although + it's likely stable for Vorbis, the dynamic range is constrained and + roundoff isn't done (so it's noisy). Consider it functional, but + only a starting point. There's no point on a machine with an FPU */ + +#include #include #include #include +#include "vorbis/codec.h" #include "mdct.h" +#include "os.h" +#include "misc.h" /* build lookups for trig functions; also pre-figure scaling and some window function algebra. */ void mdct_init(mdct_lookup *lookup,int n){ - int *bitrev=malloc(sizeof(int)*(n/4)); - double *trig=malloc(sizeof(double)*(n+n/4)); - double *AE=trig; - double *AO=AE+n/4; - double *BE=AO+n/4; - double *BO=BE+n/4; - double *CE=BO+n/4; - double *CO=CE+n/8; - - int *bitA=bitrev; - int *bitB=bitrev+n/8; + int *bitrev=_ogg_malloc(sizeof(*bitrev)*(n/4)); + DATA_TYPE *T=_ogg_malloc(sizeof(*T)*(n+n/4)); int i; - int log2n=lookup->log2n=rint(log(n)/log(2)); + int n2=n>>1; + int log2n=lookup->log2n=rint(log((float)n)/log(2.f)); lookup->n=n; - lookup->trig=trig; + lookup->trig=T; lookup->bitrev=bitrev; - /* trig lookups... */ +/* trig lookups... */ for(i=0;i>j;j++) - if((msb>>j)&i)acc|=1<>j)&i)acc|=1<scale=FLOAT_CONV(4.f/n); } -void mdct_clear(mdct_lookup *l){ - if(l){ - if(l->trig)free(l->trig); - if(l->bitrev)free(l->bitrev); - memset(l,0,sizeof(mdct_lookup)); - } +/* 8 point butterfly (in place, 4 register) */ +STIN void mdct_butterfly_8(DATA_TYPE *x){ + REG_TYPE r0 = x[6] + x[2]; + REG_TYPE r1 = x[6] - x[2]; + REG_TYPE r2 = x[4] + x[0]; + REG_TYPE r3 = x[4] - x[0]; + + x[6] = r0 + r2; + x[4] = r0 - r2; + + r0 = x[5] - x[1]; + r2 = x[7] - x[3]; + x[0] = r1 + r0; + x[2] = r1 - r0; + + r0 = x[5] + x[1]; + r1 = x[7] + x[3]; + x[3] = r2 + r3; + x[1] = r2 - r3; + x[7] = r1 + r0; + x[5] = r1 - r0; + } -static inline void _mdct_kernel(double *x, - int n, int n2, int n4, int n8, - mdct_lookup *init){ - double *w=x+1; /* interleaved access improves cache locality */ - int i; - /* step 2 */ +/* 16 point butterfly (in place, 4 register) */ +STIN void mdct_butterfly_16(DATA_TYPE *x){ + REG_TYPE r0 = x[1] - x[9]; + REG_TYPE r1 = x[0] - x[8]; + + x[8] += x[0]; + x[9] += x[1]; + x[0] = MULT_NORM((r0 + r1) * cPI2_8); + x[1] = MULT_NORM((r0 - r1) * cPI2_8); + + r0 = x[3] - x[11]; + r1 = x[10] - x[2]; + x[10] += x[2]; + x[11] += x[3]; + x[2] = r0; + x[3] = r1; + + r0 = x[12] - x[4]; + r1 = x[13] - x[5]; + x[12] += x[4]; + x[13] += x[5]; + x[4] = MULT_NORM((r0 - r1) * cPI2_8); + x[5] = MULT_NORM((r0 + r1) * cPI2_8); + + r0 = x[14] - x[6]; + r1 = x[15] - x[7]; + x[14] += x[6]; + x[15] += x[7]; + x[6] = r0; + x[7] = r1; + + mdct_butterfly_8(x); + mdct_butterfly_8(x+8); +} - { - double *xA=x+n2; - double *xB=x; - double *w2=w+n2; - double *AE=init->trig+n4; - double *AO=AE+n4; - - for(i=0;i>1) - 8; + REG_TYPE r0; + REG_TYPE r1; + + do{ + + r0 = x1[6] - x2[6]; + r1 = x1[7] - x2[7]; + x1[6] += x2[6]; + x1[7] += x2[7]; + x2[6] = MULT_NORM(r1 * T[1] + r0 * T[0]); + x2[7] = MULT_NORM(r1 * T[0] - r0 * T[1]); + + r0 = x1[4] - x2[4]; + r1 = x1[5] - x2[5]; + x1[4] += x2[4]; + x1[5] += x2[5]; + x2[4] = MULT_NORM(r1 * T[5] + r0 * T[4]); + x2[5] = MULT_NORM(r1 * T[4] - r0 * T[5]); + + r0 = x1[2] - x2[2]; + r1 = x1[3] - x2[3]; + x1[2] += x2[2]; + x1[3] += x2[3]; + x2[2] = MULT_NORM(r1 * T[9] + r0 * T[8]); + x2[3] = MULT_NORM(r1 * T[8] - r0 * T[9]); + + r0 = x1[0] - x2[0]; + r1 = x1[1] - x2[1]; + x1[0] += x2[0]; + x1[1] += x2[1]; + x2[0] = MULT_NORM(r1 * T[13] + r0 * T[12]); + x2[1] = MULT_NORM(r1 * T[12] - r0 * T[13]); + + x1-=8; + x2-=8; + T+=16; + + }while(x2>=x); +} - { - int r,s; - for(i=0;ilog2n-3;i++){ - int k0=n>>(i+1); - int k1=1<<(i+2); - int wbase=n-4; - double *AE=init->trig; - double *AO=AE+n4; - double *temp; - - for(r=0;r<(n4>>i);r+=4){ - int w1=wbase; - int w2=wbase-(k0>>1); - double AEv= *AE,wA; - double AOv= *AO,wB; - wbase-=4; - - for(s=0;s<(2<>1) - 8; + REG_TYPE r0; + REG_TYPE r1; + + do{ + + r0 = x1[6] - x2[6]; + r1 = x1[7] - x2[7]; + x1[6] += x2[6]; + x1[7] += x2[7]; + x2[6] = MULT_NORM(r1 * T[1] + r0 * T[0]); + x2[7] = MULT_NORM(r1 * T[0] - r0 * T[1]); + + T+=trigint; + + r0 = x1[4] - x2[4]; + r1 = x1[5] - x2[5]; + x1[4] += x2[4]; + x1[5] += x2[5]; + x2[4] = MULT_NORM(r1 * T[1] + r0 * T[0]); + x2[5] = MULT_NORM(r1 * T[0] - r0 * T[1]); + + T+=trigint; + + r0 = x1[2] - x2[2]; + r1 = x1[3] - x2[3]; + x1[2] += x2[2]; + x1[3] += x2[3]; + x2[2] = MULT_NORM(r1 * T[1] + r0 * T[0]); + x2[3] = MULT_NORM(r1 * T[0] - r0 * T[1]); + + T+=trigint; + + r0 = x1[0] - x2[0]; + r1 = x1[1] - x2[1]; + x1[0] += x2[0]; + x1[1] += x2[1]; + x2[0] = MULT_NORM(r1 * T[1] + r0 * T[0]); + x2[1] = MULT_NORM(r1 * T[0] - r0 * T[1]); + + T+=trigint; + x1-=8; + x2-=8; + + }while(x2>=x); +} + +STIN void mdct_butterflies(mdct_lookup *init, + DATA_TYPE *x, + int points){ + + DATA_TYPE *T=init->trig; + int stages=init->log2n-5; + int i,j; + + if(--stages>0){ + mdct_butterfly_first(T,x,points); } + for(i=1;--stages>0;i++){ + for(j=0;j<(1<>i)*j,points>>i,4<trig+n; - double *CO=CE+n8; - int *bitA=init->bitrev; - int *bitB=bitA+n8; - double *x1=x; - double *x2=x+n-2; - for(i=0;itrig)_ogg_free(l->trig); + if(l->bitrev)_ogg_free(l->bitrev); + memset(l,0,sizeof(*l)); } } -void mdct_forward(mdct_lookup *init, double *in, double *out, double *window){ - int n=init->n; - double *x=alloca(n*sizeof(double)); - int n2=n>>1; - int n4=n>>2; - int n8=n>>3; - int i; +STIN void mdct_bitreverse(mdct_lookup *init, + DATA_TYPE *x){ + int n = init->n; + int *bit = init->bitrev; + DATA_TYPE *w0 = x; + DATA_TYPE *w1 = x = w0+(n>>1); + DATA_TYPE *T = init->trig+n; - /* window + rotate + step 1 */ - { - double tempA,tempB; - int in1=n2+n4-4; - int in2=in1+5; - double *AE=init->trig+n4; - double *AO=AE+n4; - - i=0; - - for(i=0;in; + int n2=n>>1; + int n4=n>>2; + + /* rotate */ + + DATA_TYPE *iX = in+n2-7; + DATA_TYPE *oX = out+n2+n4; + DATA_TYPE *T = init->trig+n4; + + do{ + oX -= 4; + oX[0] = MULT_NORM(-iX[2] * T[3] - iX[0] * T[2]); + oX[1] = MULT_NORM (iX[0] * T[3] - iX[2] * T[2]); + oX[2] = MULT_NORM(-iX[6] * T[1] - iX[4] * T[0]); + oX[3] = MULT_NORM (iX[4] * T[1] - iX[6] * T[0]); + iX -= 8; + T += 4; + }while(iX>=in); + + iX = in+n2-8; + oX = out+n2+n4; + T = init->trig+n4; + + do{ + T -= 4; + oX[0] = MULT_NORM (iX[4] * T[3] + iX[6] * T[2]); + oX[1] = MULT_NORM (iX[4] * T[2] - iX[6] * T[3]); + oX[2] = MULT_NORM (iX[0] * T[1] + iX[2] * T[0]); + oX[3] = MULT_NORM (iX[0] * T[0] - iX[2] * T[1]); + iX -= 8; + oX += 4; + }while(iX>=in); + + mdct_butterflies(init,out+n2,n2); + mdct_bitreverse(init,out); + + /* roatate + window */ { - double *BE=init->trig+n2; - double *BO=BE+n4; - double *out2=out+n2; - double scale=4./n; - for(i=0;itrig+n2; + + do{ + oX1-=4; + + oX1[3] = MULT_NORM (iX[0] * T[1] - iX[1] * T[0]); + oX2[0] = -MULT_NORM (iX[0] * T[0] + iX[1] * T[1]); + + oX1[2] = MULT_NORM (iX[2] * T[3] - iX[3] * T[2]); + oX2[1] = -MULT_NORM (iX[2] * T[2] + iX[3] * T[3]); + + oX1[1] = MULT_NORM (iX[4] * T[5] - iX[5] * T[4]); + oX2[2] = -MULT_NORM (iX[4] * T[4] + iX[5] * T[5]); + + oX1[0] = MULT_NORM (iX[6] * T[7] - iX[7] * T[6]); + oX2[3] = -MULT_NORM (iX[6] * T[6] + iX[7] * T[7]); + + oX2+=4; + iX += 8; + T += 8; + }while(iXoX2); } } -void mdct_backward(mdct_lookup *init, double *in, double *out, double *w){ +void mdct_forward(mdct_lookup *init, DATA_TYPE *in, DATA_TYPE *out){ int n=init->n; - double *x=alloca(n*sizeof(double)); int n2=n>>1; int n4=n>>2; int n8=n>>3; - int i; + DATA_TYPE *w=alloca(n*sizeof(*w)); /* forward needs working space */ + DATA_TYPE *w2=w+n2; + + /* rotate */ /* window + rotate + step 1 */ - { - double *inO=in+1; - double *xO= x; - double *AE=init->trig+n4; - double *AO=AE+n4; - - for(i=0;itrig+n2; + + int i=0; + + for(i=0;itrig+n2; - double *BO=BE+n4; - int o1=n4,o2=o1-1; - int o3=n4+n2,o4=o3-1; - - for(i=0;itrig+n2; + x0=out+n2; + for(i=0;iscale); + x0[0] =MULT_NORM((w[0]*T[1]-w[1]*T[0])*init->scale); + w+=2; + T+=2; + } +}