rgb2rgb.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  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. * palette & YUV & runtime CPU stuff by Michael (michaelni@gmx.at)
  8. *
  9. * This file is part of FFmpeg.
  10. *
  11. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. */
  25. #include <inttypes.h>
  26. #include "config.h"
  27. #include "libavutil/x86_cpu.h"
  28. #include "libavutil/bswap.h"
  29. #include "rgb2rgb.h"
  30. #include "swscale.h"
  31. #include "swscale_internal.h"
  32. #define FAST_BGR2YV12 // use 7-bit instead of 15-bit coefficients
  33. void (*rgb24tobgr32)(const uint8_t *src, uint8_t *dst, long src_size);
  34. void (*rgb24tobgr16)(const uint8_t *src, uint8_t *dst, long src_size);
  35. void (*rgb24tobgr15)(const uint8_t *src, uint8_t *dst, long src_size);
  36. void (*rgb32tobgr24)(const uint8_t *src, uint8_t *dst, long src_size);
  37. void (*rgb32to16)(const uint8_t *src, uint8_t *dst, long src_size);
  38. void (*rgb32to15)(const uint8_t *src, uint8_t *dst, long src_size);
  39. void (*rgb15to16)(const uint8_t *src, uint8_t *dst, long src_size);
  40. void (*rgb15tobgr24)(const uint8_t *src, uint8_t *dst, long src_size);
  41. void (*rgb15to32)(const uint8_t *src, uint8_t *dst, long src_size);
  42. void (*rgb16to15)(const uint8_t *src, uint8_t *dst, long src_size);
  43. void (*rgb16tobgr24)(const uint8_t *src, uint8_t *dst, long src_size);
  44. void (*rgb16to32)(const uint8_t *src, uint8_t *dst, long src_size);
  45. void (*rgb24tobgr24)(const uint8_t *src, uint8_t *dst, long src_size);
  46. void (*rgb24to16)(const uint8_t *src, uint8_t *dst, long src_size);
  47. void (*rgb24to15)(const uint8_t *src, uint8_t *dst, long src_size);
  48. void (*shuffle_bytes_2103)(const uint8_t *src, uint8_t *dst, long src_size);
  49. void (*rgb32tobgr16)(const uint8_t *src, uint8_t *dst, long src_size);
  50. void (*rgb32tobgr15)(const uint8_t *src, uint8_t *dst, long src_size);
  51. void (*yv12toyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  52. long width, long height,
  53. long lumStride, long chromStride, long dstStride);
  54. void (*yv12touyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  55. long width, long height,
  56. long lumStride, long chromStride, long dstStride);
  57. void (*yuv422ptoyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  58. long width, long height,
  59. long lumStride, long chromStride, long dstStride);
  60. void (*yuv422ptouyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  61. long width, long height,
  62. long lumStride, long chromStride, long dstStride);
  63. void (*yuy2toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
  64. long width, long height,
  65. long lumStride, long chromStride, long srcStride);
  66. void (*rgb24toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
  67. long width, long height,
  68. long lumStride, long chromStride, long srcStride);
  69. void (*planar2x)(const uint8_t *src, uint8_t *dst, long width, long height,
  70. long srcStride, long dstStride);
  71. void (*interleaveBytes)(const uint8_t *src1, const uint8_t *src2, uint8_t *dst,
  72. long width, long height, long src1Stride,
  73. long src2Stride, long dstStride);
  74. void (*vu9_to_vu12)(const uint8_t *src1, const uint8_t *src2,
  75. uint8_t *dst1, uint8_t *dst2,
  76. long width, long height,
  77. long srcStride1, long srcStride2,
  78. long dstStride1, long dstStride2);
  79. void (*yvu9_to_yuy2)(const uint8_t *src1, const uint8_t *src2, const uint8_t *src3,
  80. uint8_t *dst,
  81. long width, long height,
  82. long srcStride1, long srcStride2,
  83. long srcStride3, long dstStride);
  84. void (*uyvytoyuv420)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
  85. long width, long height,
  86. long lumStride, long chromStride, long srcStride);
  87. void (*uyvytoyuv422)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
  88. long width, long height,
  89. long lumStride, long chromStride, long srcStride);
  90. void (*yuyvtoyuv420)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
  91. long width, long height,
  92. long lumStride, long chromStride, long srcStride);
  93. void (*yuyvtoyuv422)(uint8_t *ydst, uint8_t *udst, uint8_t *vdst, const uint8_t *src,
  94. long width, long height,
  95. long lumStride, long chromStride, long srcStride);
  96. #if ARCH_X86
  97. DECLARE_ASM_CONST(8, uint64_t, mmx_ff) = 0x00000000000000FFULL;
  98. DECLARE_ASM_CONST(8, uint64_t, mmx_null) = 0x0000000000000000ULL;
  99. DECLARE_ASM_CONST(8, uint64_t, mmx_one) = 0xFFFFFFFFFFFFFFFFULL;
  100. DECLARE_ASM_CONST(8, uint64_t, mask32b) = 0x000000FF000000FFULL;
  101. DECLARE_ASM_CONST(8, uint64_t, mask32g) = 0x0000FF000000FF00ULL;
  102. DECLARE_ASM_CONST(8, uint64_t, mask32r) = 0x00FF000000FF0000ULL;
  103. DECLARE_ASM_CONST(8, uint64_t, mask32a) = 0xFF000000FF000000ULL;
  104. DECLARE_ASM_CONST(8, uint64_t, mask32) = 0x00FFFFFF00FFFFFFULL;
  105. DECLARE_ASM_CONST(8, uint64_t, mask3216br) = 0x00F800F800F800F8ULL;
  106. DECLARE_ASM_CONST(8, uint64_t, mask3216g) = 0x0000FC000000FC00ULL;
  107. DECLARE_ASM_CONST(8, uint64_t, mask3215g) = 0x0000F8000000F800ULL;
  108. DECLARE_ASM_CONST(8, uint64_t, mul3216) = 0x2000000420000004ULL;
  109. DECLARE_ASM_CONST(8, uint64_t, mul3215) = 0x2000000820000008ULL;
  110. DECLARE_ASM_CONST(8, uint64_t, mask24b) = 0x00FF0000FF0000FFULL;
  111. DECLARE_ASM_CONST(8, uint64_t, mask24g) = 0xFF0000FF0000FF00ULL;
  112. DECLARE_ASM_CONST(8, uint64_t, mask24r) = 0x0000FF0000FF0000ULL;
  113. DECLARE_ASM_CONST(8, uint64_t, mask24l) = 0x0000000000FFFFFFULL;
  114. DECLARE_ASM_CONST(8, uint64_t, mask24h) = 0x0000FFFFFF000000ULL;
  115. DECLARE_ASM_CONST(8, uint64_t, mask24hh) = 0xffff000000000000ULL;
  116. DECLARE_ASM_CONST(8, uint64_t, mask24hhh) = 0xffffffff00000000ULL;
  117. DECLARE_ASM_CONST(8, uint64_t, mask24hhhh) = 0xffffffffffff0000ULL;
  118. DECLARE_ASM_CONST(8, uint64_t, mask15b) = 0x001F001F001F001FULL; /* 00000000 00011111 xxB */
  119. DECLARE_ASM_CONST(8, uint64_t, mask15rg) = 0x7FE07FE07FE07FE0ULL; /* 01111111 11100000 RGx */
  120. DECLARE_ASM_CONST(8, uint64_t, mask15s) = 0xFFE0FFE0FFE0FFE0ULL;
  121. DECLARE_ASM_CONST(8, uint64_t, mask15g) = 0x03E003E003E003E0ULL;
  122. DECLARE_ASM_CONST(8, uint64_t, mask15r) = 0x7C007C007C007C00ULL;
  123. #define mask16b mask15b
  124. DECLARE_ASM_CONST(8, uint64_t, mask16g) = 0x07E007E007E007E0ULL;
  125. DECLARE_ASM_CONST(8, uint64_t, mask16r) = 0xF800F800F800F800ULL;
  126. DECLARE_ASM_CONST(8, uint64_t, red_16mask) = 0x0000f8000000f800ULL;
  127. DECLARE_ASM_CONST(8, uint64_t, green_16mask) = 0x000007e0000007e0ULL;
  128. DECLARE_ASM_CONST(8, uint64_t, blue_16mask) = 0x0000001f0000001fULL;
  129. DECLARE_ASM_CONST(8, uint64_t, red_15mask) = 0x00007c0000007c00ULL;
  130. DECLARE_ASM_CONST(8, uint64_t, green_15mask) = 0x000003e0000003e0ULL;
  131. DECLARE_ASM_CONST(8, uint64_t, blue_15mask) = 0x0000001f0000001fULL;
  132. #endif /* ARCH_X86 */
  133. #define RGB2YUV_SHIFT 8
  134. #define BY ((int)( 0.098*(1<<RGB2YUV_SHIFT)+0.5))
  135. #define BV ((int)(-0.071*(1<<RGB2YUV_SHIFT)+0.5))
  136. #define BU ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5))
  137. #define GY ((int)( 0.504*(1<<RGB2YUV_SHIFT)+0.5))
  138. #define GV ((int)(-0.368*(1<<RGB2YUV_SHIFT)+0.5))
  139. #define GU ((int)(-0.291*(1<<RGB2YUV_SHIFT)+0.5))
  140. #define RY ((int)( 0.257*(1<<RGB2YUV_SHIFT)+0.5))
  141. #define RV ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5))
  142. #define RU ((int)(-0.148*(1<<RGB2YUV_SHIFT)+0.5))
  143. //Note: We have C, MMX, MMX2, 3DNOW versions, there is no 3DNOW + MMX2 one.
  144. //plain C versions
  145. #define COMPILE_TEMPLATE_MMX 0
  146. #define COMPILE_TEMPLATE_MMX2 0
  147. #define COMPILE_TEMPLATE_AMD3DNOW 0
  148. #define COMPILE_TEMPLATE_SSE2 0
  149. #define RENAME(a) a ## _C
  150. #include "rgb2rgb_template.c"
  151. #if ARCH_X86
  152. //MMX versions
  153. #undef RENAME
  154. #undef COMPILE_TEMPLATE_MMX
  155. #define COMPILE_TEMPLATE_MMX 1
  156. #define RENAME(a) a ## _MMX
  157. #include "rgb2rgb_template.c"
  158. //MMX2 versions
  159. #undef RENAME
  160. #undef COMPILE_TEMPLATE_MMX2
  161. #define COMPILE_TEMPLATE_MMX2 1
  162. #define RENAME(a) a ## _MMX2
  163. #include "rgb2rgb_template.c"
  164. //SSE2 versions
  165. #undef RENAME
  166. #undef COMPILE_TEMPLATE_SSE2
  167. #define COMPILE_TEMPLATE_SSE2 1
  168. #define RENAME(a) a ## _SSE2
  169. #include "rgb2rgb_template.c"
  170. //3DNOW versions
  171. #undef RENAME
  172. #undef COMPILE_TEMPLATE_MMX2
  173. #undef COMPILE_TEMPLATE_SSE2
  174. #undef COMPILE_TEMPLATE_AMD3DNOW
  175. #define COMPILE_TEMPLATE_MMX2 0
  176. #define COMPILE_TEMPLATE_SSE2 1
  177. #define COMPILE_TEMPLATE_AMD3DNOW 1
  178. #define RENAME(a) a ## _3DNOW
  179. #include "rgb2rgb_template.c"
  180. #endif //ARCH_X86 || ARCH_X86_64
  181. /*
  182. RGB15->RGB16 original by Strepto/Astral
  183. ported to gcc & bugfixed : A'rpi
  184. MMX2, 3DNOW optimization by Nick Kurshev
  185. 32-bit C version, and and&add trick by Michael Niedermayer
  186. */
  187. void sws_rgb2rgb_init(int flags)
  188. {
  189. #if HAVE_MMX2 || HAVE_AMD3DNOW || HAVE_MMX
  190. if (flags & SWS_CPU_CAPS_SSE2)
  191. rgb2rgb_init_SSE2();
  192. else if (flags & SWS_CPU_CAPS_MMX2)
  193. rgb2rgb_init_MMX2();
  194. else if (flags & SWS_CPU_CAPS_3DNOW)
  195. rgb2rgb_init_3DNOW();
  196. else if (flags & SWS_CPU_CAPS_MMX)
  197. rgb2rgb_init_MMX();
  198. else
  199. #endif /* HAVE_MMX2 || HAVE_AMD3DNOW || HAVE_MMX */
  200. rgb2rgb_init_C();
  201. }
  202. #if LIBSWSCALE_VERSION_MAJOR < 1
  203. void palette8topacked32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  204. {
  205. sws_convertPalette8ToPacked32(src, dst, num_pixels, palette);
  206. }
  207. void palette8topacked24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  208. {
  209. sws_convertPalette8ToPacked24(src, dst, num_pixels, palette);
  210. }
  211. /**
  212. * Palette is assumed to contain BGR16, see rgb32to16 to convert the palette.
  213. */
  214. void palette8torgb16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  215. {
  216. long i;
  217. for (i=0; i<num_pixels; i++)
  218. ((uint16_t *)dst)[i] = ((const uint16_t *)palette)[src[i]];
  219. }
  220. void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  221. {
  222. long i;
  223. for (i=0; i<num_pixels; i++)
  224. ((uint16_t *)dst)[i] = av_bswap16(((const uint16_t *)palette)[src[i]]);
  225. }
  226. #endif
  227. void rgb32to24(const uint8_t *src, uint8_t *dst, long src_size)
  228. {
  229. long i;
  230. long num_pixels = src_size >> 2;
  231. for (i=0; i<num_pixels; i++) {
  232. #if HAVE_BIGENDIAN
  233. /* RGB32 (= A,B,G,R) -> BGR24 (= B,G,R) */
  234. dst[3*i + 0] = src[4*i + 1];
  235. dst[3*i + 1] = src[4*i + 2];
  236. dst[3*i + 2] = src[4*i + 3];
  237. #else
  238. dst[3*i + 0] = src[4*i + 2];
  239. dst[3*i + 1] = src[4*i + 1];
  240. dst[3*i + 2] = src[4*i + 0];
  241. #endif
  242. }
  243. }
  244. void rgb24to32(const uint8_t *src, uint8_t *dst, long src_size)
  245. {
  246. long i;
  247. for (i=0; 3*i<src_size; i++) {
  248. #if HAVE_BIGENDIAN
  249. /* RGB24 (= R,G,B) -> BGR32 (= A,R,G,B) */
  250. dst[4*i + 0] = 255;
  251. dst[4*i + 1] = src[3*i + 0];
  252. dst[4*i + 2] = src[3*i + 1];
  253. dst[4*i + 3] = src[3*i + 2];
  254. #else
  255. dst[4*i + 0] = src[3*i + 2];
  256. dst[4*i + 1] = src[3*i + 1];
  257. dst[4*i + 2] = src[3*i + 0];
  258. dst[4*i + 3] = 255;
  259. #endif
  260. }
  261. }
  262. void rgb16tobgr32(const uint8_t *src, uint8_t *dst, long src_size)
  263. {
  264. const uint16_t *end;
  265. uint8_t *d = dst;
  266. const uint16_t *s = (const uint16_t *)src;
  267. end = s + src_size/2;
  268. while (s < end) {
  269. register uint16_t bgr;
  270. bgr = *s++;
  271. #if HAVE_BIGENDIAN
  272. *d++ = 255;
  273. *d++ = (bgr&0x1F)<<3;
  274. *d++ = (bgr&0x7E0)>>3;
  275. *d++ = (bgr&0xF800)>>8;
  276. #else
  277. *d++ = (bgr&0xF800)>>8;
  278. *d++ = (bgr&0x7E0)>>3;
  279. *d++ = (bgr&0x1F)<<3;
  280. *d++ = 255;
  281. #endif
  282. }
  283. }
  284. void rgb16to24(const uint8_t *src, uint8_t *dst, long src_size)
  285. {
  286. const uint16_t *end;
  287. uint8_t *d = dst;
  288. const uint16_t *s = (const uint16_t *)src;
  289. end = s + src_size/2;
  290. while (s < end) {
  291. register uint16_t bgr;
  292. bgr = *s++;
  293. *d++ = (bgr&0xF800)>>8;
  294. *d++ = (bgr&0x7E0)>>3;
  295. *d++ = (bgr&0x1F)<<3;
  296. }
  297. }
  298. void rgb16tobgr16(const uint8_t *src, uint8_t *dst, long src_size)
  299. {
  300. long i;
  301. long num_pixels = src_size >> 1;
  302. for (i=0; i<num_pixels; i++) {
  303. unsigned rgb = ((const uint16_t*)src)[i];
  304. ((uint16_t*)dst)[i] = (rgb>>11) | (rgb&0x7E0) | (rgb<<11);
  305. }
  306. }
  307. void rgb16tobgr15(const uint8_t *src, uint8_t *dst, long src_size)
  308. {
  309. long i;
  310. long num_pixels = src_size >> 1;
  311. for (i=0; i<num_pixels; i++) {
  312. unsigned rgb = ((const uint16_t*)src)[i];
  313. ((uint16_t*)dst)[i] = (rgb>>11) | ((rgb&0x7C0)>>1) | ((rgb&0x1F)<<10);
  314. }
  315. }
  316. void rgb15tobgr32(const uint8_t *src, uint8_t *dst, long src_size)
  317. {
  318. const uint16_t *end;
  319. uint8_t *d = dst;
  320. const uint16_t *s = (const uint16_t *)src;
  321. end = s + src_size/2;
  322. while (s < end) {
  323. register uint16_t bgr;
  324. bgr = *s++;
  325. #if HAVE_BIGENDIAN
  326. *d++ = 255;
  327. *d++ = (bgr&0x1F)<<3;
  328. *d++ = (bgr&0x3E0)>>2;
  329. *d++ = (bgr&0x7C00)>>7;
  330. #else
  331. *d++ = (bgr&0x7C00)>>7;
  332. *d++ = (bgr&0x3E0)>>2;
  333. *d++ = (bgr&0x1F)<<3;
  334. *d++ = 255;
  335. #endif
  336. }
  337. }
  338. void rgb15to24(const uint8_t *src, uint8_t *dst, long src_size)
  339. {
  340. const uint16_t *end;
  341. uint8_t *d = dst;
  342. const uint16_t *s = (const uint16_t *)src;
  343. end = s + src_size/2;
  344. while (s < end) {
  345. register uint16_t bgr;
  346. bgr = *s++;
  347. *d++ = (bgr&0x7C00)>>7;
  348. *d++ = (bgr&0x3E0)>>2;
  349. *d++ = (bgr&0x1F)<<3;
  350. }
  351. }
  352. void rgb15tobgr16(const uint8_t *src, uint8_t *dst, long src_size)
  353. {
  354. long i;
  355. long num_pixels = src_size >> 1;
  356. for (i=0; i<num_pixels; i++) {
  357. unsigned rgb = ((const uint16_t*)src)[i];
  358. ((uint16_t*)dst)[i] = ((rgb&0x7C00)>>10) | ((rgb&0x3E0)<<1) | (rgb<<11);
  359. }
  360. }
  361. void rgb15tobgr15(const uint8_t *src, uint8_t *dst, long src_size)
  362. {
  363. long i;
  364. long num_pixels = src_size >> 1;
  365. for (i=0; i<num_pixels; i++) {
  366. unsigned br;
  367. unsigned rgb = ((const uint16_t*)src)[i];
  368. br = rgb&0x7c1F;
  369. ((uint16_t*)dst)[i] = (br>>10) | (rgb&0x3E0) | (br<<10);
  370. }
  371. }
  372. void bgr8torgb8(const uint8_t *src, uint8_t *dst, long src_size)
  373. {
  374. long i;
  375. long num_pixels = src_size;
  376. for (i=0; i<num_pixels; i++) {
  377. unsigned b,g,r;
  378. register uint8_t rgb;
  379. rgb = src[i];
  380. r = (rgb&0x07);
  381. g = (rgb&0x38)>>3;
  382. b = (rgb&0xC0)>>6;
  383. dst[i] = ((b<<1)&0x07) | ((g&0x07)<<3) | ((r&0x03)<<6);
  384. }
  385. }
  386. #define DEFINE_SHUFFLE_BYTES(a, b, c, d) \
  387. void shuffle_bytes_##a##b##c##d(const uint8_t *src, uint8_t *dst, long src_size) \
  388. { \
  389. long i; \
  390. \
  391. for (i = 0; i < src_size; i+=4) { \
  392. dst[i + 0] = src[i + a]; \
  393. dst[i + 1] = src[i + b]; \
  394. dst[i + 2] = src[i + c]; \
  395. dst[i + 3] = src[i + d]; \
  396. } \
  397. }
  398. DEFINE_SHUFFLE_BYTES(0, 3, 2, 1);
  399. DEFINE_SHUFFLE_BYTES(1, 2, 3, 0);
  400. DEFINE_SHUFFLE_BYTES(3, 0, 1, 2);
  401. DEFINE_SHUFFLE_BYTES(3, 2, 1, 0);