Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
887 B

  1. //
  2. // ITU-T G.723 Floating Point Speech Coder ANSI C Source Code. Version 1.00
  3. // copyright (c) 1995, AudioCodes, DSP Group, France Telecom,
  4. // Universite de Sherbrooke, Intel Corporation. All rights reserved.
  5. //
  6. int MyFloor (float);
  7. #if NOTMINI
  8. void Read_lbc ( float *Dpnt, int Len, FILE *Fp );
  9. void Write_lbc( float *Dpnt, int Len, FILE *Fp );
  10. #endif
  11. void Rem_Dc( float *Dpnt, CODDEF *CodStat);
  12. void Mem_Shift( float *PrevDat, float *DataBuff );
  13. void Line_Pack( LINEDEF *Line, Word32 *Vout,int *VadAct, enum Crate WrkRate);
  14. void Line_Unpk( LINEDEF *Line, Word32 *Vinp, enum Crate *WrkRatePtr, Word16 Crc );
  15. int Rand_lbc( int *p );
  16. //void Scale
  17. float DotProd(register const float in1[], register const float in2[], register int npts);
  18. float DotRev(register const float in1[], register const float in2[], register int npts);
  19. float Dot10(float in1[], float in2[]);