yuv2rgb_template.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  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. uint8_t *py = src[0] + y*srcStride[0]; \
  131. uint8_t *pu = src[1] + (y>>1)*srcStride[1]; \
  132. uint8_t *pv = src[2] + (y>>1)*srcStride[2]; \
  133. long 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. \
  157. : "+r" (index), "+r" (image) \
  158. : "r" (pu - index), "r" (pv - index), "r"(&c->redDither), "r" (py - 2*index) \
  159. ); \
  160. } \
  161. __asm__ volatile (EMMS); \
  162. return srcSliceH; \
  163. static inline int RENAME(yuv420_rgb16)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
  164. int srcSliceH, uint8_t* dst[], int dstStride[]){
  165. int y, h_size;
  166. YUV422_UNSHIFT
  167. YUV2RGB_LOOP(2)
  168. c->blueDither= ff_dither8[y&1];
  169. c->greenDither= ff_dither4[y&1];
  170. c->redDither= ff_dither8[(y+1)&1];
  171. YUV2RGB_INIT
  172. YUV2RGB
  173. #ifdef DITHER1XBPP
  174. "paddusb "BLUE_DITHER"(%4), %%mm0;"
  175. "paddusb "GREEN_DITHER"(%4), %%mm2;"
  176. "paddusb "RED_DITHER"(%4), %%mm1;"
  177. #endif
  178. /* mask unneeded bits off */
  179. "pand "MANGLE(mmx_redmask)", %%mm0;" /* b7b6b5b4 b3_0_0_0 b7b6b5b4 b3_0_0_0 */
  180. "pand "MANGLE(mmx_grnmask)", %%mm2;" /* g7g6g5g4 g3g2_0_0 g7g6g5g4 g3g2_0_0 */
  181. "pand "MANGLE(mmx_redmask)", %%mm1;" /* r7r6r5r4 r3_0_0_0 r7r6r5r4 r3_0_0_0 */
  182. "psrlw $3, %%mm0;" /* 0_0_0_b7 b6b5b4b3 0_0_0_b7 b6b5b4b3 */
  183. "pxor %%mm4, %%mm4;" /* zero mm4 */
  184. "movq %%mm0, %%mm5;" /* Copy B7-B0 */
  185. "movq %%mm2, %%mm7;" /* Copy G7-G0 */
  186. /* convert RGB24 plane to RGB16 pack for pixel 0-3 */
  187. "punpcklbw %%mm4, %%mm2;" /* 0_0_0_0 0_0_0_0 g7g6g5g4 g3g2_0_0 */
  188. "punpcklbw %%mm1, %%mm0;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
  189. "psllw $3, %%mm2;" /* 0_0_0_0 0_g7g6g5 g4g3g2_0 0_0_0_0 */
  190. "por %%mm2, %%mm0;" /* r7r6r5r4 r3g7g6g5 g4g3g2b7 b6b5b4b3 */
  191. "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */
  192. MOVNTQ " %%mm0, (%1);" /* store pixel 0-3 */
  193. /* convert RGB24 plane to RGB16 pack for pixel 0-3 */
  194. "punpckhbw %%mm4, %%mm7;" /* 0_0_0_0 0_0_0_0 g7g6g5g4 g3g2_0_0 */
  195. "punpckhbw %%mm1, %%mm5;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
  196. "psllw $3, %%mm7;" /* 0_0_0_0 0_g7g6g5 g4g3g2_0 0_0_0_0 */
  197. "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
  198. "por %%mm7, %%mm5;" /* r7r6r5r4 r3g7g6g5 g4g3g2b7 b6b5b4b3 */
  199. "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */
  200. MOVNTQ " %%mm5, 8 (%1);" /* store pixel 4-7 */
  201. YUV2RGB_ENDLOOP(2)
  202. }
  203. static inline int RENAME(yuv420_rgb15)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
  204. int srcSliceH, uint8_t* dst[], int dstStride[]){
  205. int y, h_size;
  206. YUV422_UNSHIFT
  207. YUV2RGB_LOOP(2)
  208. c->blueDither= ff_dither8[y&1];
  209. c->greenDither= ff_dither8[y&1];
  210. c->redDither= ff_dither8[(y+1)&1];
  211. YUV2RGB_INIT
  212. YUV2RGB
  213. #ifdef DITHER1XBPP
  214. "paddusb "BLUE_DITHER"(%4), %%mm0 \n\t"
  215. "paddusb "GREEN_DITHER"(%4), %%mm2 \n\t"
  216. "paddusb "RED_DITHER"(%4), %%mm1 \n\t"
  217. #endif
  218. /* mask unneeded bits off */
  219. "pand "MANGLE(mmx_redmask)", %%mm0;" /* b7b6b5b4 b3_0_0_0 b7b6b5b4 b3_0_0_0 */
  220. "pand "MANGLE(mmx_redmask)", %%mm2;" /* g7g6g5g4 g3_0_0_0 g7g6g5g4 g3_0_0_0 */
  221. "pand "MANGLE(mmx_redmask)", %%mm1;" /* r7r6r5r4 r3_0_0_0 r7r6r5r4 r3_0_0_0 */
  222. "psrlw $3, %%mm0;" /* 0_0_0_b7 b6b5b4b3 0_0_0_b7 b6b5b4b3 */
  223. "psrlw $1, %%mm1;" /* 0_r7r6r5 r4r3_0_0 0_r7r6r5 r4r3_0_0 */
  224. "pxor %%mm4, %%mm4;" /* zero mm4 */
  225. "movq %%mm0, %%mm5;" /* Copy B7-B0 */
  226. "movq %%mm2, %%mm7;" /* Copy G7-G0 */
  227. /* convert RGB24 plane to RGB16 pack for pixel 0-3 */
  228. "punpcklbw %%mm4, %%mm2;" /* 0_0_0_0 0_0_0_0 g7g6g5g4 g3_0_0_0 */
  229. "punpcklbw %%mm1, %%mm0;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
  230. "psllw $2, %%mm2;" /* 0_0_0_0 0_0_g7g6 g5g4g3_0 0_0_0_0 */
  231. "por %%mm2, %%mm0;" /* 0_r7r6r5 r4r3g7g6 g5g4g3b7 b6b5b4b3 */
  232. "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */
  233. MOVNTQ " %%mm0, (%1);" /* store pixel 0-3 */
  234. /* convert RGB24 plane to RGB16 pack for pixel 0-3 */
  235. "punpckhbw %%mm4, %%mm7;" /* 0_0_0_0 0_0_0_0 0_g7g6g5 g4g3_0_0 */
  236. "punpckhbw %%mm1, %%mm5;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
  237. "psllw $2, %%mm7;" /* 0_0_0_0 0_0_g7g6 g5g4g3_0 0_0_0_0 */
  238. "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
  239. "por %%mm7, %%mm5;" /* 0_r7r6r5 r4r3g7g6 g5g4g3b7 b6b5b4b3 */
  240. "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */
  241. MOVNTQ " %%mm5, 8 (%1);" /* store pixel 4-7 */
  242. YUV2RGB_ENDLOOP(2)
  243. }
  244. static inline int RENAME(yuv420_rgb24)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
  245. int srcSliceH, uint8_t* dst[], int dstStride[]){
  246. int y, h_size;
  247. YUV422_UNSHIFT
  248. YUV2RGB_LOOP(3)
  249. YUV2RGB_INIT
  250. YUV2RGB
  251. /* mm0=B, %%mm2=G, %%mm1=R */
  252. #if HAVE_MMX2
  253. "movq "MANGLE(ff_M24A)", %%mm4 \n\t"
  254. "movq "MANGLE(ff_M24C)", %%mm7 \n\t"
  255. "pshufw $0x50, %%mm0, %%mm5 \n\t" /* B3 B2 B3 B2 B1 B0 B1 B0 */
  256. "pshufw $0x50, %%mm2, %%mm3 \n\t" /* G3 G2 G3 G2 G1 G0 G1 G0 */
  257. "pshufw $0x00, %%mm1, %%mm6 \n\t" /* R1 R0 R1 R0 R1 R0 R1 R0 */
  258. "pand %%mm4, %%mm5 \n\t" /* B2 B1 B0 */
  259. "pand %%mm4, %%mm3 \n\t" /* G2 G1 G0 */
  260. "pand %%mm7, %%mm6 \n\t" /* R1 R0 */
  261. "psllq $8, %%mm3 \n\t" /* G2 G1 G0 */
  262. "por %%mm5, %%mm6 \n\t"
  263. "por %%mm3, %%mm6 \n\t"
  264. MOVNTQ" %%mm6, (%1) \n\t"
  265. "psrlq $8, %%mm2 \n\t" /* 00 G7 G6 G5 G4 G3 G2 G1 */
  266. "pshufw $0xA5, %%mm0, %%mm5 \n\t" /* B5 B4 B5 B4 B3 B2 B3 B2 */
  267. "pshufw $0x55, %%mm2, %%mm3 \n\t" /* G4 G3 G4 G3 G4 G3 G4 G3 */
  268. "pshufw $0xA5, %%mm1, %%mm6 \n\t" /* R5 R4 R5 R4 R3 R2 R3 R2 */
  269. "pand "MANGLE(ff_M24B)", %%mm5 \n\t" /* B5 B4 B3 */
  270. "pand %%mm7, %%mm3 \n\t" /* G4 G3 */
  271. "pand %%mm4, %%mm6 \n\t" /* R4 R3 R2 */
  272. "por %%mm5, %%mm3 \n\t" /* B5 G4 B4 G3 B3 */
  273. "por %%mm3, %%mm6 \n\t"
  274. MOVNTQ" %%mm6, 8(%1) \n\t"
  275. "pshufw $0xFF, %%mm0, %%mm5 \n\t" /* B7 B6 B7 B6 B7 B6 B6 B7 */
  276. "pshufw $0xFA, %%mm2, %%mm3 \n\t" /* 00 G7 00 G7 G6 G5 G6 G5 */
  277. "pshufw $0xFA, %%mm1, %%mm6 \n\t" /* R7 R6 R7 R6 R5 R4 R5 R4 */
  278. "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
  279. "pand %%mm7, %%mm5 \n\t" /* B7 B6 */
  280. "pand %%mm4, %%mm3 \n\t" /* G7 G6 G5 */
  281. "pand "MANGLE(ff_M24B)", %%mm6 \n\t" /* R7 R6 R5 */
  282. "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */
  283. \
  284. "por %%mm5, %%mm3 \n\t"
  285. "por %%mm3, %%mm6 \n\t"
  286. MOVNTQ" %%mm6, 16(%1) \n\t"
  287. "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */
  288. "pxor %%mm4, %%mm4 \n\t"
  289. #else
  290. "pxor %%mm4, %%mm4 \n\t"
  291. "movq %%mm0, %%mm5 \n\t" /* B */
  292. "movq %%mm1, %%mm6 \n\t" /* R */
  293. "punpcklbw %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */
  294. "punpcklbw %%mm4, %%mm1 \n\t" /* 0R0R0R0R 0 */
  295. "punpckhbw %%mm2, %%mm5 \n\t" /* GBGBGBGB 2 */
  296. "punpckhbw %%mm4, %%mm6 \n\t" /* 0R0R0R0R 2 */
  297. "movq %%mm0, %%mm7 \n\t" /* GBGBGBGB 0 */
  298. "movq %%mm5, %%mm3 \n\t" /* GBGBGBGB 2 */
  299. "punpcklwd %%mm1, %%mm7 \n\t" /* 0RGB0RGB 0 */
  300. "punpckhwd %%mm1, %%mm0 \n\t" /* 0RGB0RGB 1 */
  301. "punpcklwd %%mm6, %%mm5 \n\t" /* 0RGB0RGB 2 */
  302. "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */
  303. "movq %%mm7, %%mm2 \n\t" /* 0RGB0RGB 0 */
  304. "movq %%mm0, %%mm6 \n\t" /* 0RGB0RGB 1 */
  305. "movq %%mm5, %%mm1 \n\t" /* 0RGB0RGB 2 */
  306. "movq %%mm3, %%mm4 \n\t" /* 0RGB0RGB 3 */
  307. "psllq $40, %%mm7 \n\t" /* RGB00000 0 */
  308. "psllq $40, %%mm0 \n\t" /* RGB00000 1 */
  309. "psllq $40, %%mm5 \n\t" /* RGB00000 2 */
  310. "psllq $40, %%mm3 \n\t" /* RGB00000 3 */
  311. "punpckhdq %%mm2, %%mm7 \n\t" /* 0RGBRGB0 0 */
  312. "punpckhdq %%mm6, %%mm0 \n\t" /* 0RGBRGB0 1 */
  313. "punpckhdq %%mm1, %%mm5 \n\t" /* 0RGBRGB0 2 */
  314. "punpckhdq %%mm4, %%mm3 \n\t" /* 0RGBRGB0 3 */
  315. "psrlq $8, %%mm7 \n\t" /* 00RGBRGB 0 */
  316. "movq %%mm0, %%mm6 \n\t" /* 0RGBRGB0 1 */
  317. "psllq $40, %%mm0 \n\t" /* GB000000 1 */
  318. "por %%mm0, %%mm7 \n\t" /* GBRGBRGB 0 */
  319. MOVNTQ" %%mm7, (%1) \n\t"
  320. "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
  321. "psrlq $24, %%mm6 \n\t" /* 0000RGBR 1 */
  322. "movq %%mm5, %%mm1 \n\t" /* 0RGBRGB0 2 */
  323. "psllq $24, %%mm5 \n\t" /* BRGB0000 2 */
  324. "por %%mm5, %%mm6 \n\t" /* BRGBRGBR 1 */
  325. MOVNTQ" %%mm6, 8(%1) \n\t"
  326. "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */
  327. "psrlq $40, %%mm1 \n\t" /* 000000RG 2 */
  328. "psllq $8, %%mm3 \n\t" /* RGBRGB00 3 */
  329. "por %%mm3, %%mm1 \n\t" /* RGBRGBRG 2 */
  330. MOVNTQ" %%mm1, 16(%1) \n\t"
  331. "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */
  332. "pxor %%mm4, %%mm4 \n\t"
  333. #endif
  334. YUV2RGB_ENDLOOP(3)
  335. }
  336. #define RGB_PLANAR2PACKED32 \
  337. /* convert RGB plane to RGB packed format, \
  338. mm0 -> B, mm1 -> R, mm2 -> G, mm3 -> A, \
  339. mm4 -> GB, mm5 -> AR pixel 4-7, \
  340. mm6 -> GB, mm7 -> AR pixel 0-3 */ \
  341. "movq %%mm0, %%mm6;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \
  342. "movq %%mm1, %%mm7;" /* R7 R6 R5 R4 R3 R2 R1 R0 */ \
  343. \
  344. "movq %%mm0, %%mm4;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \
  345. "movq %%mm1, %%mm5;" /* R7 R6 R5 R4 R3 R2 R1 R0 */ \
  346. \
  347. "punpcklbw %%mm2, %%mm6;" /* G3 B3 G2 B2 G1 B1 G0 B0 */ \
  348. "punpcklbw %%mm3, %%mm7;" /* A3 R3 A2 R2 A1 R1 A0 R0 */ \
  349. \
  350. "punpcklwd %%mm7, %%mm6;" /* A1 R1 B1 G1 A0 R0 B0 G0 */ \
  351. MOVNTQ " %%mm6, (%1);" /* Store ARGB1 ARGB0 */ \
  352. \
  353. "movq %%mm0, %%mm6;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \
  354. "punpcklbw %%mm2, %%mm6;" /* G3 B3 G2 B2 G1 B1 G0 B0 */ \
  355. \
  356. "punpckhwd %%mm7, %%mm6;" /* A3 R3 G3 B3 A2 R2 B3 G2 */ \
  357. MOVNTQ " %%mm6, 8 (%1);" /* Store ARGB3 ARGB2 */ \
  358. \
  359. "punpckhbw %%mm2, %%mm4;" /* G7 B7 G6 B6 G5 B5 G4 B4 */ \
  360. "punpckhbw %%mm3, %%mm5;" /* A7 R7 A6 R6 A5 R5 A4 R4 */ \
  361. \
  362. "punpcklwd %%mm5, %%mm4;" /* A5 R5 B5 G5 A4 R4 B4 G4 */ \
  363. MOVNTQ " %%mm4, 16 (%1);" /* Store ARGB5 ARGB4 */ \
  364. \
  365. "movq %%mm0, %%mm4;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \
  366. "punpckhbw %%mm2, %%mm4;" /* G7 B7 G6 B6 G5 B5 G4 B4 */ \
  367. \
  368. "punpckhwd %%mm5, %%mm4;" /* A7 R7 G7 B7 A6 R6 B6 G6 */ \
  369. MOVNTQ " %%mm4, 24 (%1);" /* Store ARGB7 ARGB6 */ \
  370. \
  371. "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */ \
  372. "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */ \
  373. \
  374. "pxor %%mm4, %%mm4;" /* zero mm4 */ \
  375. "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */ \
  376. static inline int RENAME(yuv420_rgb32)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
  377. int srcSliceH, uint8_t* dst[], int dstStride[]){
  378. int y, h_size;
  379. YUV422_UNSHIFT
  380. YUV2RGB_LOOP(4)
  381. YUV2RGB_INIT
  382. YUV2RGB
  383. "pcmpeqd %%mm3, %%mm3;" /* fill mm3 */
  384. RGB_PLANAR2PACKED32
  385. YUV2RGB_ENDLOOP(4)
  386. }