rgb2rgb.c 16 KB

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