add v4l2 test
This commit is contained in:
Executable
+10
@@ -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, unsigned char* src, unsigned char* dst);
|
||||
void YUV420NV21toYUV444(int width, int height, unsigned char* src, unsigned char* dst);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user