ax_isp_debug.h 861 B

1234567891011121314151617181920212223
  1. /**********************************************************************************
  2. *
  3. * Copyright (c) 2019-2020 Beijing AXera Technology Co., Ltd. All Rights Reserved.
  4. *
  5. * This source file is the property of Beijing AXera Technology Co., Ltd. and
  6. * may not be copied or distributed in any isomorphic form without the prior
  7. * written consent of Beijing AXera Technology Co., Ltd.
  8. *
  9. **********************************************************************************/
  10. #ifndef __AX_ISP_DEBUG_H__
  11. #define __AX_ISP_DEBUG_H__
  12. #include "ax_base_type.h"
  13. #define AX_ISP_HIST_FLAG_LIST_MAX_NUM 221
  14. typedef struct {
  15. AX_U8 nHistFlagList[AX_ISP_HIST_FLAG_LIST_MAX_NUM]; /* Hist flag list. Accuracy:U8 Range: [0, 15] */
  16. } AX_ISP_IQ_DEBUG_PARAM_T;
  17. AX_S32 AX_ISP_IQ_GetDebugParam(AX_U8 pipe, AX_ISP_IQ_DEBUG_PARAM_T *pIQDebugParam);
  18. #endif // __AX_ISP_DEBUG_H__