mpeg12specificconfig_c.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /***************************************************************************\
  2. *
  3. * (C) copyright Fraunhofer - IIS (2003)
  4. * All Rights Reserved
  5. *
  6. * $Header: /cvs/root/winamp/aacdec/incs/mp4dec_asc/mpeg12specificconfig_c.h,v 1.3 2012/05/08 20:16:50 audiodsp Exp $
  7. * project : MPEG-4 Audio Decoder
  8. * contents/description: MP3OnMP4 specific config interface
  9. *
  10. * This software and/or program is protected by copyright law and
  11. * international treaties. Any reproduction or distribution of this
  12. * software and/or program, or any portion of it, may result in severe
  13. * civil and criminal penalties, and will be prosecuted to the maximum
  14. * extent possible under law.
  15. *
  16. \***************************************************************************/
  17. #ifndef __MPEG12SPECIFICCONFIG_C_H__
  18. #define __MPEG12SPECIFICCONFIG_C_H__
  19. #include "mp4dec_asc/audioobjecttypes.h"
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif /* __cplusplus */
  23. struct CSBitStream;
  24. typedef struct CSMpeg12SpecificConfig {
  25. /* unsigned int m_ID; */
  26. /* unsigned int m_layer; */
  27. unsigned int m_reserved;
  28. } CSMpeg12SpecificConfig, *CSMpeg12SpecificConfigPtr;
  29. int Mpeg12SpecificConfig_Parse(CSMpeg12SpecificConfigPtr self, struct CSBitStream *bs);
  30. /* void Mpeg12SpecificConfig_Set(CSMpeg12SpecificConfigPtr self, const CSMpeg12SpecificConfigPtr mp12sc, const AUDIO_OBJECT_TYPE aot); */
  31. /* int Mpeg12SpecificConfig_Compare(const CSMpeg12SpecificConfigPtr self, const CSMpeg12SpecificConfigPtr mp12sc, const AUDIO_OBJECT_TYPE aot); */
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif /* __MPEG12SPECIFICCONFIG_H__ */