l3table.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /***************************************************************************\
  2. *
  3. * MPEG Layer3-Audio Decoder
  4. * � 1997-2006 by Fraunhofer IIS
  5. * All Rights Reserved
  6. *
  7. * filename: l3table.h
  8. * project : ISO/MPEG-Decoder
  9. * author : Martin Sieler
  10. * date : 1998-05-26
  11. * contents/description: HEADER - tables for iso/mpeg-decoding (layer3)
  12. *
  13. *
  14. \***************************************************************************/
  15. /*
  16. * $Date: 2010/11/17 20:46:02 $
  17. * $Id: l3table.h,v 1.1 2010/11/17 20:46:02 audiodsp Exp $
  18. */
  19. /*-------------------------------------------------------------------------*/
  20. #ifndef __L3TABLE_H__
  21. #define __L3TABLE_H__
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* ------------------------ includes --------------------------------------*/
  26. /* ------------------------------------------------------------------------*/
  27. struct SF_BAND_INDEX
  28. {
  29. int l[23];
  30. int s[14];
  31. };
  32. /* ------------------------------------------------------------------------*/
  33. extern const SF_BAND_INDEX sfBandIndex[3][3];
  34. /*-------------------------------------------------------------------------*/
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif