hc
2023-11-22 f743a7adbd6e230d66a6206fa115b59fec2d88eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 
#ifndef __RKAIQ_ASHARP_SHARP_V3_H__
#define __RKAIQ_ASHARP_SHARP_V3_H__
 
#include "stdio.h"
#include "string.h"
#include "math.h"
#include "stdlib.h"
 
#include "rk_aiq_asharp_algo_sharp_v3.h"
#include "rk_aiq_types_asharp_algo_prvt_v3.h"
 
RKAIQ_BEGIN_DECLARE
 
Asharp3_result_t Asharp_Start_V3(Asharp_Context_V3_t *pAsharpCtx);
 
Asharp3_result_t Asharp_Stop_V3(Asharp_Context_V3_t *pAsharpCtx);
 
//anr inint
Asharp3_result_t Asharp_Init_V3(Asharp_Context_V3_t **ppAsharpCtx, void *pCalibDb);
 
//anr release
Asharp3_result_t Asharp_Release_V3(Asharp_Context_V3_t *pAsharpCtx);
 
//anr config
Asharp3_result_t Asharp_Prepare_V3(Asharp_Context_V3_t *pAsharpCtx, Asharp_Config_V3_t* pANRConfig);
 
//anr reconfig
Asharp3_result_t Asharp_ReConfig_V3(Asharp_Context_V3_t *pAsharpCtx, Asharp_Config_V3_t* pANRConfig);
 
Asharp3_result_t Asharp_IQParaUpdate_V3(Asharp_Context_V3_t *pAsharpCtx);
 
//anr preprocess
Asharp3_result_t Asharp_PreProcess_V3(Asharp_Context_V3_t *pAsharpCtx);
 
//anr process
Asharp3_result_t Asharp_Process_V3(Asharp_Context_V3_t *pAsharpCtx, Asharp3_ExpInfo_t *pExpInfo);
 
//anr get result
Asharp3_result_t Asharp_GetProcResult_V3(Asharp_Context_V3_t *pAsharpCtx, Asharp_ProcResult_V3_t* pANRResult);
 
Asharp3_result_t Asharp_ConfigSettingParam_V3(Asharp_Context_V3_t *pAsharpCtx, Asharp3_ParamMode_t eParamMode, int snr_mode);
 
Asharp3_result_t Asharp_ParamModeProcess_V3(Asharp_Context_V3_t *pAsharpCtx, Asharp3_ExpInfo_t *pExpInfo, Asharp3_ParamMode_t *mode);
 
 
RKAIQ_END_DECLARE
 
#endif