Files
fml13v01-buildroot/package/starfive/v4l2_test/yuv.h
T
mason.huo cf9c62a4f1 package: Move v4l2test to starfive package
1.Create starfive package, and move v4l2test into it.
2.Sync the latest v4l2test package from JH7100.

Signed-off-by: mason.huo <mason.huo@starfivetech.com>

(cherry-pick commit 87583e4004ba7ceefa317d939ea8004f38eb9570 from jh7110-mm-devel branch)
2022-06-10 10:49:06 +08:00

11 lines
489 B
C

#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, const unsigned char* src, unsigned char* dst);
void YUV420NV21toYUV444(int width, int height, unsigned char* src, unsigned char* dst,
int is_nv21);
#endif