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.

565 lines
22KB

  1. /*
  2. * yuv2rgb_mmx.c, software YUV to RGB converter with Intel MMX "technology"
  3. *
  4. * Copyright (C) 2000, Silicon Integrated System Corp
  5. *
  6. * Author: Olie Lho <ollie@sis.com.tw>
  7. *
  8. * 15,24 bpp and dithering from Michael Niedermayer (michaelni@gmx.at)
  9. * MMX/MMX2 Template stuff from Michael Niedermayer (needed for fast movntq support)
  10. * context / deglobalize stuff by Michael Niedermayer
  11. *
  12. * This file is part of mpeg2dec, a free MPEG-2 video decoder
  13. *
  14. * mpeg2dec is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2, or (at your option)
  17. * any later version.
  18. *
  19. * mpeg2dec is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with mpeg2dec; if not, write to the Free Software
  26. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  27. */
  28. #undef MOVNTQ
  29. #undef EMMS
  30. #undef SFENCE
  31. #if HAVE_AMD3DNOW
  32. /* On K6 femms is faster than emms. On K7 femms is directly mapped to emms. */
  33. #define EMMS "femms"
  34. #else
  35. #define EMMS "emms"
  36. #endif
  37. #if HAVE_MMX2
  38. #define MOVNTQ "movntq"
  39. #define SFENCE "sfence"
  40. #else
  41. #define MOVNTQ "movq"
  42. #define SFENCE " # nop"
  43. #endif
  44. #define YUV2RGB \
  45. /* Do the multiply part of the conversion for even and odd pixels,
  46. register usage:
  47. mm0 -> Cblue, mm1 -> Cred, mm2 -> Cgreen even pixels,
  48. mm3 -> Cblue, mm4 -> Cred, mm5 -> Cgreen odd pixels,
  49. mm6 -> Y even, mm7 -> Y odd */\
  50. /* convert the chroma part */\
  51. "punpcklbw %%mm4, %%mm0;" /* scatter 4 Cb 00 u3 00 u2 00 u1 00 u0 */ \
  52. "punpcklbw %%mm4, %%mm1;" /* scatter 4 Cr 00 v3 00 v2 00 v1 00 v0 */ \
  53. \
  54. "psllw $3, %%mm0;" /* Promote precision */ \
  55. "psllw $3, %%mm1;" /* Promote precision */ \
  56. \
  57. "psubsw "U_OFFSET"(%4), %%mm0;" /* Cb -= 128 */ \
  58. "psubsw "V_OFFSET"(%4), %%mm1;" /* Cr -= 128 */ \
  59. \
  60. "movq %%mm0, %%mm2;" /* Copy 4 Cb 00 u3 00 u2 00 u1 00 u0 */ \
  61. "movq %%mm1, %%mm3;" /* Copy 4 Cr 00 v3 00 v2 00 v1 00 v0 */ \
  62. \
  63. "pmulhw "UG_COEFF"(%4), %%mm2;" /* Mul Cb with green coeff -> Cb green */ \
  64. "pmulhw "VG_COEFF"(%4), %%mm3;" /* Mul Cr with green coeff -> Cr green */ \
  65. \
  66. "pmulhw "UB_COEFF"(%4), %%mm0;" /* Mul Cb -> Cblue 00 b3 00 b2 00 b1 00 b0 */\
  67. "pmulhw "VR_COEFF"(%4), %%mm1;" /* Mul Cr -> Cred 00 r3 00 r2 00 r1 00 r0 */\
  68. \
  69. "paddsw %%mm3, %%mm2;" /* Cb green + Cr green -> Cgreen */\
  70. \
  71. /* convert the luma part */\
  72. "movq %%mm6, %%mm7;" /* Copy 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */\
  73. "pand "MANGLE(mmx_00ffw)", %%mm6;" /* get Y even 00 Y6 00 Y4 00 Y2 00 Y0 */\
  74. \
  75. "psrlw $8, %%mm7;" /* get Y odd 00 Y7 00 Y5 00 Y3 00 Y1 */\
  76. \
  77. "psllw $3, %%mm6;" /* Promote precision */\
  78. "psllw $3, %%mm7;" /* Promote precision */\
  79. \
  80. "psubw "Y_OFFSET"(%4), %%mm6;" /* Y -= 16 */\
  81. "psubw "Y_OFFSET"(%4), %%mm7;" /* Y -= 16 */\
  82. \
  83. "pmulhw "Y_COEFF"(%4), %%mm6;" /* Mul 4 Y even 00 y6 00 y4 00 y2 00 y0 */\
  84. "pmulhw "Y_COEFF"(%4), %%mm7;" /* Mul 4 Y odd 00 y7 00 y5 00 y3 00 y1 */\
  85. \
  86. /* Do the addition part of the conversion for even and odd pixels,
  87. register usage:
  88. mm0 -> Cblue, mm1 -> Cred, mm2 -> Cgreen even pixels,
  89. mm3 -> Cblue, mm4 -> Cred, mm5 -> Cgreen odd pixels,
  90. mm6 -> Y even, mm7 -> Y odd */\
  91. "movq %%mm0, %%mm3;" /* Copy Cblue */\
  92. "movq %%mm1, %%mm4;" /* Copy Cred */\
  93. "movq %%mm2, %%mm5;" /* Copy Cgreen */\
  94. \
  95. "paddsw %%mm6, %%mm0;" /* Y even + Cblue 00 B6 00 B4 00 B2 00 B0 */\
  96. "paddsw %%mm7, %%mm3;" /* Y odd + Cblue 00 B7 00 B5 00 B3 00 B1 */\
  97. \
  98. "paddsw %%mm6, %%mm1;" /* Y even + Cred 00 R6 00 R4 00 R2 00 R0 */\
  99. "paddsw %%mm7, %%mm4;" /* Y odd + Cred 00 R7 00 R5 00 R3 00 R1 */\
  100. \
  101. "paddsw %%mm6, %%mm2;" /* Y even + Cgreen 00 G6 00 G4 00 G2 00 G0 */\
  102. "paddsw %%mm7, %%mm5;" /* Y odd + Cgreen 00 G7 00 G5 00 G3 00 G1 */\
  103. \
  104. /* Limit RGB even to 0..255 */\
  105. "packuswb %%mm0, %%mm0;" /* B6 B4 B2 B0 B6 B4 B2 B0 */\
  106. "packuswb %%mm1, %%mm1;" /* R6 R4 R2 R0 R6 R4 R2 R0 */\
  107. "packuswb %%mm2, %%mm2;" /* G6 G4 G2 G0 G6 G4 G2 G0 */\
  108. \
  109. /* Limit RGB odd to 0..255 */\
  110. "packuswb %%mm3, %%mm3;" /* B7 B5 B3 B1 B7 B5 B3 B1 */\
  111. "packuswb %%mm4, %%mm4;" /* R7 R5 R3 R1 R7 R5 R3 R1 */\
  112. "packuswb %%mm5, %%mm5;" /* G7 G5 G3 G1 G7 G5 G3 G1 */\
  113. \
  114. /* Interleave RGB even and odd */\
  115. "punpcklbw %%mm3, %%mm0;" /* B7 B6 B5 B4 B3 B2 B1 B0 */\
  116. "punpcklbw %%mm4, %%mm1;" /* R7 R6 R5 R4 R3 R2 R1 R0 */\
  117. "punpcklbw %%mm5, %%mm2;" /* G7 G6 G5 G4 G3 G2 G1 G0 */\
  118. #define YUV422_UNSHIFT \
  119. if(c->srcFormat == PIX_FMT_YUV422P) {\
  120. srcStride[1] *= 2; \
  121. srcStride[2] *= 2; \
  122. } \
  123. #define YUV2RGB_LOOP(depth) \
  124. h_size= (c->dstW+7)&~7; \
  125. if(h_size*depth > FFABS(dstStride[0])) h_size-=8; \
  126. \
  127. __asm__ volatile ("pxor %mm4, %mm4;" /* zero mm4 */ ); \
  128. for (y= 0; y<srcSliceH; y++ ) { \
  129. uint8_t *image = dst[0] + (y+srcSliceY)*dstStride[0]; \
  130. const uint8_t *py = src[0] + y*srcStride[0]; \
  131. const uint8_t *pu = src[1] + (y>>1)*srcStride[1]; \
  132. const uint8_t *pv = src[2] + (y>>1)*srcStride[2]; \
  133. x86_reg index= -h_size/2; \
  134. #define YUV2RGB_INIT \
  135. /* This MMX assembly code deals with a SINGLE scan line at a time, \
  136. * it converts 8 pixels in each iteration. */ \
  137. __asm__ volatile ( \
  138. /* load data for start of next scan line */ \
  139. "movd (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */ \
  140. "movd (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */ \
  141. "movq (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */ \
  142. /* \
  143. ".balign 16 \n\t" \
  144. */ \
  145. "1: \n\t" \
  146. /* No speed difference on my p3@500 with prefetch, \
  147. * if it is faster for anyone with -benchmark then tell me. \
  148. PREFETCH" 64(%0) \n\t" \
  149. PREFETCH" 64(%1) \n\t" \
  150. PREFETCH" 64(%2) \n\t" \
  151. */ \
  152. #define YUV2RGB_ENDLOOP(depth) \
  153. "add $"AV_STRINGIFY(depth*8)", %1 \n\t" \
  154. "add $4, %0 \n\t" \
  155. " js 1b \n\t" \
  156. #define YUV2RGB_OPERANDS \
  157. : "+r" (index), "+r" (image) \
  158. : "r" (pu - index), "r" (pv - index), "r"(&c->redDither), "r" (py - 2*index) \
  159. ); \
  160. } \
  161. __asm__ volatile (SFENCE"\n\t"EMMS); \
  162. return srcSliceH; \
  163. #define YUV2RGB_OPERANDS_ALPHA \
  164. : "+r" (index), "+r" (image) \
  165. : "r" (pu - index), "r" (pv - index), "r"(&c->redDither), "r" (py - 2*index), "r" (pa - 2*index) \
  166. ); \
  167. } \
  168. __asm__ volatile (SFENCE"\n\t"EMMS); \
  169. return srcSliceH; \
  170. static inline int RENAME(yuv420_rgb16)(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
  171. int srcSliceH, uint8_t* dst[], int dstStride[])
  172. {
  173. int y, h_size;
  174. YUV422_UNSHIFT
  175. YUV2RGB_LOOP(2)
  176. c->blueDither= ff_dither8[y&1];
  177. c->greenDither= ff_dither4[y&1];
  178. c->redDither= ff_dither8[(y+1)&1];
  179. YUV2RGB_INIT
  180. YUV2RGB
  181. #ifdef DITHER1XBPP
  182. "paddusb "BLUE_DITHER"(%4), %%mm0;"
  183. "paddusb "GREEN_DITHER"(%4), %%mm2;"
  184. "paddusb "RED_DITHER"(%4), %%mm1;"
  185. #endif
  186. /* mask unneeded bits off */
  187. "pand "MANGLE(mmx_redmask)", %%mm0;" /* b7b6b5b4 b3_0_0_0 b7b6b5b4 b3_0_0_0 */
  188. "pand "MANGLE(mmx_grnmask)", %%mm2;" /* g7g6g5g4 g3g2_0_0 g7g6g5g4 g3g2_0_0 */
  189. "pand "MANGLE(mmx_redmask)", %%mm1;" /* r7r6r5r4 r3_0_0_0 r7r6r5r4 r3_0_0_0 */
  190. "psrlw $3, %%mm0;" /* 0_0_0_b7 b6b5b4b3 0_0_0_b7 b6b5b4b3 */
  191. "pxor %%mm4, %%mm4;" /* zero mm4 */
  192. "movq %%mm0, %%mm5;" /* Copy B7-B0 */
  193. "movq %%mm2, %%mm7;" /* Copy G7-G0 */
  194. /* convert RGB24 plane to RGB16 pack for pixel 0-3 */
  195. "punpcklbw %%mm4, %%mm2;" /* 0_0_0_0 0_0_0_0 g7g6g5g4 g3g2_0_0 */
  196. "punpcklbw %%mm1, %%mm0;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
  197. "psllw $3, %%mm2;" /* 0_0_0_0 0_g7g6g5 g4g3g2_0 0_0_0_0 */
  198. "por %%mm2, %%mm0;" /* r7r6r5r4 r3g7g6g5 g4g3g2b7 b6b5b4b3 */
  199. "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */
  200. MOVNTQ " %%mm0, (%1);" /* store pixel 0-3 */
  201. /* convert RGB24 plane to RGB16 pack for pixel 0-3 */
  202. "punpckhbw %%mm4, %%mm7;" /* 0_0_0_0 0_0_0_0 g7g6g5g4 g3g2_0_0 */
  203. "punpckhbw %%mm1, %%mm5;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
  204. "psllw $3, %%mm7;" /* 0_0_0_0 0_g7g6g5 g4g3g2_0 0_0_0_0 */
  205. "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
  206. "por %%mm7, %%mm5;" /* r7r6r5r4 r3g7g6g5 g4g3g2b7 b6b5b4b3 */
  207. "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */
  208. MOVNTQ " %%mm5, 8 (%1);" /* store pixel 4-7 */
  209. YUV2RGB_ENDLOOP(2)
  210. YUV2RGB_OPERANDS
  211. }
  212. static inline int RENAME(yuv420_rgb15)(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
  213. int srcSliceH, uint8_t* dst[], int dstStride[])
  214. {
  215. int y, h_size;
  216. YUV422_UNSHIFT
  217. YUV2RGB_LOOP(2)
  218. c->blueDither= ff_dither8[y&1];
  219. c->greenDither= ff_dither8[y&1];
  220. c->redDither= ff_dither8[(y+1)&1];
  221. YUV2RGB_INIT
  222. YUV2RGB
  223. #ifdef DITHER1XBPP
  224. "paddusb "BLUE_DITHER"(%4), %%mm0 \n\t"
  225. "paddusb "GREEN_DITHER"(%4), %%mm2 \n\t"
  226. "paddusb "RED_DITHER"(%4), %%mm1 \n\t"
  227. #endif
  228. /* mask unneeded bits off */
  229. "pand "MANGLE(mmx_redmask)", %%mm0;" /* b7b6b5b4 b3_0_0_0 b7b6b5b4 b3_0_0_0 */
  230. "pand "MANGLE(mmx_redmask)", %%mm2;" /* g7g6g5g4 g3_0_0_0 g7g6g5g4 g3_0_0_0 */
  231. "pand "MANGLE(mmx_redmask)", %%mm1;" /* r7r6r5r4 r3_0_0_0 r7r6r5r4 r3_0_0_0 */
  232. "psrlw $3, %%mm0;" /* 0_0_0_b7 b6b5b4b3 0_0_0_b7 b6b5b4b3 */
  233. "psrlw $1, %%mm1;" /* 0_r7r6r5 r4r3_0_0 0_r7r6r5 r4r3_0_0 */
  234. "pxor %%mm4, %%mm4;" /* zero mm4 */
  235. "movq %%mm0, %%mm5;" /* Copy B7-B0 */
  236. "movq %%mm2, %%mm7;" /* Copy G7-G0 */
  237. /* convert RGB24 plane to RGB16 pack for pixel 0-3 */
  238. "punpcklbw %%mm4, %%mm2;" /* 0_0_0_0 0_0_0_0 g7g6g5g4 g3_0_0_0 */
  239. "punpcklbw %%mm1, %%mm0;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
  240. "psllw $2, %%mm2;" /* 0_0_0_0 0_0_g7g6 g5g4g3_0 0_0_0_0 */
  241. "por %%mm2, %%mm0;" /* 0_r7r6r5 r4r3g7g6 g5g4g3b7 b6b5b4b3 */
  242. "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */
  243. MOVNTQ " %%mm0, (%1);" /* store pixel 0-3 */
  244. /* convert RGB24 plane to RGB16 pack for pixel 0-3 */
  245. "punpckhbw %%mm4, %%mm7;" /* 0_0_0_0 0_0_0_0 0_g7g6g5 g4g3_0_0 */
  246. "punpckhbw %%mm1, %%mm5;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
  247. "psllw $2, %%mm7;" /* 0_0_0_0 0_0_g7g6 g5g4g3_0 0_0_0_0 */
  248. "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
  249. "por %%mm7, %%mm5;" /* 0_r7r6r5 r4r3g7g6 g5g4g3b7 b6b5b4b3 */
  250. "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */
  251. MOVNTQ " %%mm5, 8 (%1);" /* store pixel 4-7 */
  252. YUV2RGB_ENDLOOP(2)
  253. YUV2RGB_OPERANDS
  254. }
  255. #undef RGB_PLANAR2PACKED24
  256. #if HAVE_MMX2
  257. #define RGB_PLANAR2PACKED24(red, blue)\
  258. "movq "MANGLE(ff_M24A)", %%mm4 \n\t"\
  259. "movq "MANGLE(ff_M24C)", %%mm7 \n\t"\
  260. "pshufw $0x50, %%mm"blue", %%mm5 \n\t" /* B3 B2 B3 B2 B1 B0 B1 B0 */\
  261. "pshufw $0x50, %%mm2, %%mm3 \n\t" /* G3 G2 G3 G2 G1 G0 G1 G0 */\
  262. "pshufw $0x00, %%mm"red", %%mm6 \n\t" /* R1 R0 R1 R0 R1 R0 R1 R0 */\
  263. \
  264. "pand %%mm4, %%mm5 \n\t" /* B2 B1 B0 */\
  265. "pand %%mm4, %%mm3 \n\t" /* G2 G1 G0 */\
  266. "pand %%mm7, %%mm6 \n\t" /* R1 R0 */\
  267. \
  268. "psllq $8, %%mm3 \n\t" /* G2 G1 G0 */\
  269. "por %%mm5, %%mm6 \n\t"\
  270. "por %%mm3, %%mm6 \n\t"\
  271. MOVNTQ" %%mm6, (%1) \n\t"\
  272. \
  273. "psrlq $8, %%mm2 \n\t" /* 00 G7 G6 G5 G4 G3 G2 G1 */\
  274. "pshufw $0xA5, %%mm"blue", %%mm5\n\t" /* B5 B4 B5 B4 B3 B2 B3 B2 */\
  275. "pshufw $0x55, %%mm2, %%mm3 \n\t" /* G4 G3 G4 G3 G4 G3 G4 G3 */\
  276. "pshufw $0xA5, %%mm"red", %%mm6 \n\t" /* R5 R4 R5 R4 R3 R2 R3 R2 */\
  277. \
  278. "pand "MANGLE(ff_M24B)", %%mm5 \n\t" /* B5 B4 B3 */\
  279. "pand %%mm7, %%mm3 \n\t" /* G4 G3 */\
  280. "pand %%mm4, %%mm6 \n\t" /* R4 R3 R2 */\
  281. \
  282. "por %%mm5, %%mm3 \n\t" /* B5 G4 B4 G3 B3 */\
  283. "por %%mm3, %%mm6 \n\t"\
  284. MOVNTQ" %%mm6, 8(%1) \n\t"\
  285. \
  286. "pshufw $0xFF, %%mm"blue", %%mm5\n\t" /* B7 B6 B7 B6 B7 B6 B6 B7 */\
  287. "pshufw $0xFA, %%mm2, %%mm3 \n\t" /* 00 G7 00 G7 G6 G5 G6 G5 */\
  288. "pshufw $0xFA, %%mm"red", %%mm6 \n\t" /* R7 R6 R7 R6 R5 R4 R5 R4 */\
  289. "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */\
  290. \
  291. "pand %%mm7, %%mm5 \n\t" /* B7 B6 */\
  292. "pand %%mm4, %%mm3 \n\t" /* G7 G6 G5 */\
  293. "pand "MANGLE(ff_M24B)", %%mm6 \n\t" /* R7 R6 R5 */\
  294. "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */\
  295. \
  296. "por %%mm5, %%mm3 \n\t"\
  297. "por %%mm3, %%mm6 \n\t"\
  298. MOVNTQ" %%mm6, 16(%1) \n\t"\
  299. "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */\
  300. "pxor %%mm4, %%mm4 \n\t"
  301. #else
  302. #define RGB_PLANAR2PACKED24(red, blue)\
  303. "pxor %%mm4, %%mm4 \n\t"\
  304. "movq %%mm"blue", %%mm5\n\t" /* B */\
  305. "movq %%mm"red", %%mm6 \n\t" /* R */\
  306. "punpcklbw %%mm2, %%mm"blue"\n\t" /* GBGBGBGB 0 */\
  307. "punpcklbw %%mm4, %%mm"red" \n\t" /* 0R0R0R0R 0 */\
  308. "punpckhbw %%mm2, %%mm5 \n\t" /* GBGBGBGB 2 */\
  309. "punpckhbw %%mm4, %%mm6 \n\t" /* 0R0R0R0R 2 */\
  310. "movq %%mm"blue", %%mm7\n\t" /* GBGBGBGB 0 */\
  311. "movq %%mm5, %%mm3 \n\t" /* GBGBGBGB 2 */\
  312. "punpcklwd %%mm"red", %%mm7 \n\t" /* 0RGB0RGB 0 */\
  313. "punpckhwd %%mm"red", %%mm"blue"\n\t" /* 0RGB0RGB 1 */\
  314. "punpcklwd %%mm6, %%mm5 \n\t" /* 0RGB0RGB 2 */\
  315. "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\
  316. \
  317. "movq %%mm7, %%mm2 \n\t" /* 0RGB0RGB 0 */\
  318. "movq %%mm"blue", %%mm6\n\t" /* 0RGB0RGB 1 */\
  319. "movq %%mm5, %%mm"red" \n\t" /* 0RGB0RGB 2 */\
  320. "movq %%mm3, %%mm4 \n\t" /* 0RGB0RGB 3 */\
  321. \
  322. "psllq $40, %%mm7 \n\t" /* RGB00000 0 */\
  323. "psllq $40, %%mm"blue"\n\t" /* RGB00000 1 */\
  324. "psllq $40, %%mm5 \n\t" /* RGB00000 2 */\
  325. "psllq $40, %%mm3 \n\t" /* RGB00000 3 */\
  326. \
  327. "punpckhdq %%mm2, %%mm7 \n\t" /* 0RGBRGB0 0 */\
  328. "punpckhdq %%mm6, %%mm"blue"\n\t" /* 0RGBRGB0 1 */\
  329. "punpckhdq %%mm"red", %%mm5 \n\t" /* 0RGBRGB0 2 */\
  330. "punpckhdq %%mm4, %%mm3 \n\t" /* 0RGBRGB0 3 */\
  331. \
  332. "psrlq $8, %%mm7 \n\t" /* 00RGBRGB 0 */\
  333. "movq %%mm"blue", %%mm6\n\t" /* 0RGBRGB0 1 */\
  334. "psllq $40, %%mm"blue"\n\t" /* GB000000 1 */\
  335. "por %%mm"blue", %%mm7\n\t" /* GBRGBRGB 0 */\
  336. MOVNTQ" %%mm7, (%1) \n\t"\
  337. \
  338. "psrlq $24, %%mm6 \n\t" /* 0000RGBR 1 */\
  339. "movq %%mm5, %%mm"red" \n\t" /* 0RGBRGB0 2 */\
  340. "psllq $24, %%mm5 \n\t" /* BRGB0000 2 */\
  341. "por %%mm5, %%mm6 \n\t" /* BRGBRGBR 1 */\
  342. MOVNTQ" %%mm6, 8(%1) \n\t"\
  343. \
  344. "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */\
  345. \
  346. "psrlq $40, %%mm"red" \n\t" /* 000000RG 2 */\
  347. "psllq $8, %%mm3 \n\t" /* RGBRGB00 3 */\
  348. "por %%mm3, %%mm"red" \n\t" /* RGBRGBRG 2 */\
  349. MOVNTQ" %%mm"red", 16(%1)\n\t"\
  350. \
  351. "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */\
  352. "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */\
  353. "pxor %%mm4, %%mm4 \n\t"
  354. #endif
  355. static inline int RENAME(yuv420_rgb24)(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
  356. int srcSliceH, uint8_t* dst[], int dstStride[])
  357. {
  358. int y, h_size;
  359. YUV422_UNSHIFT
  360. YUV2RGB_LOOP(3)
  361. YUV2RGB_INIT
  362. YUV2RGB
  363. /* mm0=B, %%mm2=G, %%mm1=R */
  364. RGB_PLANAR2PACKED24("0", "1")
  365. YUV2RGB_ENDLOOP(3)
  366. YUV2RGB_OPERANDS
  367. }
  368. static inline int RENAME(yuv420_bgr24)(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
  369. int srcSliceH, uint8_t* dst[], int dstStride[])
  370. {
  371. int y, h_size;
  372. YUV422_UNSHIFT
  373. YUV2RGB_LOOP(3)
  374. YUV2RGB_INIT
  375. YUV2RGB
  376. /* mm0=B, %%mm2=G, %%mm1=R */
  377. RGB_PLANAR2PACKED24("1", "0")
  378. YUV2RGB_ENDLOOP(3)
  379. YUV2RGB_OPERANDS
  380. }
  381. /*
  382. RGB_PLANAR2PACKED32(red,green,blue,alpha)
  383. convert RGB plane to RGB packed format
  384. macro parameters specify the output color channel order:
  385. RGB_PLANAR2PACKED32(REG_RED, REG_GREEN, REG_BLUE, REG_ALPHA) for RGBA output,
  386. RGB_PLANAR2PACKED32(REG_BLUE, REG_GREEN, REG_RED, REG_ALPHA) for BGRA output,
  387. RGB_PLANAR2PACKED32(REG_ALPHA,REG_BLUE, REG_GREEN,REG_RED) for ABGR output,
  388. etc.
  389. */
  390. #define REG_BLUE "0"
  391. #define REG_RED "1"
  392. #define REG_GREEN "2"
  393. #define REG_ALPHA "3"
  394. #define RGB_PLANAR2PACKED32(red,green,blue,alpha) \
  395. /* convert RGB plane to RGB packed format, \
  396. mm0 -> B, mm1 -> R, mm2 -> G, mm3 -> A, \
  397. mm4 -> GB, mm5 -> AR pixel 4-7, \
  398. mm6 -> GB, mm7 -> AR pixel 0-3 */ \
  399. "movq %%mm" blue ", %%mm6;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \
  400. "movq %%mm" red ", %%mm7;" /* R7 R6 R5 R4 R3 R2 R1 R0 */ \
  401. \
  402. "movq %%mm" blue ", %%mm4;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \
  403. "movq %%mm" red ", %%mm5;" /* R7 R6 R5 R4 R3 R2 R1 R0 */ \
  404. \
  405. "punpcklbw %%mm" green ", %%mm6;" /* G3 B3 G2 B2 G1 B1 G0 B0 */ \
  406. "punpcklbw %%mm" alpha ", %%mm7;" /* A3 R3 A2 R2 A1 R1 A0 R0 */ \
  407. \
  408. "punpcklwd %%mm7, %%mm6;" /* A1 R1 B1 G1 A0 R0 B0 G0 */ \
  409. MOVNTQ " %%mm6, (%1);" /* Store ARGB1 ARGB0 */ \
  410. \
  411. "movq %%mm" blue ", %%mm6;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \
  412. "punpcklbw %%mm" green ", %%mm6;" /* G3 B3 G2 B2 G1 B1 G0 B0 */ \
  413. \
  414. "punpckhwd %%mm7, %%mm6;" /* A3 R3 G3 B3 A2 R2 B3 G2 */ \
  415. MOVNTQ " %%mm6, 8 (%1);" /* Store ARGB3 ARGB2 */ \
  416. \
  417. "punpckhbw %%mm" green ", %%mm4;" /* G7 B7 G6 B6 G5 B5 G4 B4 */ \
  418. "punpckhbw %%mm" alpha ", %%mm5;" /* A7 R7 A6 R6 A5 R5 A4 R4 */ \
  419. \
  420. "punpcklwd %%mm5, %%mm4;" /* A5 R5 B5 G5 A4 R4 B4 G4 */ \
  421. MOVNTQ " %%mm4, 16 (%1);" /* Store ARGB5 ARGB4 */ \
  422. \
  423. "movq %%mm" blue ", %%mm4;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \
  424. "punpckhbw %%mm" green ", %%mm4;" /* G7 B7 G6 B6 G5 B5 G4 B4 */ \
  425. \
  426. "punpckhwd %%mm5, %%mm4;" /* A7 R7 G7 B7 A6 R6 B6 G6 */ \
  427. MOVNTQ " %%mm4, 24 (%1);" /* Store ARGB7 ARGB6 */ \
  428. \
  429. "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */ \
  430. "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */ \
  431. \
  432. "pxor %%mm4, %%mm4;" /* zero mm4 */ \
  433. "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */ \
  434. static inline int RENAME(yuv420_rgb32)(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
  435. int srcSliceH, uint8_t* dst[], int dstStride[])
  436. {
  437. int y, h_size;
  438. YUV422_UNSHIFT
  439. YUV2RGB_LOOP(4)
  440. YUV2RGB_INIT
  441. YUV2RGB
  442. "pcmpeqd %%mm3, %%mm3;" /* fill mm3 */
  443. RGB_PLANAR2PACKED32(REG_RED,REG_GREEN,REG_BLUE,REG_ALPHA)
  444. YUV2RGB_ENDLOOP(4)
  445. YUV2RGB_OPERANDS
  446. }
  447. static inline int RENAME(yuva420_rgb32)(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
  448. int srcSliceH, uint8_t* dst[], int dstStride[])
  449. {
  450. #if HAVE_7REGS
  451. int y, h_size;
  452. YUV2RGB_LOOP(4)
  453. const uint8_t *pa = src[3] + y*srcStride[3];
  454. YUV2RGB_INIT
  455. YUV2RGB
  456. "movq (%6, %0, 2), %%mm3;" /* Load 8 A A7 A6 A5 A4 A3 A2 A1 A0 */
  457. RGB_PLANAR2PACKED32(REG_RED,REG_GREEN,REG_BLUE,REG_ALPHA)
  458. YUV2RGB_ENDLOOP(4)
  459. YUV2RGB_OPERANDS_ALPHA
  460. #endif
  461. }
  462. static inline int RENAME(yuv420_bgr32)(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
  463. int srcSliceH, uint8_t* dst[], int dstStride[])
  464. {
  465. int y, h_size;
  466. YUV422_UNSHIFT
  467. YUV2RGB_LOOP(4)
  468. YUV2RGB_INIT
  469. YUV2RGB
  470. "pcmpeqd %%mm3, %%mm3;" /* fill mm3 */
  471. RGB_PLANAR2PACKED32(REG_BLUE,REG_GREEN,REG_RED,REG_ALPHA)
  472. YUV2RGB_ENDLOOP(4)
  473. YUV2RGB_OPERANDS
  474. }
  475. static inline int RENAME(yuva420_bgr32)(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSliceY,
  476. int srcSliceH, uint8_t* dst[], int dstStride[])
  477. {
  478. #if HAVE_7REGS
  479. int y, h_size;
  480. YUV2RGB_LOOP(4)
  481. const uint8_t *pa = src[3] + y*srcStride[3];
  482. YUV2RGB_INIT
  483. YUV2RGB
  484. "movq (%6, %0, 2), %%mm3;" /* Load 8 A A7 A6 A5 A4 A3 A2 A1 A0 */
  485. RGB_PLANAR2PACKED32(REG_BLUE,REG_GREEN,REG_RED,REG_ALPHA)
  486. YUV2RGB_ENDLOOP(4)
  487. YUV2RGB_OPERANDS_ALPHA
  488. #endif
  489. }