home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Sound / LAME / Source / mdct.h < prev    next >
C/C++ Source or Header  |  1997-01-22  |  991b  |  26 lines

  1. /**********************************************************************
  2.  * ISO MPEG Audio Subgroup Software Simulation Group (1996)
  3.  * ISO 13818-3 MPEG-2 Audio Encoder - Lower Sampling Frequency Extension
  4.  *
  5.  * $Id: mdct.h,v 1.1 1996/02/14 04:04:23 rowlands Exp $
  6.  *
  7.  * $Log: mdct.h,v $
  8.  * Revision 1.1  1996/02/14 04:04:23  rowlands
  9.  * Initial revision
  10.  *
  11.  * Received from Mike Coleman
  12.  **********************************************************************/
  13.  
  14. #ifndef MDCT_DOT_H
  15. #define MDCT_DOT_H
  16. void mdct(double *in, double *out, int block_type);
  17. void inv_mdct(double *in, double *out, int block_type);
  18.  
  19. typedef double D32_18[SBLIMIT][18];
  20. typedef double L3SBS[2][3][18][SBLIMIT]; /* [gr][ch] */
  21.  
  22. void mdct_sub(L3SBS (*sb_sample), double (*mdct_freq)[2][576], int stereo, III_side_info_t *l3_side, int mode_gr );
  23. void mdct_sub_dec(double (*mdct_freq)[2][576], double inv_mdct_dec[3][2][18][32], int stereo, III_side_info_t *l3_side);
  24. void delay(double (*xr)[2][576], int stereo);
  25. #endif
  26.