📄 yuv2rgb565.h
字号:
#ifndef YUV2RGB565_H
#define YUV2RGB565_H
#ifdef __cplusplus
extern "C"{
#endif
struct dummy
{
int yuv[3];
int stride[3];
};
typedef struct AVPicture
{
unsigned char *data[4];
int linesize[4]; ///< number of bytes per line
} AVPicture;
void convert_yuv420_rgb565(struct dummy *picture, unsigned char *results, unsigned char *_py,unsigned char *_pu,unsigned char *_pv);
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -