rgb2rgb.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  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 (*rgb32tobgr32)(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_null) = 0x0000000000000000ULL;
  98. DECLARE_ASM_CONST(8, uint64_t, mmx_one) = 0xFFFFFFFFFFFFFFFFULL;
  99. DECLARE_ASM_CONST(8, uint64_t, mask32b) = 0x000000FF000000FFULL;
  100. DECLARE_ASM_CONST(8, uint64_t, mask32g) = 0x0000FF000000FF00ULL;
  101. DECLARE_ASM_CONST(8, uint64_t, mask32r) = 0x00FF000000FF0000ULL;
  102. DECLARE_ASM_CONST(8, uint64_t, mask32a) = 0xFF000000FF000000ULL;
  103. DECLARE_ASM_CONST(8, uint64_t, mask32) = 0x00FFFFFF00FFFFFFULL;
  104. DECLARE_ASM_CONST(8, uint64_t, mask3216br) = 0x00F800F800F800F8ULL;
  105. DECLARE_ASM_CONST(8, uint64_t, mask3216g) = 0x0000FC000000FC00ULL;
  106. DECLARE_ASM_CONST(8, uint64_t, mask3215g) = 0x0000F8000000F800ULL;
  107. DECLARE_ASM_CONST(8, uint64_t, mul3216) = 0x2000000420000004ULL;
  108. DECLARE_ASM_CONST(8, uint64_t, mul3215) = 0x2000000820000008ULL;
  109. DECLARE_ASM_CONST(8, uint64_t, mask24b) = 0x00FF0000FF0000FFULL;
  110. DECLARE_ASM_CONST(8, uint64_t, mask24g) = 0xFF0000FF0000FF00ULL;
  111. DECLARE_ASM_CONST(8, uint64_t, mask24r) = 0x0000FF0000FF0000ULL;
  112. DECLARE_ASM_CONST(8, uint64_t, mask24l) = 0x0000000000FFFFFFULL;
  113. DECLARE_ASM_CONST(8, uint64_t, mask24h) = 0x0000FFFFFF000000ULL;
  114. DECLARE_ASM_CONST(8, uint64_t, mask24hh) = 0xffff000000000000ULL;
  115. DECLARE_ASM_CONST(8, uint64_t, mask24hhh) = 0xffffffff00000000ULL;
  116. DECLARE_ASM_CONST(8, uint64_t, mask24hhhh) = 0xffffffffffff0000ULL;
  117. DECLARE_ASM_CONST(8, uint64_t, mask15b) = 0x001F001F001F001FULL; /* 00000000 00011111 xxB */
  118. DECLARE_ASM_CONST(8, uint64_t, mask15rg) = 0x7FE07FE07FE07FE0ULL; /* 01111111 11100000 RGx */
  119. DECLARE_ASM_CONST(8, uint64_t, mask15s) = 0xFFE0FFE0FFE0FFE0ULL;
  120. DECLARE_ASM_CONST(8, uint64_t, mask15g) = 0x03E003E003E003E0ULL;
  121. DECLARE_ASM_CONST(8, uint64_t, mask15r) = 0x7C007C007C007C00ULL;
  122. #define mask16b mask15b
  123. DECLARE_ASM_CONST(8, uint64_t, mask16g) = 0x07E007E007E007E0ULL;
  124. DECLARE_ASM_CONST(8, uint64_t, mask16r) = 0xF800F800F800F800ULL;
  125. DECLARE_ASM_CONST(8, uint64_t, red_16mask) = 0x0000f8000000f800ULL;
  126. DECLARE_ASM_CONST(8, uint64_t, green_16mask) = 0x000007e0000007e0ULL;
  127. DECLARE_ASM_CONST(8, uint64_t, blue_16mask) = 0x0000001f0000001fULL;
  128. DECLARE_ASM_CONST(8, uint64_t, red_15mask) = 0x00007c0000007c00ULL;
  129. DECLARE_ASM_CONST(8, uint64_t, green_15mask) = 0x000003e0000003e0ULL;
  130. DECLARE_ASM_CONST(8, uint64_t, blue_15mask) = 0x0000001f0000001fULL;
  131. #endif /* ARCH_X86 */
  132. #define RGB2YUV_SHIFT 8
  133. #define BY ((int)( 0.098*(1<<RGB2YUV_SHIFT)+0.5))
  134. #define BV ((int)(-0.071*(1<<RGB2YUV_SHIFT)+0.5))
  135. #define BU ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5))
  136. #define GY ((int)( 0.504*(1<<RGB2YUV_SHIFT)+0.5))
  137. #define GV ((int)(-0.368*(1<<RGB2YUV_SHIFT)+0.5))
  138. #define GU ((int)(-0.291*(1<<RGB2YUV_SHIFT)+0.5))
  139. #define RY ((int)( 0.257*(1<<RGB2YUV_SHIFT)+0.5))
  140. #define RV ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5))
  141. #define RU ((int)(-0.148*(1<<RGB2YUV_SHIFT)+0.5))
  142. //Note: We have C, MMX, MMX2, 3DNOW versions, there is no 3DNOW + MMX2 one.
  143. //plain C versions
  144. #undef HAVE_MMX
  145. #undef HAVE_MMX2
  146. #undef HAVE_AMD3DNOW
  147. #undef HAVE_SSE2
  148. #define HAVE_MMX 0
  149. #define HAVE_MMX2 0
  150. #define HAVE_AMD3DNOW 0
  151. #define HAVE_SSE2 0
  152. #define RENAME(a) a ## _C
  153. #include "rgb2rgb_template.c"
  154. #if ARCH_X86
  155. //MMX versions
  156. #undef RENAME
  157. #undef HAVE_MMX
  158. #define HAVE_MMX 1
  159. #define RENAME(a) a ## _MMX
  160. #include "rgb2rgb_template.c"
  161. //MMX2 versions
  162. #undef RENAME
  163. #undef HAVE_MMX2
  164. #define HAVE_MMX2 1
  165. #define RENAME(a) a ## _MMX2
  166. #include "rgb2rgb_template.c"
  167. //3DNOW versions
  168. #undef RENAME
  169. #undef HAVE_MMX2
  170. #undef HAVE_AMD3DNOW
  171. #define HAVE_MMX2 0
  172. #define HAVE_AMD3DNOW 1
  173. #define RENAME(a) a ## _3DNOW
  174. #include "rgb2rgb_template.c"
  175. #endif //ARCH_X86 || ARCH_X86_64
  176. /*
  177. RGB15->RGB16 original by Strepto/Astral
  178. ported to gcc & bugfixed : A'rpi
  179. MMX2, 3DNOW optimization by Nick Kurshev
  180. 32-bit C version, and and&add trick by Michael Niedermayer
  181. */
  182. void sws_rgb2rgb_init(int flags)
  183. {
  184. #if HAVE_MMX2 || HAVE_AMD3DNOW || HAVE_MMX
  185. if (flags & SWS_CPU_CAPS_MMX2)
  186. rgb2rgb_init_MMX2();
  187. else if (flags & SWS_CPU_CAPS_3DNOW)
  188. rgb2rgb_init_3DNOW();
  189. else if (flags & SWS_CPU_CAPS_MMX)
  190. rgb2rgb_init_MMX();
  191. else
  192. #endif /* HAVE_MMX2 || HAVE_AMD3DNOW || HAVE_MMX */
  193. rgb2rgb_init_C();
  194. }
  195. #if LIBSWSCALE_VERSION_MAJOR < 1
  196. void palette8topacked32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  197. {
  198. sws_convertPalette8ToPacked32(src, dst, num_pixels, palette);
  199. }
  200. void palette8topacked24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  201. {
  202. sws_convertPalette8ToPacked24(src, dst, num_pixels, palette);
  203. }
  204. /**
  205. * Palette is assumed to contain BGR16, see rgb32to16 to convert the palette.
  206. */
  207. void palette8torgb16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  208. {
  209. long i;
  210. for (i=0; i<num_pixels; i++)
  211. ((uint16_t *)dst)[i] = ((const uint16_t *)palette)[src[i]];
  212. }
  213. void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  214. {
  215. long i;
  216. for (i=0; i<num_pixels; i++)
  217. ((uint16_t *)dst)[i] = bswap_16(((const uint16_t *)palette)[src[i]]);
  218. }
  219. #endif
  220. void rgb32to24(const uint8_t *src, uint8_t *dst, long src_size)
  221. {
  222. long i;
  223. long num_pixels = src_size >> 2;
  224. for (i=0; i<num_pixels; i++) {
  225. #if HAVE_BIGENDIAN
  226. /* RGB32 (= A,B,G,R) -> BGR24 (= B,G,R) */
  227. dst[3*i + 0] = src[4*i + 1];
  228. dst[3*i + 1] = src[4*i + 2];
  229. dst[3*i + 2] = src[4*i + 3];
  230. #else
  231. dst[3*i + 0] = src[4*i + 2];
  232. dst[3*i + 1] = src[4*i + 1];
  233. dst[3*i + 2] = src[4*i + 0];
  234. #endif
  235. }
  236. }
  237. void rgb24to32(const uint8_t *src, uint8_t *dst, long src_size)
  238. {
  239. long i;
  240. for (i=0; 3*i<src_size; i++) {
  241. #if HAVE_BIGENDIAN
  242. /* RGB24 (= R,G,B) -> BGR32 (= A,R,G,B) */
  243. dst[4*i + 0] = 255;
  244. dst[4*i + 1] = src[3*i + 0];
  245. dst[4*i + 2] = src[3*i + 1];
  246. dst[4*i + 3] = src[3*i + 2];
  247. #else
  248. dst[4*i + 0] = src[3*i + 2];
  249. dst[4*i + 1] = src[3*i + 1];
  250. dst[4*i + 2] = src[3*i + 0];
  251. dst[4*i + 3] = 255;
  252. #endif
  253. }
  254. }
  255. void rgb16tobgr32(const uint8_t *src, uint8_t *dst, long src_size)
  256. {
  257. const uint16_t *end;
  258. uint8_t *d = dst;
  259. const uint16_t *s = (const uint16_t *)src;
  260. end = s + src_size/2;
  261. while (s < end) {
  262. register uint16_t bgr;
  263. bgr = *s++;
  264. #if HAVE_BIGENDIAN
  265. *d++ = 255;
  266. *d++ = (bgr&0x1F)<<3;
  267. *d++ = (bgr&0x7E0)>>3;
  268. *d++ = (bgr&0xF800)>>8;
  269. #else
  270. *d++ = (bgr&0xF800)>>8;
  271. *d++ = (bgr&0x7E0)>>3;
  272. *d++ = (bgr&0x1F)<<3;
  273. *d++ = 255;
  274. #endif
  275. }
  276. }
  277. void rgb16to24(const uint8_t *src, uint8_t *dst, long src_size)
  278. {
  279. const uint16_t *end;
  280. uint8_t *d = dst;
  281. const uint16_t *s = (const uint16_t *)src;
  282. end = s + src_size/2;
  283. while (s < end) {
  284. register uint16_t bgr;
  285. bgr = *s++;
  286. *d++ = (bgr&0xF800)>>8;
  287. *d++ = (bgr&0x7E0)>>3;
  288. *d++ = (bgr&0x1F)<<3;
  289. }
  290. }
  291. void rgb16tobgr16(const uint8_t *src, uint8_t *dst, long src_size)
  292. {
  293. long i;
  294. long num_pixels = src_size >> 1;
  295. for (i=0; i<num_pixels; i++) {
  296. unsigned rgb = ((const uint16_t*)src)[i];
  297. ((uint16_t*)dst)[i] = (rgb>>11) | (rgb&0x7E0) | (rgb<<11);
  298. }
  299. }
  300. void rgb16tobgr15(const uint8_t *src, uint8_t *dst, long src_size)
  301. {
  302. long i;
  303. long num_pixels = src_size >> 1;
  304. for (i=0; i<num_pixels; i++) {
  305. unsigned rgb = ((const uint16_t*)src)[i];
  306. ((uint16_t*)dst)[i] = (rgb>>11) | ((rgb&0x7C0)>>1) | ((rgb&0x1F)<<10);
  307. }
  308. }
  309. void rgb15tobgr32(const uint8_t *src, uint8_t *dst, long src_size)
  310. {
  311. const uint16_t *end;
  312. uint8_t *d = dst;
  313. const uint16_t *s = (const uint16_t *)src;
  314. end = s + src_size/2;
  315. while (s < end) {
  316. register uint16_t bgr;
  317. bgr = *s++;
  318. #if HAVE_BIGENDIAN
  319. *d++ = 255;
  320. *d++ = (bgr&0x1F)<<3;
  321. *d++ = (bgr&0x3E0)>>2;
  322. *d++ = (bgr&0x7C00)>>7;
  323. #else
  324. *d++ = (bgr&0x7C00)>>7;
  325. *d++ = (bgr&0x3E0)>>2;
  326. *d++ = (bgr&0x1F)<<3;
  327. *d++ = 255;
  328. #endif
  329. }
  330. }
  331. void rgb15to24(const uint8_t *src, uint8_t *dst, long src_size)
  332. {
  333. const uint16_t *end;
  334. uint8_t *d = dst;
  335. const uint16_t *s = (const uint16_t *)src;
  336. end = s + src_size/2;
  337. while (s < end) {
  338. register uint16_t bgr;
  339. bgr = *s++;
  340. *d++ = (bgr&0x7C00)>>7;
  341. *d++ = (bgr&0x3E0)>>2;
  342. *d++ = (bgr&0x1F)<<3;
  343. }
  344. }
  345. void rgb15tobgr16(const uint8_t *src, uint8_t *dst, long src_size)
  346. {
  347. long i;
  348. long num_pixels = src_size >> 1;
  349. for (i=0; i<num_pixels; i++) {
  350. unsigned rgb = ((const uint16_t*)src)[i];
  351. ((uint16_t*)dst)[i] = ((rgb&0x7C00)>>10) | ((rgb&0x3E0)<<1) | (rgb<<11);
  352. }
  353. }
  354. void rgb15tobgr15(const uint8_t *src, uint8_t *dst, long src_size)
  355. {
  356. long i;
  357. long num_pixels = src_size >> 1;
  358. for (i=0; i<num_pixels; i++) {
  359. unsigned br;
  360. unsigned rgb = ((const uint16_t*)src)[i];
  361. br = rgb&0x7c1F;
  362. ((uint16_t*)dst)[i] = (br>>10) | (rgb&0x3E0) | (br<<10);
  363. }
  364. }
  365. void bgr8torgb8(const uint8_t *src, uint8_t *dst, long src_size)
  366. {
  367. long i;
  368. long num_pixels = src_size;
  369. for (i=0; i<num_pixels; i++) {
  370. unsigned b,g,r;
  371. register uint8_t rgb;
  372. rgb = src[i];
  373. r = (rgb&0x07);
  374. g = (rgb&0x38)>>3;
  375. b = (rgb&0xC0)>>6;
  376. dst[i] = ((b<<1)&0x07) | ((g&0x07)<<3) | ((r&0x03)<<6);
  377. }
  378. }
  379. #define DEFINE_SHUFFLE_BYTES(a, b, c, d) \
  380. void shuffle_bytes_##a##b##c##d(const uint8_t *src, uint8_t *dst, long src_size) \
  381. { \
  382. long i; \
  383. \
  384. for (i = 0; i < src_size; i+=4) { \
  385. dst[i + 0] = src[i + a]; \
  386. dst[i + 1] = src[i + b]; \
  387. dst[i + 2] = src[i + c]; \
  388. dst[i + 3] = src[i + d]; \
  389. } \
  390. }
  391. DEFINE_SHUFFLE_BYTES(0, 3, 2, 1);
  392. DEFINE_SHUFFLE_BYTES(1, 2, 3, 0);
  393. DEFINE_SHUFFLE_BYTES(2, 1, 0, 3);
  394. DEFINE_SHUFFLE_BYTES(3, 0, 1, 2);
  395. DEFINE_SHUFFLE_BYTES(3, 2, 1, 0);