You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.6KB

  1. /*
  2. *
  3. * rgb2rgb.h, Software RGB to RGB convertor
  4. * pluralize by Software PAL8 to RGB convertor
  5. * Software YUV to YUV convertor
  6. * Software YUV to RGB convertor
  7. */
  8. #ifndef RGB2RGB_INCLUDED
  9. #define RGB2RGB_INCLUDED
  10. extern void rgb24to32(const uint8_t *src,uint8_t *dst,unsigned src_size);
  11. extern void rgb32to24(const uint8_t *src,uint8_t *dst,unsigned src_size);
  12. extern void rgb15to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
  13. extern void rgb32to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
  14. extern void rgb32to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
  15. extern void rgb24to16(const uint8_t *src,uint8_t *dst,unsigned src_size);
  16. extern void rgb24to15(const uint8_t *src,uint8_t *dst,unsigned src_size);
  17. extern void rgb32tobgr32(const uint8_t *src, uint8_t *dst, unsigned src_size);
  18. extern void rgb24tobgr24(const uint8_t *src, uint8_t *dst, unsigned src_size);
  19. extern void palette8torgb32(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
  20. extern void palette8torgb16(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
  21. extern void palette8torgb15(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
  22. extern void palette8torgb24(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette);
  23. extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  24. unsigned int width, unsigned int height,
  25. unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
  26. extern void yuv422ptoyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  27. unsigned int width, unsigned int height,
  28. unsigned int lumStride, unsigned int chromStride, unsigned int dstStride);
  29. extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
  30. unsigned int width, unsigned int height,
  31. unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
  32. extern void rgb24toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
  33. unsigned int width, unsigned int height,
  34. unsigned int lumStride, unsigned int chromStride, unsigned int srcStride);
  35. extern void interleaveBytes(uint8_t *src1, uint8_t *src2, uint8_t *dst,
  36. int width, int height, int src1Stride, int src2Stride, int dstStride);
  37. #define MODE_RGB 0x1
  38. #define MODE_BGR 0x2
  39. typedef void (* yuv2rgb_fun) (uint8_t * image, uint8_t * py,
  40. uint8_t * pu, uint8_t * pv,
  41. int h_size, int v_size,
  42. int rgb_stride, int y_stride, int uv_stride);
  43. extern yuv2rgb_fun yuv2rgb;
  44. void yuv2rgb_init (int bpp, int mode);
  45. #endif