Files
fml13v01-buildroot/package/v4l2_test/yuv.h
T
2021-12-17 16:32:06 +08:00

11 lines
463 B
C
Executable File

#ifndef _YUV_H_
#define _YUV_H_
void YUV420toYUV444(int width, int height, unsigned char* src, unsigned char* dst);
void YUV422toYUV444(int width, int height, unsigned char* src, unsigned char* dst);
void RGB565toRGB888(int width, int height, unsigned char* src, unsigned char* dst);
void RAW12toRAW16(int width, int height, unsigned char* src, unsigned char* dst);
void YUV420NV21toYUV444(int width, int height, unsigned char* src, unsigned char* dst);
#endif