1.将A27新UI文件夹重命名为CANUI 2.A272O新版本发布

This commit is contained in:
2025-03-26 18:43:18 +08:00
parent 497f8eb1e1
commit 5bc7ee438c
13399 changed files with 58500 additions and 59183 deletions

View File

@ -0,0 +1,31 @@
#ifndef _ITU_H
#define _ITU_H
typedef enum {
ITU_Y_UV = 0,
ITU_YUYV,
} ITU_YUV_TYPE;
typedef enum {
ITU_YUV420 = 0,
ITU_YUV422,
} ITU_OUT_FMT;
typedef struct {
int in_width;
int in_height;
int out_x;
int out_y;
int out_width;
int out_height;
int out_format;
int yuv_type;
int itu601;
} ItuConfigPara;
int itu_init(void);
int itu_config(ItuConfigPara *para);
void itu_start(void);
void itu_stop(void);
#endif