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)
This commit is contained in:
mason.huo
2022-04-15 18:37:37 +08:00
committed by changhuang.liang
parent 313e975390
commit cf9c62a4f1
27 changed files with 3693 additions and 2307 deletions
+10
View File
@@ -0,0 +1,10 @@
#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