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.

551 lines
19KB

  1. /*
  2. * rgb2rgb.c, Software RGB to RGB convertor
  3. * pluralize by Software PAL8 to RGB convertor
  4. * Software YUV to YUV convertor
  5. * Software YUV to RGB convertor
  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 St, 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 too
  27. */
  28. #include <inttypes.h>
  29. #include "config.h"
  30. #include "rgb2rgb.h"
  31. #include "swscale.h"
  32. #include "swscale_internal.h"
  33. #include "x86_cpu.h"
  34. #include "bswap.h"
  35. #ifdef USE_FASTMEMCPY
  36. #include "libvo/fastmemcpy.h"
  37. #endif
  38. #define FAST_BGR2YV12 // use 7 bit coeffs instead of 15bit
  39. void (*rgb24to32)(const uint8_t *src,uint8_t *dst,long src_size);
  40. void (*rgb24to16)(const uint8_t *src,uint8_t *dst,long src_size);
  41. void (*rgb24to15)(const uint8_t *src,uint8_t *dst,long src_size);
  42. void (*rgb32to24)(const uint8_t *src,uint8_t *dst,long src_size);
  43. void (*rgb32to16)(const uint8_t *src,uint8_t *dst,long src_size);
  44. void (*rgb32to15)(const uint8_t *src,uint8_t *dst,long src_size);
  45. void (*rgb15to16)(const uint8_t *src,uint8_t *dst,long src_size);
  46. void (*rgb15to24)(const uint8_t *src,uint8_t *dst,long src_size);
  47. void (*rgb15to32)(const uint8_t *src,uint8_t *dst,long src_size);
  48. void (*rgb16to15)(const uint8_t *src,uint8_t *dst,long src_size);
  49. void (*rgb16to24)(const uint8_t *src,uint8_t *dst,long src_size);
  50. void (*rgb16to32)(const uint8_t *src,uint8_t *dst,long src_size);
  51. //void (*rgb24tobgr32)(const uint8_t *src, uint8_t *dst, long src_size);
  52. void (*rgb24tobgr24)(const uint8_t *src, uint8_t *dst, long src_size);
  53. void (*rgb24tobgr16)(const uint8_t *src, uint8_t *dst, long src_size);
  54. void (*rgb24tobgr15)(const uint8_t *src, uint8_t *dst, long src_size);
  55. void (*rgb32tobgr32)(const uint8_t *src, uint8_t *dst, long src_size);
  56. //void (*rgb32tobgr24)(const uint8_t *src, uint8_t *dst, long src_size);
  57. void (*rgb32tobgr16)(const uint8_t *src, uint8_t *dst, long src_size);
  58. void (*rgb32tobgr15)(const uint8_t *src, uint8_t *dst, long src_size);
  59. void (*yv12toyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  60. long width, long height,
  61. long lumStride, long chromStride, long dstStride);
  62. void (*yv12touyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  63. long width, long height,
  64. long lumStride, long chromStride, long dstStride);
  65. void (*yuv422ptoyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  66. long width, long height,
  67. long lumStride, long chromStride, long dstStride);
  68. void (*yuy2toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
  69. long width, long height,
  70. long lumStride, long chromStride, long srcStride);
  71. void (*rgb24toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
  72. long width, long height,
  73. long lumStride, long chromStride, long srcStride);
  74. void (*planar2x)(const uint8_t *src, uint8_t *dst, long width, long height,
  75. long srcStride, long dstStride);
  76. void (*interleaveBytes)(uint8_t *src1, uint8_t *src2, uint8_t *dst,
  77. long width, long height, long src1Stride,
  78. long src2Stride, long dstStride);
  79. void (*vu9_to_vu12)(const uint8_t *src1, const uint8_t *src2,
  80. uint8_t *dst1, uint8_t *dst2,
  81. long width, long height,
  82. long srcStride1, long srcStride2,
  83. long dstStride1, long dstStride2);
  84. void (*yvu9_to_yuy2)(const uint8_t *src1, const uint8_t *src2, const uint8_t *src3,
  85. uint8_t *dst,
  86. long width, long height,
  87. long srcStride1, long srcStride2,
  88. long srcStride3, long dstStride);
  89. #if defined(ARCH_X86) && defined(CONFIG_GPL)
  90. static const uint64_t mmx_null __attribute__((aligned(8))) = 0x0000000000000000ULL;
  91. static const uint64_t mmx_one __attribute__((aligned(8))) = 0xFFFFFFFFFFFFFFFFULL;
  92. static const uint64_t mask32b attribute_used __attribute__((aligned(8))) = 0x000000FF000000FFULL;
  93. static const uint64_t mask32g attribute_used __attribute__((aligned(8))) = 0x0000FF000000FF00ULL;
  94. static const uint64_t mask32r attribute_used __attribute__((aligned(8))) = 0x00FF000000FF0000ULL;
  95. static const uint64_t mask32 __attribute__((aligned(8))) = 0x00FFFFFF00FFFFFFULL;
  96. static const uint64_t mask3216br __attribute__((aligned(8))) = 0x00F800F800F800F8ULL;
  97. static const uint64_t mask3216g __attribute__((aligned(8))) = 0x0000FC000000FC00ULL;
  98. static const uint64_t mask3215g __attribute__((aligned(8))) = 0x0000F8000000F800ULL;
  99. static const uint64_t mul3216 __attribute__((aligned(8))) = 0x2000000420000004ULL;
  100. static const uint64_t mul3215 __attribute__((aligned(8))) = 0x2000000820000008ULL;
  101. static const uint64_t mask24b attribute_used __attribute__((aligned(8))) = 0x00FF0000FF0000FFULL;
  102. static const uint64_t mask24g attribute_used __attribute__((aligned(8))) = 0xFF0000FF0000FF00ULL;
  103. static const uint64_t mask24r attribute_used __attribute__((aligned(8))) = 0x0000FF0000FF0000ULL;
  104. static const uint64_t mask24l __attribute__((aligned(8))) = 0x0000000000FFFFFFULL;
  105. static const uint64_t mask24h __attribute__((aligned(8))) = 0x0000FFFFFF000000ULL;
  106. static const uint64_t mask24hh __attribute__((aligned(8))) = 0xffff000000000000ULL;
  107. static const uint64_t mask24hhh __attribute__((aligned(8))) = 0xffffffff00000000ULL;
  108. static const uint64_t mask24hhhh __attribute__((aligned(8))) = 0xffffffffffff0000ULL;
  109. static const uint64_t mask15b __attribute__((aligned(8))) = 0x001F001F001F001FULL; /* 00000000 00011111 xxB */
  110. static const uint64_t mask15rg __attribute__((aligned(8))) = 0x7FE07FE07FE07FE0ULL; /* 01111111 11100000 RGx */
  111. static const uint64_t mask15s __attribute__((aligned(8))) = 0xFFE0FFE0FFE0FFE0ULL;
  112. static const uint64_t mask15g __attribute__((aligned(8))) = 0x03E003E003E003E0ULL;
  113. static const uint64_t mask15r __attribute__((aligned(8))) = 0x7C007C007C007C00ULL;
  114. #define mask16b mask15b
  115. static const uint64_t mask16g __attribute__((aligned(8))) = 0x07E007E007E007E0ULL;
  116. static const uint64_t mask16r __attribute__((aligned(8))) = 0xF800F800F800F800ULL;
  117. static const uint64_t red_16mask __attribute__((aligned(8))) = 0x0000f8000000f800ULL;
  118. static const uint64_t green_16mask __attribute__((aligned(8))) = 0x000007e0000007e0ULL;
  119. static const uint64_t blue_16mask __attribute__((aligned(8))) = 0x0000001f0000001fULL;
  120. static const uint64_t red_15mask __attribute__((aligned(8))) = 0x00007c0000007c00ULL;
  121. static const uint64_t green_15mask __attribute__((aligned(8))) = 0x000003e0000003e0ULL;
  122. static const uint64_t blue_15mask __attribute__((aligned(8))) = 0x0000001f0000001fULL;
  123. #ifdef FAST_BGR2YV12
  124. static const uint64_t bgr2YCoeff attribute_used __attribute__((aligned(8))) = 0x000000210041000DULL;
  125. static const uint64_t bgr2UCoeff attribute_used __attribute__((aligned(8))) = 0x0000FFEEFFDC0038ULL;
  126. static const uint64_t bgr2VCoeff attribute_used __attribute__((aligned(8))) = 0x00000038FFD2FFF8ULL;
  127. #else
  128. static const uint64_t bgr2YCoeff attribute_used __attribute__((aligned(8))) = 0x000020E540830C8BULL;
  129. static const uint64_t bgr2UCoeff attribute_used __attribute__((aligned(8))) = 0x0000ED0FDAC23831ULL;
  130. static const uint64_t bgr2VCoeff attribute_used __attribute__((aligned(8))) = 0x00003831D0E6F6EAULL;
  131. #endif
  132. static const uint64_t bgr2YOffset attribute_used __attribute__((aligned(8))) = 0x1010101010101010ULL;
  133. static const uint64_t bgr2UVOffset attribute_used __attribute__((aligned(8))) = 0x8080808080808080ULL;
  134. static const uint64_t w1111 attribute_used __attribute__((aligned(8))) = 0x0001000100010001ULL;
  135. #if 0
  136. static volatile uint64_t __attribute__((aligned(8))) b5Dither;
  137. static volatile uint64_t __attribute__((aligned(8))) g5Dither;
  138. static volatile uint64_t __attribute__((aligned(8))) g6Dither;
  139. static volatile uint64_t __attribute__((aligned(8))) r5Dither;
  140. static uint64_t __attribute__((aligned(8))) dither4[2]={
  141. 0x0103010301030103LL,
  142. 0x0200020002000200LL,};
  143. static uint64_t __attribute__((aligned(8))) dither8[2]={
  144. 0x0602060206020602LL,
  145. 0x0004000400040004LL,};
  146. #endif
  147. #endif /* defined(ARCH_X86) */
  148. #define RGB2YUV_SHIFT 8
  149. #define BY ((int)( 0.098*(1<<RGB2YUV_SHIFT)+0.5))
  150. #define BV ((int)(-0.071*(1<<RGB2YUV_SHIFT)+0.5))
  151. #define BU ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5))
  152. #define GY ((int)( 0.504*(1<<RGB2YUV_SHIFT)+0.5))
  153. #define GV ((int)(-0.368*(1<<RGB2YUV_SHIFT)+0.5))
  154. #define GU ((int)(-0.291*(1<<RGB2YUV_SHIFT)+0.5))
  155. #define RY ((int)( 0.257*(1<<RGB2YUV_SHIFT)+0.5))
  156. #define RV ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5))
  157. #define RU ((int)(-0.148*(1<<RGB2YUV_SHIFT)+0.5))
  158. //Note: we have C, MMX, MMX2, 3DNOW version therse no 3DNOW+MMX2 one
  159. //Plain C versions
  160. #undef HAVE_MMX
  161. #undef HAVE_MMX2
  162. #undef HAVE_3DNOW
  163. #undef HAVE_SSE2
  164. #define RENAME(a) a ## _C
  165. #include "rgb2rgb_template.c"
  166. #if defined(ARCH_X86) && defined(CONFIG_GPL)
  167. //MMX versions
  168. #undef RENAME
  169. #define HAVE_MMX
  170. #undef HAVE_MMX2
  171. #undef HAVE_3DNOW
  172. #undef HAVE_SSE2
  173. #define RENAME(a) a ## _MMX
  174. #include "rgb2rgb_template.c"
  175. //MMX2 versions
  176. #undef RENAME
  177. #define HAVE_MMX
  178. #define HAVE_MMX2
  179. #undef HAVE_3DNOW
  180. #undef HAVE_SSE2
  181. #define RENAME(a) a ## _MMX2
  182. #include "rgb2rgb_template.c"
  183. //3DNOW versions
  184. #undef RENAME
  185. #define HAVE_MMX
  186. #undef HAVE_MMX2
  187. #define HAVE_3DNOW
  188. #undef HAVE_SSE2
  189. #define RENAME(a) a ## _3DNOW
  190. #include "rgb2rgb_template.c"
  191. #endif //ARCH_X86 || ARCH_X86_64
  192. /*
  193. rgb15->rgb16 Original by Strepto/Astral
  194. ported to gcc & bugfixed : A'rpi
  195. MMX2, 3DNOW optimization by Nick Kurshev
  196. 32bit c version, and and&add trick by Michael Niedermayer
  197. */
  198. void sws_rgb2rgb_init(int flags){
  199. #if (defined(HAVE_MMX2) || defined(HAVE_3DNOW) || defined(HAVE_MMX)) && defined(CONFIG_GPL)
  200. if (flags & SWS_CPU_CAPS_MMX2)
  201. rgb2rgb_init_MMX2();
  202. else if (flags & SWS_CPU_CAPS_3DNOW)
  203. rgb2rgb_init_3DNOW();
  204. else if (flags & SWS_CPU_CAPS_MMX)
  205. rgb2rgb_init_MMX();
  206. else
  207. #endif /* defined(HAVE_MMX2) || defined(HAVE_3DNOW) || defined(HAVE_MMX) */
  208. rgb2rgb_init_C();
  209. }
  210. /**
  211. * Palette is assumed to contain BGR32.
  212. */
  213. void palette8torgb32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  214. {
  215. long i;
  216. /*
  217. for (i=0; i<num_pixels; i++)
  218. ((unsigned *)dst)[i] = ((unsigned *)palette)[ src[i] ];
  219. */
  220. for (i=0; i<num_pixels; i++)
  221. {
  222. #ifdef WORDS_BIGENDIAN
  223. dst[3]= palette[ src[i]*4+2 ];
  224. dst[2]= palette[ src[i]*4+1 ];
  225. dst[1]= palette[ src[i]*4+0 ];
  226. #else
  227. //FIXME slow?
  228. dst[0]= palette[ src[i]*4+2 ];
  229. dst[1]= palette[ src[i]*4+1 ];
  230. dst[2]= palette[ src[i]*4+0 ];
  231. //dst[3]= 0; /* do we need this cleansing? */
  232. #endif
  233. dst+= 4;
  234. }
  235. }
  236. void palette8tobgr32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  237. {
  238. long i;
  239. for (i=0; i<num_pixels; i++)
  240. {
  241. #ifdef WORDS_BIGENDIAN
  242. dst[3]= palette[ src[i]*4+0 ];
  243. dst[2]= palette[ src[i]*4+1 ];
  244. dst[1]= palette[ src[i]*4+2 ];
  245. #else
  246. //FIXME slow?
  247. dst[0]= palette[ src[i]*4+0 ];
  248. dst[1]= palette[ src[i]*4+1 ];
  249. dst[2]= palette[ src[i]*4+2 ];
  250. //dst[3]= 0; /* do we need this cleansing? */
  251. #endif
  252. dst+= 4;
  253. }
  254. }
  255. /**
  256. * Palette is assumed to contain BGR32.
  257. */
  258. void palette8torgb24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  259. {
  260. long i;
  261. /*
  262. writes 1 byte o much and might cause alignment issues on some architectures?
  263. for (i=0; i<num_pixels; i++)
  264. ((unsigned *)(&dst[i*3])) = ((unsigned *)palette)[ src[i] ];
  265. */
  266. for (i=0; i<num_pixels; i++)
  267. {
  268. //FIXME slow?
  269. dst[0]= palette[ src[i]*4+2 ];
  270. dst[1]= palette[ src[i]*4+1 ];
  271. dst[2]= palette[ src[i]*4+0 ];
  272. dst+= 3;
  273. }
  274. }
  275. void palette8tobgr24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  276. {
  277. long i;
  278. /*
  279. writes 1 byte o much and might cause alignment issues on some architectures?
  280. for (i=0; i<num_pixels; i++)
  281. ((unsigned *)(&dst[i*3])) = ((unsigned *)palette)[ src[i] ];
  282. */
  283. for (i=0; i<num_pixels; i++)
  284. {
  285. //FIXME slow?
  286. dst[0]= palette[ src[i]*4+0 ];
  287. dst[1]= palette[ src[i]*4+1 ];
  288. dst[2]= palette[ src[i]*4+2 ];
  289. dst+= 3;
  290. }
  291. }
  292. /**
  293. * Palette is assumed to contain bgr16, see rgb32to16 to convert the palette
  294. */
  295. void palette8torgb16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  296. {
  297. long i;
  298. for (i=0; i<num_pixels; i++)
  299. ((uint16_t *)dst)[i] = ((uint16_t *)palette)[ src[i] ];
  300. }
  301. void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  302. {
  303. long i;
  304. for (i=0; i<num_pixels; i++)
  305. ((uint16_t *)dst)[i] = bswap_16(((uint16_t *)palette)[ src[i] ]);
  306. }
  307. /**
  308. * Palette is assumed to contain BGR15, see rgb32to15 to convert the palette.
  309. */
  310. void palette8torgb15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  311. {
  312. long i;
  313. for (i=0; i<num_pixels; i++)
  314. ((uint16_t *)dst)[i] = ((uint16_t *)palette)[ src[i] ];
  315. }
  316. void palette8tobgr15(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  317. {
  318. long i;
  319. for (i=0; i<num_pixels; i++)
  320. ((uint16_t *)dst)[i] = bswap_16(((uint16_t *)palette)[ src[i] ]);
  321. }
  322. void rgb32tobgr24(const uint8_t *src, uint8_t *dst, long src_size)
  323. {
  324. long i;
  325. long num_pixels = src_size >> 2;
  326. for (i=0; i<num_pixels; i++)
  327. {
  328. #ifdef WORDS_BIGENDIAN
  329. /* RGB32 (= A,B,G,R) -> BGR24 (= B,G,R) */
  330. dst[3*i + 0] = src[4*i + 1];
  331. dst[3*i + 1] = src[4*i + 2];
  332. dst[3*i + 2] = src[4*i + 3];
  333. #else
  334. dst[3*i + 0] = src[4*i + 2];
  335. dst[3*i + 1] = src[4*i + 1];
  336. dst[3*i + 2] = src[4*i + 0];
  337. #endif
  338. }
  339. }
  340. void rgb24tobgr32(const uint8_t *src, uint8_t *dst, long src_size)
  341. {
  342. long i;
  343. for (i=0; 3*i<src_size; i++)
  344. {
  345. #ifdef WORDS_BIGENDIAN
  346. /* RGB24 (= R,G,B) -> BGR32 (= A,R,G,B) */
  347. dst[4*i + 0] = 0;
  348. dst[4*i + 1] = src[3*i + 0];
  349. dst[4*i + 2] = src[3*i + 1];
  350. dst[4*i + 3] = src[3*i + 2];
  351. #else
  352. dst[4*i + 0] = src[3*i + 2];
  353. dst[4*i + 1] = src[3*i + 1];
  354. dst[4*i + 2] = src[3*i + 0];
  355. dst[4*i + 3] = 0;
  356. #endif
  357. }
  358. }
  359. void rgb16tobgr32(const uint8_t *src, uint8_t *dst, long src_size)
  360. {
  361. const uint16_t *end;
  362. uint8_t *d = (uint8_t *)dst;
  363. const uint16_t *s = (uint16_t *)src;
  364. end = s + src_size/2;
  365. while (s < end)
  366. {
  367. register uint16_t bgr;
  368. bgr = *s++;
  369. #ifdef WORDS_BIGENDIAN
  370. *d++ = 0;
  371. *d++ = (bgr&0x1F)<<3;
  372. *d++ = (bgr&0x7E0)>>3;
  373. *d++ = (bgr&0xF800)>>8;
  374. #else
  375. *d++ = (bgr&0xF800)>>8;
  376. *d++ = (bgr&0x7E0)>>3;
  377. *d++ = (bgr&0x1F)<<3;
  378. *d++ = 0;
  379. #endif
  380. }
  381. }
  382. void rgb16tobgr24(const uint8_t *src, uint8_t *dst, long src_size)
  383. {
  384. const uint16_t *end;
  385. uint8_t *d = (uint8_t *)dst;
  386. const uint16_t *s = (const uint16_t *)src;
  387. end = s + src_size/2;
  388. while (s < end)
  389. {
  390. register uint16_t bgr;
  391. bgr = *s++;
  392. *d++ = (bgr&0xF800)>>8;
  393. *d++ = (bgr&0x7E0)>>3;
  394. *d++ = (bgr&0x1F)<<3;
  395. }
  396. }
  397. void rgb16tobgr16(const uint8_t *src, uint8_t *dst, long src_size)
  398. {
  399. long i;
  400. long num_pixels = src_size >> 1;
  401. for (i=0; i<num_pixels; i++)
  402. {
  403. unsigned b,g,r;
  404. register uint16_t rgb;
  405. rgb = src[2*i];
  406. r = rgb&0x1F;
  407. g = (rgb&0x7E0)>>5;
  408. b = (rgb&0xF800)>>11;
  409. dst[2*i] = (b&0x1F) | ((g&0x3F)<<5) | ((r&0x1F)<<11);
  410. }
  411. }
  412. void rgb16tobgr15(const uint8_t *src, uint8_t *dst, long src_size)
  413. {
  414. long i;
  415. long num_pixels = src_size >> 1;
  416. for (i=0; i<num_pixels; i++)
  417. {
  418. unsigned b,g,r;
  419. register uint16_t rgb;
  420. rgb = src[2*i];
  421. r = rgb&0x1F;
  422. g = (rgb&0x7E0)>>5;
  423. b = (rgb&0xF800)>>11;
  424. dst[2*i] = (b&0x1F) | ((g&0x1F)<<5) | ((r&0x1F)<<10);
  425. }
  426. }
  427. void rgb15tobgr32(const uint8_t *src, uint8_t *dst, long src_size)
  428. {
  429. const uint16_t *end;
  430. uint8_t *d = (uint8_t *)dst;
  431. const uint16_t *s = (const uint16_t *)src;
  432. end = s + src_size/2;
  433. while (s < end)
  434. {
  435. register uint16_t bgr;
  436. bgr = *s++;
  437. #ifdef WORDS_BIGENDIAN
  438. *d++ = 0;
  439. *d++ = (bgr&0x1F)<<3;
  440. *d++ = (bgr&0x3E0)>>2;
  441. *d++ = (bgr&0x7C00)>>7;
  442. #else
  443. *d++ = (bgr&0x7C00)>>7;
  444. *d++ = (bgr&0x3E0)>>2;
  445. *d++ = (bgr&0x1F)<<3;
  446. *d++ = 0;
  447. #endif
  448. }
  449. }
  450. void rgb15tobgr24(const uint8_t *src, uint8_t *dst, long src_size)
  451. {
  452. const uint16_t *end;
  453. uint8_t *d = (uint8_t *)dst;
  454. const uint16_t *s = (uint16_t *)src;
  455. end = s + src_size/2;
  456. while (s < end)
  457. {
  458. register uint16_t bgr;
  459. bgr = *s++;
  460. *d++ = (bgr&0x7C00)>>7;
  461. *d++ = (bgr&0x3E0)>>2;
  462. *d++ = (bgr&0x1F)<<3;
  463. }
  464. }
  465. void rgb15tobgr16(const uint8_t *src, uint8_t *dst, long src_size)
  466. {
  467. long i;
  468. long num_pixels = src_size >> 1;
  469. for (i=0; i<num_pixels; i++)
  470. {
  471. unsigned b,g,r;
  472. register uint16_t rgb;
  473. rgb = src[2*i];
  474. r = rgb&0x1F;
  475. g = (rgb&0x3E0)>>5;
  476. b = (rgb&0x7C00)>>10;
  477. dst[2*i] = (b&0x1F) | ((g&0x3F)<<5) | ((r&0x1F)<<11);
  478. }
  479. }
  480. void rgb15tobgr15(const uint8_t *src, uint8_t *dst, long src_size)
  481. {
  482. long i;
  483. long num_pixels = src_size >> 1;
  484. for (i=0; i<num_pixels; i++)
  485. {
  486. unsigned b,g,r;
  487. register uint16_t rgb;
  488. rgb = src[2*i];
  489. r = rgb&0x1F;
  490. g = (rgb&0x3E0)>>5;
  491. b = (rgb&0x7C00)>>10;
  492. dst[2*i] = (b&0x1F) | ((g&0x1F)<<5) | ((r&0x1F)<<10);
  493. }
  494. }
  495. void rgb8tobgr8(const uint8_t *src, uint8_t *dst, long src_size)
  496. {
  497. long i;
  498. long num_pixels = src_size;
  499. for (i=0; i<num_pixels; i++)
  500. {
  501. unsigned b,g,r;
  502. register uint8_t rgb;
  503. rgb = src[i];
  504. r = (rgb&0x07);
  505. g = (rgb&0x38)>>3;
  506. b = (rgb&0xC0)>>6;
  507. dst[i] = ((b<<1)&0x07) | ((g&0x07)<<3) | ((r&0x03)<<6);
  508. }
  509. }