joint_shortcut.h 682 B

1234567891011121314151617181920212223
  1. #ifndef _AX_JOINT_SHORTCUT_H_
  2. #define _AX_JOINT_SHORTCUT_H_
  3. #include "joint.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. AX_S32 AX_JOINT_ShortcutRun(const AX_VOID* pJoint, AX_U32 nJointSize,
  8. const AX_VOID* pInput, AX_U32 nInputSize,
  9. AX_JOINT_IOMETA_T** pOutputInfos,
  10. AX_JOINT_IO_BUFFER_T** pOutputs,
  11. AX_U32* pOutputSize);
  12. AX_VOID AX_JOINT_DestroyShortcutRunOutput(AX_JOINT_IOMETA_T* pOutputInfos,
  13. AX_JOINT_IO_BUFFER_T* pOutput,
  14. AX_U32 nOutputSize);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif