18 lines
335 B
C++
18 lines
335 B
C++
#ifndef _POSE_BODY_RGA_H_
|
|
#define _POSE_BODY_RGA_H_
|
|
|
|
#define DSTWidth 640
|
|
#define DSTHeight 640
|
|
|
|
class rga_client_t {
|
|
public:
|
|
rga_client_t() {};
|
|
int convert(unsigned char *src, int sw, int sh, int swstride, int shstride, char *out);
|
|
};
|
|
|
|
extern rga_client_t rga_client;
|
|
|
|
void initRkRga();
|
|
void deinitRkRga();
|
|
|
|
#endif |