drft.java

来自「java ogg player library. for play back o」· Java 代码 · 共 1,318 行 · 第 1/2 页

JAVA
1,318
字号
/* JOrbis * Copyright (C) 2000 ymnk, JCraft,Inc. *   * Written by: 2000 ymnk<ymnk@jcraft.com> *    * Many thanks to  *   Monty <monty@xiph.org> and  *   The XIPHOPHORUS Company http://www.xiph.org/ . * JOrbis has been based on their awesome works, Vorbis codec. *    * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public License * as published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version.    * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU Library General Public License for more details. *  * You should have received a copy of the GNU Library General Public * License along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */package com.jcraft.jorbis;class Drft{  int n;  float[] trigcache;      int[] splitcache;  void backward(float[] data){    //System.err.println("Drft.backward");    if(n==1)return;    drftb1(n,data,trigcache,trigcache,n,splitcache);  }  void init(int n){    //System.err.println("Drft.init");    this.n=n;    trigcache=new float[3*n];    splitcache=new int[32];    fdrffti(n, trigcache, splitcache);  }  void clear(){    //System.err.println("Drft.clear");    if(trigcache!=null)trigcache=null;    if(splitcache!=null)splitcache=null;//    memset(l,0,sizeof(drft_lookup));  }  static int[] ntryh = { 4,2,3,5 };  static float tpi = 6.28318530717958647692528676655900577f;  static float hsqt2 = .70710678118654752440084436210485f;  static float taui = .86602540378443864676372317075293618f;  static float taur = -.5f;  static float sqrt2 = 1.4142135623730950488016887242097f;  static void drfti1(int n, float[] wa, int index, int[] ifac){    float arg,argh,argld,fi;    int ntry=0,i,j=-1;    int k1, l1, l2, ib;    int ld, ii, ip, is, nq, nr;    int ido, ipm, nfm1;    int nl=n;    int nf=0;    int state=101;    loop: while(true){      switch(state){      case 101:	j++;	if (j < 4)	  ntry=ntryh[j];	else	  ntry+=2;      case 104:	nq=nl/ntry;	nr=nl-ntry*nq;	if(nr!=0){	  state=101;	  break;	}	nf++;	ifac[nf+1]=ntry;	nl=nq;	if(ntry!=2){	  state=107;	  break;	}	if(nf==1){	  state=107;	  break;	}	for(i=1;i<nf;i++){	  ib=nf-i+1;	  ifac[ib+1]=ifac[ib];	}	ifac[2] = 2;      case 107:	if(nl!=1){	  state=104;	  break;	}	ifac[0]=n;	ifac[1]=nf;	argh=tpi/n;	is=0;	nfm1=nf-1;	l1=1;	if(nfm1==0)return;	for (k1=0;k1<nfm1;k1++){	  ip=ifac[k1+2];	  ld=0;	  l2=l1*ip;	  ido=n/l2;	  ipm=ip-1;	  for (j=0;j<ipm;j++){	    ld+=l1;	    i=is;	    argld=(float)ld*argh;	    fi=0.f;	    for (ii=2;ii<ido;ii+=2){	      fi+=1.f;	      arg=fi*argld;	      wa[index+i++]=(float)Math.cos(arg);	      wa[index+i++]=(float)Math.sin(arg);	    }	    is+=ido;	  }	  l1=l2;	}	break loop;      }    }  }  static void fdrffti(int n, float[] wsave, int[] ifac){//System.err.println("fdrffti: n="+n);    if(n == 1) return;    drfti1(n, wsave, n, ifac);  }  static void dradf2(int ido,int l1,float[] cc, float[] ch, float[] wa1, int index){    int i,k;    float ti2,tr2;    int t0,t1,t2,t3,t4,t5,t6;    t1=0;    t0=(t2=l1*ido);    t3=ido<<1;    for(k=0;k<l1;k++){      ch[t1<<1]=cc[t1]+cc[t2];      ch[(t1<<1)+t3-1]=cc[t1]-cc[t2];      t1+=ido;      t2+=ido;    }        if(ido<2)return;    if(ido!=2){      t1=0;      t2=t0;      for(k=0;k<l1;k++){	t3=t2;	t4=(t1<<1)+(ido<<1);	t5=t1;	t6=t1+t1;	for(i=2;i<ido;i+=2){	  t3+=2;	  t4-=2;	  t5+=2;	  t6+=2;	  tr2=wa1[index+i-2]*cc[t3-1]+wa1[index+i-1]*cc[t3];	  ti2=wa1[index+i-2]*cc[t3]-wa1[index+i-1]*cc[t3-1];	  ch[t6]=cc[t5]+ti2;	  ch[t4]=ti2-cc[t5];	  ch[t6-1]=cc[t5-1]+tr2;	  ch[t4-1]=cc[t5-1]-tr2;	}	t1+=ido;	t2+=ido;      }      if(ido%2==1)return;    }        t3=(t2=(t1=ido)-1);    t2+=t0;    for(k=0;k<l1;k++){      ch[t1]=-cc[t2];      ch[t1-1]=cc[t3];      t1+=ido<<1;      t2+=ido;      t3+=ido;    }  }  static void dradf4(int ido,int l1,float[] cc, float[] ch, 		     float[] wa1, int index1,		     float[] wa2, int index2,		     float[] wa3, int index3){    int i,k,t0,t1,t2,t3,t4,t5,t6;    float ci2,ci3,ci4,cr2,cr3,cr4,ti1,ti2,ti3,ti4,tr1,tr2,tr3,tr4;    t0=l1*ido;      t1=t0;    t4=t1<<1;    t2=t1+(t1<<1);    t3=0;    for(k=0;k<l1;k++){      tr1=cc[t1]+cc[t2];      tr2=cc[t3]+cc[t4];      ch[t5=t3<<2]=tr1+tr2;      ch[(ido<<2)+t5-1]=tr2-tr1;      ch[(t5+=(ido<<1))-1]=cc[t3]-cc[t4];      ch[t5]=cc[t2]-cc[t1];            t1+=ido;      t2+=ido;      t3+=ido;      t4+=ido;    }    if(ido<2)return;    if(ido!=2){      t1=0;      for(k=0;k<l1;k++){	t2=t1;	t4=t1<<2;	t5=(t6=ido<<1)+t4;	for(i=2;i<ido;i+=2){	  t3=(t2+=2);	  t4+=2;	  t5-=2;	  t3+=t0;	  cr2=wa1[index1+i-2]*cc[t3-1]+wa1[index1+i-1]*cc[t3];	  ci2=wa1[index1+i-2]*cc[t3]-wa1[index1+i-1]*cc[t3-1];	  t3+=t0;	  cr3=wa2[index2+i-2]*cc[t3-1]+wa2[index2+i-1]*cc[t3];	  ci3=wa2[index2+i-2]*cc[t3]-wa2[index2+i-1]*cc[t3-1];	  t3+=t0;	  cr4=wa3[index3+i-2]*cc[t3-1]+wa3[index3+i-1]*cc[t3];	  ci4=wa3[index3+i-2]*cc[t3]-wa3[index3+i-1]*cc[t3-1];	  tr1=cr2+cr4;	  tr4=cr4-cr2;	  ti1=ci2+ci4;	  ti4=ci2-ci4;	  ti2=cc[t2]+ci3;	  ti3=cc[t2]-ci3;	  tr2=cc[t2-1]+cr3;	  tr3=cc[t2-1]-cr3;	  	  ch[t4-1]=tr1+tr2;	  ch[t4]=ti1+ti2;	  ch[t5-1]=tr3-ti4;	  ch[t5]=tr4-ti3;	  ch[t4+t6-1]=ti4+tr3;	  ch[t4+t6]=tr4+ti3;	  ch[t5+t6-1]=tr2-tr1;	  ch[t5+t6]=ti1-ti2;	}	t1+=ido;      }      if((ido&1)!=0)return;    }    t2=(t1=t0+ido-1)+(t0<<1);    t3=ido<<2;    t4=ido;    t5=ido<<1;    t6=ido;    for(k=0;k<l1;k++){      ti1=-hsqt2*(cc[t1]+cc[t2]);      tr1=hsqt2*(cc[t1]-cc[t2]);      ch[t4-1]=tr1+cc[t6-1];      ch[t4+t5-1]=cc[t6-1]-tr1;      ch[t4]=ti1-cc[t1+t0];      ch[t4+t5]=ti1+cc[t1+t0];            t1+=ido;      t2+=ido;      t4+=t3;      t6+=ido;    }  }  static void dradfg(int ido,int ip,int l1,int idl1,float[] cc,float[] c1,		     float[] c2, float[] ch, float[] ch2, float[] wa, int index){    int idij,ipph,i,j,k,l,ic,ik,is;    int t0,t1,t2=0,t3,t4,t5,t6,t7,t8,t9,t10;    float dc2,ai1,ai2,ar1,ar2,ds2;    int nbd;    float dcp=0,arg,dsp=0,ar1h,ar2h;    int idp2,ipp2;      arg=tpi/(float)ip;    dcp=(float)Math.cos(arg);    dsp=(float)Math.sin(arg);    ipph=(ip+1)>>1;    ipp2=ip;    idp2=ido;    nbd=(ido-1)>>1;    t0=l1*ido;    t10=ip*ido;    int state=100;    loop: while(true){      switch(state){      case 101:	if(ido==1){	  state=119;	  break;	}	for(ik=0;ik<idl1;ik++)ch2[ik]=c2[ik];	t1=0;	for(j=1;j<ip;j++){	  t1+=t0;	  t2=t1;	  for(k=0;k<l1;k++){	    ch[t2]=c1[t2];	    t2+=ido;	  }	}	is=-ido;	t1=0;	if(nbd>l1){	  for(j=1;j<ip;j++){	    t1+=t0;	    is+=ido;	    t2= -ido+t1;	    for(k=0;k<l1;k++){	      idij=is-1;	      t2+=ido;	      t3=t2;	      for(i=2;i<ido;i+=2){		idij+=2;		t3+=2;		ch[t3-1]=wa[index+idij-1]*c1[t3-1]+wa[index+idij]*c1[t3];		ch[t3]=wa[index+idij-1]*c1[t3]-wa[index+idij]*c1[t3-1];	      }	    }	  }	}	else{	  for(j=1;j<ip;j++){	    is+=ido;	    idij=is-1;	    t1+=t0;	    t2=t1;	    for(i=2;i<ido;i+=2){	      idij+=2;	      t2+=2;	      t3=t2;	      for(k=0;k<l1;k++){		ch[t3-1]=wa[index+idij-1]*c1[t3-1]+wa[index+idij]*c1[t3];		ch[t3]=wa[index+idij-1]*c1[t3]-wa[index+idij]*c1[t3-1];		t3+=ido;	      }	    }	  }	}	t1=0;	t2=ipp2*t0;	if(nbd<l1){	  for(j=1;j<ipph;j++){	    t1+=t0;	    t2-=t0;	    t3=t1;	    t4=t2;	    for(i=2;i<ido;i+=2){	      t3+=2;	      t4+=2;	      t5=t3-ido;	      t6=t4-ido;	      for(k=0;k<l1;k++){		t5+=ido;		t6+=ido;		c1[t5-1]=ch[t5-1]+ch[t6-1];		c1[t6-1]=ch[t5]-ch[t6];		c1[t5]=ch[t5]+ch[t6];		c1[t6]=ch[t6-1]-ch[t5-1];	      }	    }	  }	}	else{	  for(j=1;j<ipph;j++){	    t1+=t0;	    t2-=t0;	    t3=t1;	    t4=t2;	    for(k=0;k<l1;k++){	      t5=t3;	      t6=t4;	      for(i=2;i<ido;i+=2){		t5+=2;		t6+=2;		c1[t5-1]=ch[t5-1]+ch[t6-1];		c1[t6-1]=ch[t5]-ch[t6];		c1[t5]=ch[t5]+ch[t6];		c1[t6]=ch[t6-1]-ch[t5-1];	      }	      t3+=ido;	      t4+=ido;	    }	  }	}      case 119:	for(ik=0;ik<idl1;ik++)c2[ik]=ch2[ik];	t1=0;	t2=ipp2*idl1;	for(j=1;j<ipph;j++){	  t1+=t0;	  t2-=t0;	  t3=t1-ido;	  t4=t2-ido;	  for(k=0;k<l1;k++){	    t3+=ido;	    t4+=ido;	    c1[t3]=ch[t3]+ch[t4];	    c1[t4]=ch[t4]-ch[t3];	  }	}	ar1=1.f;	ai1=0.f;	t1=0;	t2=ipp2*idl1;	t3=(ip-1)*idl1;	for(l=1;l<ipph;l++){	  t1+=idl1;	  t2-=idl1;	  ar1h=dcp*ar1-dsp*ai1;	  ai1=dcp*ai1+dsp*ar1;	  ar1=ar1h;	  t4=t1;	  t5=t2;	  t6=t3;	  t7=idl1;	  for(ik=0;ik<idl1;ik++){	    ch2[t4++]=c2[ik]+ar1*c2[t7++];	    ch2[t5++]=ai1*c2[t6++];	  }	  dc2=ar1;	  ds2=ai1;	  ar2=ar1;	  ai2=ai1;	  t4=idl1;	  t5=(ipp2-1)*idl1;	  for(j=2;j<ipph;j++){	    t4+=idl1;	    t5-=idl1;	    ar2h=dc2*ar2-ds2*ai2;	    ai2=dc2*ai2+ds2*ar2;	    ar2=ar2h;	    t6=t1;	    t7=t2;	    t8=t4;	    t9=t5;	    for(ik=0;ik<idl1;ik++){	      ch2[t6++]+=ar2*c2[t8++];	      ch2[t7++]+=ai2*c2[t9++];	    }	  }	}	t1=0;	for(j=1;j<ipph;j++){	  t1+=idl1;	  t2=t1;	  for(ik=0;ik<idl1;ik++)ch2[ik]+=c2[t2++];	}	if(ido<l1){	  state=132;	  break;	}	t1=0;	t2=0;	for(k=0;k<l1;k++){	  t3=t1;	  t4=t2;	  for(i=0;i<ido;i++)cc[t4++]=ch[t3++];	  t1+=ido;	  t2+=t10;	}	state=135;	break;      case 132:	for(i=0;i<ido;i++){	  t1=i;	  t2=i;	  for(k=0;k<l1;k++){	    cc[t2]=ch[t1];	    t1+=ido;	    t2+=t10;	  }	}      case 135:	t1=0;	t2=ido<<1;	t3=0;	t4=ipp2*t0;	for(j=1;j<ipph;j++){	  t1+=t2;	  t3+=t0;	  t4-=t0;	  t5=t1;	  t6=t3;	  t7=t4;	  for(k=0;k<l1;k++){	    cc[t5-1]=ch[t6];	    cc[t5]=ch[t7];	    t5+=t10;	    t6+=ido;	    t7+=ido;	  }	}	if(ido==1)return;	if(nbd<l1){	  state=141;	  break;	}	t1=-ido;	t3=0;	t4=0;	t5=ipp2*t0;	for(j=1;j<ipph;j++){	  t1+=t2;	  t3+=t2;	  t4+=t0;	  t5-=t0;	  t6=t1;	  t7=t3;	  t8=t4;	  t9=t5;	  for(k=0;k<l1;k++){	    for(i=2;i<ido;i+=2){	      ic=idp2-i;	      cc[i+t7-1]=ch[i+t8-1]+ch[i+t9-1];	      cc[ic+t6-1]=ch[i+t8-1]-ch[i+t9-1];	      cc[i+t7]=ch[i+t8]+ch[i+t9];	      cc[ic+t6]=ch[i+t9]-ch[i+t8];	    }	    t6+=t10;	    t7+=t10;	    t8+=ido;	    t9+=ido;	  }	}	return;      case 141:	t1=-ido;	t3=0;	t4=0;	t5=ipp2*t0;	for(j=1;j<ipph;j++){	  t1+=t2;	  t3+=t2;	  t4+=t0;	  t5-=t0;	  for(i=2;i<ido;i+=2){	    t6=idp2+t1-i;	    t7=i+t3;	    t8=i+t4;	    t9=i+t5;	    for(k=0;k<l1;k++){	      cc[t7-1]=ch[t8-1]+ch[t9-1];	      cc[t6-1]=ch[t8-1]-ch[t9-1];	      cc[t7]=ch[t8]+ch[t9];	      cc[t6]=ch[t9]-ch[t8];	      t6+=t10;	      t7+=t10;	      t8+=ido;	      t9+=ido;	    }	  }	}	break loop;      }    }  }  static void drftf1(int n,float[] c, float[] ch, float[] wa, int[] ifac){    int i,k1,l1,l2;    int na,kh,nf;    int ip,iw,ido,idl1,ix2,ix3;    nf=ifac[1];    na=1;    l2=n;    iw=n;    for(k1=0;k1<nf;k1++){      kh=nf-k1;      ip=ifac[kh+1];      l1=l2/ip;      ido=n/l2;      idl1=ido*l1;      iw-=(ip-1)*ido;      na=1-na;      int state=100;      loop: while(true){	switch(state){	case 100:	  if(ip!=4){	    state=102;	    break;	  }	  ix2=iw+ido;	  ix3=ix2+ido;	  if(na!=0)	    dradf4(ido,l1,ch,c,wa,iw-1,wa,ix2-1,wa,ix3-1);	  else	    dradf4(ido,l1,c,ch,wa,iw-1,wa,ix2-1,wa,ix3-1);	  state=110;	  break;	case 102:	  if(ip!=2){	    state=104;	    break;	  }	  if(na!=0){	    state=103;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?