yuv.h 489 B

12345678910
  1. #ifndef _YUV_H_
  2. #define _YUV_H_
  3. void YUV420toYUV444(int width, int height, unsigned char* src, unsigned char* dst);
  4. void YUV422toYUV444(int width, int height, unsigned char* src, unsigned char* dst);
  5. void RGB565toRGB888(int width, int height, unsigned char* src, unsigned char* dst);
  6. void RAW12toRAW16(int width, int height, const unsigned char* src, unsigned char* dst);
  7. void YUV420NV21toYUV444(int width, int height, unsigned char* src, unsigned char* dst,
  8. int is_nv21);
  9. #endif