cf9c62a4f1
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)
11 lines
489 B
C
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
|