rgb2rgb.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  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 (*rgb24tobgr32)(const uint8_t *src, uint8_t *dst, long src_size);
  49. void (*rgb24tobgr24)(const uint8_t *src, uint8_t *dst, long src_size);
  50. void (*rgb24to16)(const uint8_t *src, uint8_t *dst, long src_size);
  51. void (*rgb24to15)(const uint8_t *src, uint8_t *dst, long src_size);
  52. void (*rgb32tobgr32)(const uint8_t *src, uint8_t *dst, long src_size);
  53. //void (*rgb32tobgr24)(const uint8_t *src, uint8_t *dst, long src_size);
  54. void (*rgb32tobgr16)(const uint8_t *src, uint8_t *dst, long src_size);
  55. void (*rgb32tobgr15)(const uint8_t *src, uint8_t *dst, long src_size);
  56. void (*yv12toyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
  57. long width, long height,
  58. long lumStride, long chromStride, long dstStride);
  59. void (*yv12touyvy)(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 (*yuv422ptoyuy2)(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 (*yuy2toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
  66. long width, long height,
  67. long lumStride, long chromStride, long srcStride);
  68. void (*rgb24toyv12)(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 (*planar2x)(const uint8_t *src, uint8_t *dst, long width, long height,
  72. long srcStride, long dstStride);
  73. void (*interleaveBytes)(uint8_t *src1, uint8_t *src2, uint8_t *dst,
  74. long width, long height, long src1Stride,
  75. long src2Stride, long dstStride);
  76. void (*vu9_to_vu12)(const uint8_t *src1, const uint8_t *src2,
  77. uint8_t *dst1, uint8_t *dst2,
  78. long width, long height,
  79. long srcStride1, long srcStride2,
  80. long dstStride1, long dstStride2);
  81. void (*yvu9_to_yuy2)(const uint8_t *src1, const uint8_t *src2, const uint8_t *src3,
  82. uint8_t *dst,
  83. long width, long height,
  84. long srcStride1, long srcStride2,
  85. long srcStride3, long dstStride);
  86. #if defined(ARCH_X86) && defined(CONFIG_GPL)
  87. DECLARE_ASM_CONST(8, uint64_t, mmx_null) = 0x0000000000000000ULL;
  88. DECLARE_ASM_CONST(8, uint64_t, mmx_one) = 0xFFFFFFFFFFFFFFFFULL;
  89. DECLARE_ASM_CONST(8, uint64_t, mask32b) = 0x000000FF000000FFULL;
  90. DECLARE_ASM_CONST(8, uint64_t, mask32g) = 0x0000FF000000FF00ULL;
  91. DECLARE_ASM_CONST(8, uint64_t, mask32r) = 0x00FF000000FF0000ULL;
  92. DECLARE_ASM_CONST(8, uint64_t, mask32) = 0x00FFFFFF00FFFFFFULL;
  93. DECLARE_ASM_CONST(8, uint64_t, mask3216br) = 0x00F800F800F800F8ULL;
  94. DECLARE_ASM_CONST(8, uint64_t, mask3216g) = 0x0000FC000000FC00ULL;
  95. DECLARE_ASM_CONST(8, uint64_t, mask3215g) = 0x0000F8000000F800ULL;
  96. DECLARE_ASM_CONST(8, uint64_t, mul3216) = 0x2000000420000004ULL;
  97. DECLARE_ASM_CONST(8, uint64_t, mul3215) = 0x2000000820000008ULL;
  98. DECLARE_ASM_CONST(8, uint64_t, mask24b) = 0x00FF0000FF0000FFULL;
  99. DECLARE_ASM_CONST(8, uint64_t, mask24g) = 0xFF0000FF0000FF00ULL;
  100. DECLARE_ASM_CONST(8, uint64_t, mask24r) = 0x0000FF0000FF0000ULL;
  101. DECLARE_ASM_CONST(8, uint64_t, mask24l) = 0x0000000000FFFFFFULL;
  102. DECLARE_ASM_CONST(8, uint64_t, mask24h) = 0x0000FFFFFF000000ULL;
  103. DECLARE_ASM_CONST(8, uint64_t, mask24hh) = 0xffff000000000000ULL;
  104. DECLARE_ASM_CONST(8, uint64_t, mask24hhh) = 0xffffffff00000000ULL;
  105. DECLARE_ASM_CONST(8, uint64_t, mask24hhhh) = 0xffffffffffff0000ULL;
  106. DECLARE_ASM_CONST(8, uint64_t, mask15b) = 0x001F001F001F001FULL; /* 00000000 00011111 xxB */
  107. DECLARE_ASM_CONST(8, uint64_t, mask15rg) = 0x7FE07FE07FE07FE0ULL; /* 01111111 11100000 RGx */
  108. DECLARE_ASM_CONST(8, uint64_t, mask15s) = 0xFFE0FFE0FFE0FFE0ULL;
  109. DECLARE_ASM_CONST(8, uint64_t, mask15g) = 0x03E003E003E003E0ULL;
  110. DECLARE_ASM_CONST(8, uint64_t, mask15r) = 0x7C007C007C007C00ULL;
  111. #define mask16b mask15b
  112. DECLARE_ASM_CONST(8, uint64_t, mask16g) = 0x07E007E007E007E0ULL;
  113. DECLARE_ASM_CONST(8, uint64_t, mask16r) = 0xF800F800F800F800ULL;
  114. DECLARE_ASM_CONST(8, uint64_t, red_16mask) = 0x0000f8000000f800ULL;
  115. DECLARE_ASM_CONST(8, uint64_t, green_16mask) = 0x000007e0000007e0ULL;
  116. DECLARE_ASM_CONST(8, uint64_t, blue_16mask) = 0x0000001f0000001fULL;
  117. DECLARE_ASM_CONST(8, uint64_t, red_15mask) = 0x00007c0000007c00ULL;
  118. DECLARE_ASM_CONST(8, uint64_t, green_15mask) = 0x000003e0000003e0ULL;
  119. DECLARE_ASM_CONST(8, uint64_t, blue_15mask) = 0x0000001f0000001fULL;
  120. #if 0
  121. static volatile uint64_t __attribute__((aligned(8))) b5Dither;
  122. static volatile uint64_t __attribute__((aligned(8))) g5Dither;
  123. static volatile uint64_t __attribute__((aligned(8))) g6Dither;
  124. static volatile uint64_t __attribute__((aligned(8))) r5Dither;
  125. static uint64_t __attribute__((aligned(8))) dither4[2]={
  126. 0x0103010301030103LL,
  127. 0x0200020002000200LL,};
  128. static uint64_t __attribute__((aligned(8))) dither8[2]={
  129. 0x0602060206020602LL,
  130. 0x0004000400040004LL,};
  131. #endif
  132. #endif /* defined(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. #undef HAVE_MMX
  146. #undef HAVE_MMX2
  147. #undef HAVE_3DNOW
  148. #undef HAVE_SSE2
  149. #define RENAME(a) a ## _C
  150. #include "rgb2rgb_template.c"
  151. #if defined(ARCH_X86) && defined(CONFIG_GPL)
  152. //MMX versions
  153. #undef RENAME
  154. #define HAVE_MMX
  155. #undef HAVE_MMX2
  156. #undef HAVE_3DNOW
  157. #undef HAVE_SSE2
  158. #define RENAME(a) a ## _MMX
  159. #include "rgb2rgb_template.c"
  160. //MMX2 versions
  161. #undef RENAME
  162. #define HAVE_MMX
  163. #define HAVE_MMX2
  164. #undef HAVE_3DNOW
  165. #undef HAVE_SSE2
  166. #define RENAME(a) a ## _MMX2
  167. #include "rgb2rgb_template.c"
  168. //3DNOW versions
  169. #undef RENAME
  170. #define HAVE_MMX
  171. #undef HAVE_MMX2
  172. #define HAVE_3DNOW
  173. #undef HAVE_SSE2
  174. #define RENAME(a) a ## _3DNOW
  175. #include "rgb2rgb_template.c"
  176. #endif //ARCH_X86 || ARCH_X86_64
  177. /*
  178. RGB15->RGB16 original by Strepto/Astral
  179. ported to gcc & bugfixed : A'rpi
  180. MMX2, 3DNOW optimization by Nick Kurshev
  181. 32-bit C version, and and&add trick by Michael Niedermayer
  182. */
  183. void sws_rgb2rgb_init(int flags){
  184. #if (defined(HAVE_MMX2) || defined(HAVE_3DNOW) || defined(HAVE_MMX)) && defined(CONFIG_GPL)
  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 /* defined(HAVE_MMX2) || defined(HAVE_3DNOW) || defined(HAVE_MMX) */
  193. rgb2rgb_init_C();
  194. }
  195. /**
  196. * Palette is assumed to contain BGR32.
  197. */
  198. void palette8torgb32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  199. {
  200. long i;
  201. /*
  202. for (i=0; i<num_pixels; i++)
  203. ((unsigned *)dst)[i] = ((unsigned *)palette)[src[i]];
  204. */
  205. for (i=0; i<num_pixels; i++)
  206. {
  207. #ifdef WORDS_BIGENDIAN
  208. dst[3]= palette[src[i]*4+2];
  209. dst[2]= palette[src[i]*4+1];
  210. dst[1]= palette[src[i]*4+0];
  211. #else
  212. //FIXME slow?
  213. dst[0]= palette[src[i]*4+2];
  214. dst[1]= palette[src[i]*4+1];
  215. dst[2]= palette[src[i]*4+0];
  216. //dst[3]= 0; /* do we need this cleansing? */
  217. #endif
  218. dst+= 4;
  219. }
  220. }
  221. void palette8tobgr32(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  222. {
  223. long i;
  224. for (i=0; i<num_pixels; i++)
  225. {
  226. #ifdef WORDS_BIGENDIAN
  227. dst[3]= palette[src[i]*4+0];
  228. dst[2]= palette[src[i]*4+1];
  229. dst[1]= palette[src[i]*4+2];
  230. #else
  231. //FIXME slow?
  232. dst[0]= palette[src[i]*4+0];
  233. dst[1]= palette[src[i]*4+1];
  234. dst[2]= palette[src[i]*4+2];
  235. //dst[3]= 0; /* do we need this cleansing? */
  236. #endif
  237. dst+= 4;
  238. }
  239. }
  240. /**
  241. * Palette is assumed to contain BGR32.
  242. */
  243. void palette8torgb24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  244. {
  245. long i;
  246. /*
  247. Writes 1 byte too much and might cause alignment issues on some architectures?
  248. for (i=0; i<num_pixels; i++)
  249. ((unsigned *)(&dst[i*3])) = ((unsigned *)palette)[src[i]];
  250. */
  251. for (i=0; i<num_pixels; i++)
  252. {
  253. //FIXME slow?
  254. dst[0]= palette[src[i]*4+2];
  255. dst[1]= palette[src[i]*4+1];
  256. dst[2]= palette[src[i]*4+0];
  257. dst+= 3;
  258. }
  259. }
  260. void palette8tobgr24(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  261. {
  262. long i;
  263. /*
  264. Writes 1 byte too much and might cause alignment issues on some architectures?
  265. for (i=0; i<num_pixels; i++)
  266. ((unsigned *)(&dst[i*3])) = ((unsigned *)palette)[src[i]];
  267. */
  268. for (i=0; i<num_pixels; i++)
  269. {
  270. //FIXME slow?
  271. dst[0]= palette[src[i]*4+0];
  272. dst[1]= palette[src[i]*4+1];
  273. dst[2]= palette[src[i]*4+2];
  274. dst+= 3;
  275. }
  276. }
  277. /**
  278. * Palette is assumed to contain BGR16, see rgb32to16 to convert the palette.
  279. */
  280. void palette8torgb16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  281. {
  282. long i;
  283. for (i=0; i<num_pixels; i++)
  284. ((uint16_t *)dst)[i] = ((const uint16_t *)palette)[src[i]];
  285. }
  286. void palette8tobgr16(const uint8_t *src, uint8_t *dst, long num_pixels, const uint8_t *palette)
  287. {
  288. long i;
  289. for (i=0; i<num_pixels; i++)
  290. ((uint16_t *)dst)[i] = bswap_16(((const uint16_t *)palette)[src[i]]);
  291. }
  292. /**
  293. * Palette is assumed to contain BGR15, see rgb32to15 to convert the palette.
  294. */
  295. void palette8torgb15(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] = ((const uint16_t *)palette)[src[i]];
  300. }
  301. void palette8tobgr15(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(((const uint16_t *)palette)[src[i]]);
  306. }
  307. void rgb32to24(const uint8_t *src, uint8_t *dst, long src_size)
  308. {
  309. long i;
  310. long num_pixels = src_size >> 2;
  311. for (i=0; i<num_pixels; i++)
  312. {
  313. #ifdef WORDS_BIGENDIAN
  314. /* RGB32 (= A,B,G,R) -> BGR24 (= B,G,R) */
  315. dst[3*i + 0] = src[4*i + 1];
  316. dst[3*i + 1] = src[4*i + 2];
  317. dst[3*i + 2] = src[4*i + 3];
  318. #else
  319. dst[3*i + 0] = src[4*i + 2];
  320. dst[3*i + 1] = src[4*i + 1];
  321. dst[3*i + 2] = src[4*i + 0];
  322. #endif
  323. }
  324. }
  325. void rgb24to32(const uint8_t *src, uint8_t *dst, long src_size)
  326. {
  327. long i;
  328. for (i=0; 3*i<src_size; i++)
  329. {
  330. #ifdef WORDS_BIGENDIAN
  331. /* RGB24 (= R,G,B) -> BGR32 (= A,R,G,B) */
  332. dst[4*i + 0] = 0;
  333. dst[4*i + 1] = src[3*i + 0];
  334. dst[4*i + 2] = src[3*i + 1];
  335. dst[4*i + 3] = src[3*i + 2];
  336. #else
  337. dst[4*i + 0] = src[3*i + 2];
  338. dst[4*i + 1] = src[3*i + 1];
  339. dst[4*i + 2] = src[3*i + 0];
  340. dst[4*i + 3] = 0;
  341. #endif
  342. }
  343. }
  344. void rgb16tobgr32(const uint8_t *src, uint8_t *dst, long src_size)
  345. {
  346. const uint16_t *end;
  347. uint8_t *d = dst;
  348. const uint16_t *s = (const uint16_t *)src;
  349. end = s + src_size/2;
  350. while (s < end)
  351. {
  352. register uint16_t bgr;
  353. bgr = *s++;
  354. #ifdef WORDS_BIGENDIAN
  355. *d++ = 0;
  356. *d++ = (bgr&0x1F)<<3;
  357. *d++ = (bgr&0x7E0)>>3;
  358. *d++ = (bgr&0xF800)>>8;
  359. #else
  360. *d++ = (bgr&0xF800)>>8;
  361. *d++ = (bgr&0x7E0)>>3;
  362. *d++ = (bgr&0x1F)<<3;
  363. *d++ = 0;
  364. #endif
  365. }
  366. }
  367. void rgb16to24(const uint8_t *src, uint8_t *dst, long src_size)
  368. {
  369. const uint16_t *end;
  370. uint8_t *d = dst;
  371. const uint16_t *s = (const uint16_t *)src;
  372. end = s + src_size/2;
  373. while (s < end)
  374. {
  375. register uint16_t bgr;
  376. bgr = *s++;
  377. *d++ = (bgr&0xF800)>>8;
  378. *d++ = (bgr&0x7E0)>>3;
  379. *d++ = (bgr&0x1F)<<3;
  380. }
  381. }
  382. void rgb16tobgr16(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 b,g,r;
  389. register uint16_t rgb;
  390. rgb = src[2*i];
  391. r = rgb&0x1F;
  392. g = (rgb&0x7E0)>>5;
  393. b = (rgb&0xF800)>>11;
  394. dst[2*i] = (b&0x1F) | ((g&0x3F)<<5) | ((r&0x1F)<<11);
  395. }
  396. }
  397. void rgb16tobgr15(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&0x1F)<<5) | ((r&0x1F)<<10);
  410. }
  411. }
  412. void rgb15tobgr32(const uint8_t *src, uint8_t *dst, long src_size)
  413. {
  414. const uint16_t *end;
  415. uint8_t *d = dst;
  416. const uint16_t *s = (const uint16_t *)src;
  417. end = s + src_size/2;
  418. while (s < end)
  419. {
  420. register uint16_t bgr;
  421. bgr = *s++;
  422. #ifdef WORDS_BIGENDIAN
  423. *d++ = 0;
  424. *d++ = (bgr&0x1F)<<3;
  425. *d++ = (bgr&0x3E0)>>2;
  426. *d++ = (bgr&0x7C00)>>7;
  427. #else
  428. *d++ = (bgr&0x7C00)>>7;
  429. *d++ = (bgr&0x3E0)>>2;
  430. *d++ = (bgr&0x1F)<<3;
  431. *d++ = 0;
  432. #endif
  433. }
  434. }
  435. void rgb15to24(const uint8_t *src, uint8_t *dst, long src_size)
  436. {
  437. const uint16_t *end;
  438. uint8_t *d = dst;
  439. const uint16_t *s = (const uint16_t *)src;
  440. end = s + src_size/2;
  441. while (s < end)
  442. {
  443. register uint16_t bgr;
  444. bgr = *s++;
  445. *d++ = (bgr&0x7C00)>>7;
  446. *d++ = (bgr&0x3E0)>>2;
  447. *d++ = (bgr&0x1F)<<3;
  448. }
  449. }
  450. void rgb15tobgr16(const uint8_t *src, uint8_t *dst, long src_size)
  451. {
  452. long i;
  453. long num_pixels = src_size >> 1;
  454. for (i=0; i<num_pixels; i++)
  455. {
  456. unsigned b,g,r;
  457. register uint16_t rgb;
  458. rgb = src[2*i];
  459. r = rgb&0x1F;
  460. g = (rgb&0x3E0)>>5;
  461. b = (rgb&0x7C00)>>10;
  462. dst[2*i] = (b&0x1F) | ((g&0x3F)<<5) | ((r&0x1F)<<11);
  463. }
  464. }
  465. void rgb15tobgr15(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&0x1F)<<5) | ((r&0x1F)<<10);
  478. }
  479. }
  480. void bgr8torgb8(const uint8_t *src, uint8_t *dst, long src_size)
  481. {
  482. long i;
  483. long num_pixels = src_size;
  484. for (i=0; i<num_pixels; i++)
  485. {
  486. unsigned b,g,r;
  487. register uint8_t rgb;
  488. rgb = src[i];
  489. r = (rgb&0x07);
  490. g = (rgb&0x38)>>3;
  491. b = (rgb&0xC0)>>6;
  492. dst[i] = ((b<<1)&0x07) | ((g&0x07)<<3) | ((r&0x03)<<6);
  493. }
  494. }