rgb2rgb.c 15 KB

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