hvxcspecificconfig_c.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /***************************************************************************\
  2. *
  3. * (C) copyright Fraunhofer - IIS (2002)
  4. * All Rights Reserved
  5. *
  6. * $Header: /cvs/root/winamp/aacdec/incs/mp4dec_asc/hvxcspecificconfig_c.h,v 1.3 2012/05/08 20:16:50 audiodsp Exp $
  7. * project : MPEG-4 Audio Decoder
  8. * contents/description: HVXC 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 __HVXCSPECIFICCONFIG_C_H__
  18. #define __HVXCSPECIFICCONFIG_C_H__
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif /* __cplusplus */
  22. struct CSBitStream;
  23. typedef struct HvxcSpecificConfig {
  24. int m_isBaseLayer;
  25. int m_DPvarMode;
  26. int m_DPrateMode;
  27. int m_DPextensionFlag;
  28. int m_vrScalFlag;
  29. } HvxcSpecificConfig, *HvxcSpecificConfigPtr;
  30. void HvxcSpecificConfig_Parse( HvxcSpecificConfigPtr self, HvxcSpecificConfigPtr baselayer, struct CSBitStream *bs);
  31. void HvxcSpecificConfig_Copy(HvxcSpecificConfigPtr dst, const HvxcSpecificConfigPtr src);
  32. int HvxcSpecificConfig_Print( HvxcSpecificConfigPtr self, char string[]);
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36. #endif /* __HVXCSPECIFICCONFIG_H__ */