hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _TOOL_RKAIQ_API_ADPCC_H_
#define _TOOL_RKAIQ_API_ADPCC_H_
 
#include "rk_aiq.h"
#include "rk_aiq_user_api_adpcc.h"
#include "rkaiq_socket.h"
 
class RKAiqToolADPCC
{
  public:
    RKAiqToolADPCC();
    virtual ~RKAiqToolADPCC();
 
    int SetAttrib(rk_aiq_dpcc_attrib_t* attr, int cmdID);
    int GetAttrib(rk_aiq_dpcc_attrib_t* attr, int cmdID);
};
 
#endif // _TOOL_RKAIQ_API_ADPCC_H_