hc
2023-11-30 6c9be420e167ee7ce45c0309586f09ddab28ac15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _TOOL_RKAIQ_API_AHDR_H_
#define _TOOL_RKAIQ_API_AHDR_H_
 
#include "rk_aiq.h"
#include "rk_aiq_user_api_ahdr.h"
#include "rkaiq_socket.h"
 
class RKAiqToolAHDR
{
  public:
    RKAiqToolAHDR();
    virtual ~RKAiqToolAHDR();
 
    int SetAttrib(const ahdr_attrib_t attr, int cmdID);
    int GetAttrib(ahdr_attrib_t* attr, int cmdID);
};
 
#endif // _TOOL_RKAIQ_API_AHDR_H_