1
0

mp3quant.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /***************************************************************************\
  2. *
  3. * MPEG Layer3-Audio Decoder
  4. * © 1997-2006 by Fraunhofer IIS
  5. * All Rights Reserved
  6. *
  7. * filename: mp_quant.h
  8. * project : ISO/MPEG-Decoder
  9. * author : Markus Werner, addings: Martin Sieler
  10. * date : 1995-07-07
  11. * contents/description: HEADER - sample-dequantization
  12. *
  13. *
  14. \***************************************************************************/
  15. /*
  16. * $Date: 2010/11/17 20:46:04 $
  17. * $Id: mp3quant.h,v 1.1 2010/11/17 20:46:04 audiodsp Exp $
  18. */
  19. /*-------------------------------------------------------------------------*/
  20. #ifndef __MP3QUANT_H__
  21. #define __MP3QUANT_H__
  22. /* ------------------------ includes --------------------------------------*/
  23. #include "mpeg.h"
  24. /* ------------------------------------------------------------------------*/
  25. void mp3DequantizeSpectrum
  26. (
  27. int *pIData,
  28. float *pFData,
  29. const MP3SI_GRCH &SiGrCh,
  30. const MP3SCF &ScaleFac,
  31. const MPEG_INFO &Info
  32. );
  33. /*-------------------------------------------------------------------------*/
  34. #endif