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.

166 lines
8.1KB

  1. /*
  2. * software RGB to RGB converter
  3. * pluralize by Software PAL8 to RGB converter
  4. * Software YUV to YUV converter
  5. * Software YUV to RGB converter
  6. * Written by Nick Kurshev.
  7. * YUV & runtime CPU stuff by Michael (michaelni@gmx.at)
  8. *
  9. * This file is part of Libav.
  10. *
  11. * Libav is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU Lesser General Public
  13. * License as published by the Free Software Foundation; either
  14. * version 2.1 of the License, or (at your option) any later version.
  15. *
  16. * Libav is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * Lesser General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Lesser General Public
  22. * License along with Libav; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. */
  25. #ifndef SWSCALE_RGB2RGB_H
  26. #define SWSCALE_RGB2RGB_H
  27. #include <inttypes.h>
  28. #include "libavutil/avutil.h"
  29. #include "swscale.h"
  30. /* A full collection of RGB to RGB(BGR) converters */
  31. extern void (*rgb24tobgr32)(const uint8_t *src, uint8_t *dst, int src_size);
  32. extern void (*rgb24tobgr16)(const uint8_t *src, uint8_t *dst, int src_size);
  33. extern void (*rgb24tobgr15)(const uint8_t *src, uint8_t *dst, int src_size);
  34. extern void (*rgb32tobgr24)(const uint8_t *src, uint8_t *dst, int src_size);
  35. extern void (*rgb32to16)(const uint8_t *src, uint8_t *dst, int src_size);
  36. extern void (*rgb32to15)(const uint8_t *src, uint8_t *dst, int src_size);
  37. extern void (*rgb15to16)(const uint8_t *src, uint8_t *dst, int src_size);
  38. extern void (*rgb15tobgr24)(const uint8_t *src, uint8_t *dst, int src_size);
  39. extern void (*rgb15to32)(const uint8_t *src, uint8_t *dst, int src_size);
  40. extern void (*rgb16to15)(const uint8_t *src, uint8_t *dst, int src_size);
  41. extern void (*rgb16tobgr24)(const uint8_t *src, uint8_t *dst, int src_size);
  42. extern void (*rgb16to32)(const uint8_t *src, uint8_t *dst, int src_size);
  43. extern void (*rgb24tobgr24)(const uint8_t *src, uint8_t *dst, int src_size);
  44. extern void (*rgb24to16)(const uint8_t *src, uint8_t *dst, int src_size);
  45. extern void (*rgb24to15)(const uint8_t *src, uint8_t *dst, int src_size);
  46. extern void (*rgb32tobgr16)(const uint8_t *src, uint8_t *dst, int src_size);
  47. extern void (*rgb32tobgr15)(const uint8_t *src, uint8_t *dst, int src_size);
  48. extern void (*shuffle_bytes_2103)(const uint8_t *src, uint8_t *dst, int src_size);
  49. void rgb24to32(const uint8_t *src, uint8_t *dst, int src_size);
  50. void rgb32to24(const uint8_t *src, uint8_t *dst, int src_size);
  51. void rgb16tobgr32(const uint8_t *src, uint8_t *dst, int src_size);
  52. void rgb16to24(const uint8_t *src, uint8_t *dst, int src_size);
  53. void rgb16tobgr16(const uint8_t *src, uint8_t *dst, int src_size);
  54. void rgb16tobgr15(const uint8_t *src, uint8_t *dst, int src_size);
  55. void rgb15tobgr32(const uint8_t *src, uint8_t *dst, int src_size);
  56. void rgb15to24(const uint8_t *src, uint8_t *dst, int src_size);
  57. void rgb15tobgr16(const uint8_t *src, uint8_t *dst, int src_size);
  58. void rgb15tobgr15(const uint8_t *src, uint8_t *dst, int src_size);
  59. void rgb12tobgr12(const uint8_t *src, uint8_t *dst, int src_size);
  60. void rgb12to15(const uint8_t *src, uint8_t *dst, int src_size);
  61. void bgr8torgb8(const uint8_t *src, uint8_t *dst, int src_size);
  62. void shuffle_bytes_0321(const uint8_t *src, uint8_t *dst, int src_size);
  63. void shuffle_bytes_1230(const uint8_t *src, uint8_t *dst, int src_size);
  64. void shuffle_bytes_3012(const uint8_t *src, uint8_t *dst, int src_size);
  65. void shuffle_bytes_3210(const uint8_t *src, uint8_t *dst, int src_size);
  66. void rgb24toyv12_c(const uint8_t *src, uint8_t *ydst, uint8_t *udst,
  67. uint8_t *vdst, int width, int height, int lumStride,
  68. int chromStride, int srcStride);
  69. /**
  70. * Height should be a multiple of 2 and width should be a multiple of 16.
  71. * (If this is a problem for anyone then tell me, and I will fix it.)
  72. */
  73. extern void (*yv12toyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  74. int width, int height,
  75. int lumStride, int chromStride, int dstStride);
  76. /**
  77. * Width should be a multiple of 16.
  78. */
  79. extern void (*yuv422ptoyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  80. int width, int height,
  81. int lumStride, int chromStride, int dstStride);
  82. /**
  83. * Height should be a multiple of 2 and width should be a multiple of 16.
  84. * (If this is a problem for anyone then tell me, and I will fix it.)
  85. */
  86. extern void (*yuy2toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
  87. int width, int height,
  88. int lumStride, int chromStride, int srcStride);
  89. /**
  90. * Height should be a multiple of 2 and width should be a multiple of 16.
  91. * (If this is a problem for anyone then tell me, and I will fix it.)
  92. */
  93. extern void (*yv12touyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  94. int width, int height,
  95. int lumStride, int chromStride, int dstStride);
  96. /**
  97. * Width should be a multiple of 16.
  98. */
  99. extern void (*yuv422ptouyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  100. int width, int height,
  101. int lumStride, int chromStride, int dstStride);
  102. /**
  103. * Height should be a multiple of 2 and width should be a multiple of 2.
  104. * (If this is a problem for anyone then tell me, and I will fix it.)
  105. * Chrominance data is only taken from every second line, others are ignored.
  106. * FIXME: Write high quality version.
  107. */
  108. extern void (*rgb24toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
  109. int width, int height,
  110. int lumStride, int chromStride, int srcStride);
  111. extern void (*planar2x)(const uint8_t *src, uint8_t *dst, int width, int height,
  112. int srcStride, int dstStride);
  113. extern void (*interleaveBytes)(const uint8_t *src1, const uint8_t *src2, uint8_t *dst,
  114. int width, int height, int src1Stride,
  115. int src2Stride, int dstStride);
  116. extern void (*deinterleaveBytes)(const uint8_t *src, uint8_t *dst1, uint8_t *dst2,
  117. int width, int height, int srcStride,
  118. int dst1Stride, int dst2Stride);
  119. extern void (*vu9_to_vu12)(const uint8_t *src1, const uint8_t *src2,
  120. uint8_t *dst1, uint8_t *dst2,
  121. int width, int height,
  122. int srcStride1, int srcStride2,
  123. int dstStride1, int dstStride2);
  124. extern void (*yvu9_to_yuy2)(const uint8_t *src1, const uint8_t *src2, const uint8_t *src3,
  125. uint8_t *dst,
  126. int width, int height,
  127. int srcStride1, int srcStride2,
  128. int srcStride3, int dstStride);
  129. extern void (*uyvytoyuv420)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
  130. int width, int height,
  131. int lumStride, int chromStride, int srcStride);
  132. extern void (*uyvytoyuv422)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
  133. int width, int height,
  134. int lumStride, int chromStride, int srcStride);
  135. extern void (*yuyvtoyuv420)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
  136. int width, int height,
  137. int lumStride, int chromStride, int srcStride);
  138. extern void (*yuyvtoyuv422)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
  139. int width, int height,
  140. int lumStride, int chromStride, int srcStride);
  141. void ff_rgb2rgb_init(void);
  142. void ff_rgb2rgb_init_x86(void);
  143. #endif /* SWSCALE_RGB2RGB_H */