hc
2023-11-20 3c9370f7b6bffd697c9907a7139e9df5b0d4b9df
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_