12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef __HVXCSPECIFICCONFIG_C_H__
- #define __HVXCSPECIFICCONFIG_C_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct CSBitStream;
- typedef struct HvxcSpecificConfig {
- int m_isBaseLayer;
- int m_DPvarMode;
- int m_DPrateMode;
- int m_DPextensionFlag;
- int m_vrScalFlag;
- } HvxcSpecificConfig, *HvxcSpecificConfigPtr;
- void HvxcSpecificConfig_Parse( HvxcSpecificConfigPtr self, HvxcSpecificConfigPtr baselayer, struct CSBitStream *bs);
- void HvxcSpecificConfig_Copy(HvxcSpecificConfigPtr dst, const HvxcSpecificConfigPtr src);
- int HvxcSpecificConfig_Print( HvxcSpecificConfigPtr self, char string[]);
- #ifdef __cplusplus
- }
- #endif
- #endif
|