Add inference snapshot notify client

This commit is contained in:
gqc
2026-06-05 18:14:00 +08:00
parent b5fad0e94f
commit ebc7aaa11c
16 changed files with 2243 additions and 96 deletions
+16 -1
View File
@@ -4,6 +4,20 @@
#define DSTWidth 640
#define DSTHeight 640
typedef struct _rga_frame_info_t {
unsigned long long seq;
int src_width;
int src_height;
int src_h_stride;
int src_v_stride;
int dst_width;
int dst_height;
int dst_x;
int dst_y;
int dst_rect_width;
int dst_rect_height;
} rga_frame_info_t;
class rga_client_t {
public:
rga_client_t() {};
@@ -14,5 +28,6 @@ extern rga_client_t rga_client;
void initRkRga();
void deinitRkRga();
void rga_get_last_frame_info(rga_frame_info_t *out);
#endif
#endif