vou_exp.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /******************************************************************************
  2. Copyright (C), 2001-2011, Hisilicon Tech. Co., Ltd.
  3. ******************************************************************************
  4. File Name : vou_ext.h
  5. Version : Initial Draft
  6. Author : Hisilicon multimedia software group
  7. Created : 2011/06/28
  8. Description :
  9. History :
  10. 1.Date : 2011/06/28
  11. Author : n00168968/z00185248/l00181524
  12. Modification: Created file
  13. ******************************************************************************/
  14. #include "hi_common.h"
  15. #ifndef __HI_VOU_EXP_H__
  16. #define __HI_VOU_EXP_H__
  17. typedef struct hiVOU_EXPORT_CALLBACK_S
  18. {
  19. void (*pfnVoNotify) (int module_id, int vodev);
  20. } VOU_EXPORT_CALLBACK_S;
  21. typedef HI_S32 FN_VO_RegisterExternCallback(VOU_EXPORT_CALLBACK_S *pstExpCallback);
  22. typedef struct hiVOU_EXPORT_SYMBOL_S
  23. {
  24. FN_VO_RegisterExternCallback *pfnVoRegisterExpCallback;
  25. }VOU_EXPORT_SYMBOL_S;
  26. #endif /* __HI_VOU_EXP_H__ */