Mercurial > mplayer.hg
annotate libswscale/yuv2rgb_template.c @ 28971:b8e356a9dbb1
Allocate executable memory with VirtualAlloc() in Windows.
author | ramiro |
---|---|
date | Thu, 19 Mar 2009 21:52:44 +0000 |
parents | e538af2c69c1 |
children | bab0430f2e59 |
rev | line source |
---|---|
18861 | 1 /* |
27158 | 2 * yuv2rgb_mmx.c, software YUV to RGB converter with Intel MMX "technology" |
18861 | 3 * |
28409
303467269af1
cosmetics: Remove period after copyright statement non-sentence.
diego
parents:
28323
diff
changeset
|
4 * Copyright (C) 2000, Silicon Integrated System Corp |
18861 | 5 * |
6 * Author: Olie Lho <ollie@sis.com.tw> | |
7 * | |
23701 | 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 * | |
18861 | 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 | |
21976 | 25 * along with mpeg2dec; if not, write to the Free Software |
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
18861 | 27 */ |
28 | |
29 #undef MOVNTQ | |
30 #undef EMMS | |
31 #undef SFENCE | |
32 | |
28323
99c49467ebbc
HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.
diego
parents:
28276
diff
changeset
|
33 #if HAVE_AMD3DNOW |
27782 | 34 /* On K6 femms is faster than emms. On K7 femms is directly mapped to emms. */ |
18861 | 35 #define EMMS "femms" |
36 #else | |
37 #define EMMS "emms" | |
38 #endif | |
39 | |
28276 | 40 #if HAVE_MMX2 |
18861 | 41 #define MOVNTQ "movntq" |
42 #define SFENCE "sfence" | |
43 #else | |
44 #define MOVNTQ "movq" | |
45 #define SFENCE "/nop" | |
46 #endif | |
47 | |
48 #define YUV2RGB \ | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
49 /* Do the multiply part of the conversion for even and odd pixels, |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
50 register usage: |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
51 mm0 -> Cblue, mm1 -> Cred, mm2 -> Cgreen even pixels, |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
52 mm3 -> Cblue, mm4 -> Cred, mm5 -> Cgreen odd pixels, |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
53 mm6 -> Y even, mm7 -> Y odd */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
54 /* convert the chroma part */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
55 "punpcklbw %%mm4, %%mm0;" /* scatter 4 Cb 00 u3 00 u2 00 u1 00 u0 */ \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
56 "punpcklbw %%mm4, %%mm1;" /* scatter 4 Cr 00 v3 00 v2 00 v1 00 v0 */ \ |
18861 | 57 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
58 "psllw $3, %%mm0;" /* Promote precision */ \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
59 "psllw $3, %%mm1;" /* Promote precision */ \ |
18861 | 60 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
61 "psubsw "U_OFFSET"(%4), %%mm0;" /* Cb -= 128 */ \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
62 "psubsw "V_OFFSET"(%4), %%mm1;" /* Cr -= 128 */ \ |
18861 | 63 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
64 "movq %%mm0, %%mm2;" /* Copy 4 Cb 00 u3 00 u2 00 u1 00 u0 */ \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
65 "movq %%mm1, %%mm3;" /* Copy 4 Cr 00 v3 00 v2 00 v1 00 v0 */ \ |
18861 | 66 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
67 "pmulhw "UG_COEFF"(%4), %%mm2;" /* Mul Cb with green coeff -> Cb green */ \ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
68 "pmulhw "VG_COEFF"(%4), %%mm3;" /* Mul Cr with green coeff -> Cr green */ \ |
18861 | 69 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
70 "pmulhw "UB_COEFF"(%4), %%mm0;" /* Mul Cb -> Cblue 00 b3 00 b2 00 b1 00 b0 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
71 "pmulhw "VR_COEFF"(%4), %%mm1;" /* Mul Cr -> Cred 00 r3 00 r2 00 r1 00 r0 */\ |
18861 | 72 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
73 "paddsw %%mm3, %%mm2;" /* Cb green + Cr green -> Cgreen */\ |
18861 | 74 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
75 /* convert the luma part */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
76 "movq %%mm6, %%mm7;" /* Copy 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
77 "pand "MANGLE(mmx_00ffw)", %%mm6;" /* get Y even 00 Y6 00 Y4 00 Y2 00 Y0 */\ |
18861 | 78 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
79 "psrlw $8, %%mm7;" /* get Y odd 00 Y7 00 Y5 00 Y3 00 Y1 */\ |
18861 | 80 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
81 "psllw $3, %%mm6;" /* Promote precision */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
82 "psllw $3, %%mm7;" /* Promote precision */\ |
18861 | 83 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
84 "psubw "Y_OFFSET"(%4), %%mm6;" /* Y -= 16 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
85 "psubw "Y_OFFSET"(%4), %%mm7;" /* Y -= 16 */\ |
18861 | 86 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
87 "pmulhw "Y_COEFF"(%4), %%mm6;" /* Mul 4 Y even 00 y6 00 y4 00 y2 00 y0 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
88 "pmulhw "Y_COEFF"(%4), %%mm7;" /* Mul 4 Y odd 00 y7 00 y5 00 y3 00 y1 */\ |
18861 | 89 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
90 /* Do the addition part of the conversion for even and odd pixels, |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
91 register usage: |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
92 mm0 -> Cblue, mm1 -> Cred, mm2 -> Cgreen even pixels, |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
93 mm3 -> Cblue, mm4 -> Cred, mm5 -> Cgreen odd pixels, |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
94 mm6 -> Y even, mm7 -> Y odd */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
95 "movq %%mm0, %%mm3;" /* Copy Cblue */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
96 "movq %%mm1, %%mm4;" /* Copy Cred */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
97 "movq %%mm2, %%mm5;" /* Copy Cgreen */\ |
18861 | 98 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
99 "paddsw %%mm6, %%mm0;" /* Y even + Cblue 00 B6 00 B4 00 B2 00 B0 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
100 "paddsw %%mm7, %%mm3;" /* Y odd + Cblue 00 B7 00 B5 00 B3 00 B1 */\ |
18861 | 101 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
102 "paddsw %%mm6, %%mm1;" /* Y even + Cred 00 R6 00 R4 00 R2 00 R0 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
103 "paddsw %%mm7, %%mm4;" /* Y odd + Cred 00 R7 00 R5 00 R3 00 R1 */\ |
18861 | 104 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
105 "paddsw %%mm6, %%mm2;" /* Y even + Cgreen 00 G6 00 G4 00 G2 00 G0 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
106 "paddsw %%mm7, %%mm5;" /* Y odd + Cgreen 00 G7 00 G5 00 G3 00 G1 */\ |
18861 | 107 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
108 /* Limit RGB even to 0..255 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
109 "packuswb %%mm0, %%mm0;" /* B6 B4 B2 B0 B6 B4 B2 B0 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
110 "packuswb %%mm1, %%mm1;" /* R6 R4 R2 R0 R6 R4 R2 R0 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
111 "packuswb %%mm2, %%mm2;" /* G6 G4 G2 G0 G6 G4 G2 G0 */\ |
18861 | 112 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
113 /* Limit RGB odd to 0..255 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
114 "packuswb %%mm3, %%mm3;" /* B7 B5 B3 B1 B7 B5 B3 B1 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
115 "packuswb %%mm4, %%mm4;" /* R7 R5 R3 R1 R7 R5 R3 R1 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
116 "packuswb %%mm5, %%mm5;" /* G7 G5 G3 G1 G7 G5 G3 G1 */\ |
18861 | 117 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
118 /* Interleave RGB even and odd */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
119 "punpcklbw %%mm3, %%mm0;" /* B7 B6 B5 B4 B3 B2 B1 B0 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
120 "punpcklbw %%mm4, %%mm1;" /* R7 R6 R5 R4 R3 R2 R1 R0 */\ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
121 "punpcklbw %%mm5, %%mm2;" /* G7 G6 G5 G4 G3 G2 G1 G0 */\ |
18861 | 122 |
123 | |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
124 #define YUV422_UNSHIFT \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
125 if(c->srcFormat == PIX_FMT_YUV422P){ \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
126 srcStride[1] *= 2; \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
127 srcStride[2] *= 2; \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
128 } \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
129 |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
130 #define YUV2RGB_LOOP(depth) \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
131 h_size= (c->dstW+7)&~7; \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
132 if(h_size*depth > FFABS(dstStride[0])) h_size-=8; \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
133 \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
134 __asm__ volatile ("pxor %mm4, %mm4;" /* zero mm4 */ ); \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
135 for (y= 0; y<srcSliceH; y++ ) { \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
136 uint8_t *image = dst[0] + (y+srcSliceY)*dstStride[0]; \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
137 uint8_t *py = src[0] + y*srcStride[0]; \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
138 uint8_t *pu = src[1] + (y>>1)*srcStride[1]; \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
139 uint8_t *pv = src[2] + (y>>1)*srcStride[2]; \ |
28957 | 140 x86_reg index= -h_size/2; \ |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
141 |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
142 #define YUV2RGB_INIT \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
143 /* This MMX assembly code deals with a SINGLE scan line at a time, \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
144 * it converts 8 pixels in each iteration. */ \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
145 __asm__ volatile ( \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
146 /* load data for start of next scan line */ \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
147 "movd (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */ \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
148 "movd (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */ \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
149 "movq (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */ \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
150 /* \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
151 ".balign 16 \n\t" \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
152 */ \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
153 "1: \n\t" \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
154 /* No speed difference on my p3@500 with prefetch, \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
155 * if it is faster for anyone with -benchmark then tell me. \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
156 PREFETCH" 64(%0) \n\t" \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
157 PREFETCH" 64(%1) \n\t" \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
158 PREFETCH" 64(%2) \n\t" \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
159 */ \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
160 |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
161 #define YUV2RGB_ENDLOOP(depth) \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
162 "add $"AV_STRINGIFY(depth*8)", %1 \n\t" \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
163 "add $4, %0 \n\t" \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
164 " js 1b \n\t" \ |
28937
f2abbc7bb8f0
Split YUV2RGB operands declaration into a separate macro
sdrik
parents:
28721
diff
changeset
|
165 |
f2abbc7bb8f0
Split YUV2RGB operands declaration into a separate macro
sdrik
parents:
28721
diff
changeset
|
166 #define YUV2RGB_OPERANDS \ |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
167 : "+r" (index), "+r" (image) \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
168 : "r" (pu - index), "r" (pv - index), "r"(&c->redDither), "r" (py - 2*index) \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
169 ); \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
170 } \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
171 __asm__ volatile (EMMS); \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
172 return srcSliceH; \ |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
173 |
18861 | 174 static inline int RENAME(yuv420_rgb16)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
175 int srcSliceH, uint8_t* dst[], int dstStride[]){ |
18861 | 176 int y, h_size; |
177 | |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
178 YUV422_UNSHIFT |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
179 YUV2RGB_LOOP(2) |
18861 | 180 |
27686
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
181 c->blueDither= ff_dither8[y&1]; |
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
182 c->greenDither= ff_dither4[y&1]; |
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
183 c->redDither= ff_dither8[(y+1)&1]; |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
184 |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
185 YUV2RGB_INIT |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
186 YUV2RGB |
18861 | 187 |
188 #ifdef DITHER1XBPP | |
27686
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
189 "paddusb "BLUE_DITHER"(%4), %%mm0;" |
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
190 "paddusb "GREEN_DITHER"(%4), %%mm2;" |
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
191 "paddusb "RED_DITHER"(%4), %%mm1;" |
18861 | 192 #endif |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
193 /* mask unneeded bits off */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
194 "pand "MANGLE(mmx_redmask)", %%mm0;" /* b7b6b5b4 b3_0_0_0 b7b6b5b4 b3_0_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
195 "pand "MANGLE(mmx_grnmask)", %%mm2;" /* g7g6g5g4 g3g2_0_0 g7g6g5g4 g3g2_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
196 "pand "MANGLE(mmx_redmask)", %%mm1;" /* r7r6r5r4 r3_0_0_0 r7r6r5r4 r3_0_0_0 */ |
18861 | 197 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
198 "psrlw $3, %%mm0;" /* 0_0_0_b7 b6b5b4b3 0_0_0_b7 b6b5b4b3 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
199 "pxor %%mm4, %%mm4;" /* zero mm4 */ |
18861 | 200 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
201 "movq %%mm0, %%mm5;" /* Copy B7-B0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
202 "movq %%mm2, %%mm7;" /* Copy G7-G0 */ |
18861 | 203 |
27158 | 204 /* convert RGB24 plane to RGB16 pack for pixel 0-3 */ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
205 "punpcklbw %%mm4, %%mm2;" /* 0_0_0_0 0_0_0_0 g7g6g5g4 g3g2_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
206 "punpcklbw %%mm1, %%mm0;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */ |
18861 | 207 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
208 "psllw $3, %%mm2;" /* 0_0_0_0 0_g7g6g5 g4g3g2_0 0_0_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
209 "por %%mm2, %%mm0;" /* r7r6r5r4 r3g7g6g5 g4g3g2b7 b6b5b4b3 */ |
18861 | 210 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
211 "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
212 MOVNTQ " %%mm0, (%1);" /* store pixel 0-3 */ |
18861 | 213 |
27158 | 214 /* convert RGB24 plane to RGB16 pack for pixel 0-3 */ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
215 "punpckhbw %%mm4, %%mm7;" /* 0_0_0_0 0_0_0_0 g7g6g5g4 g3g2_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
216 "punpckhbw %%mm1, %%mm5;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */ |
18861 | 217 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
218 "psllw $3, %%mm7;" /* 0_0_0_0 0_g7g6g5 g4g3g2_0 0_0_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
219 "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */ |
18861 | 220 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
221 "por %%mm7, %%mm5;" /* r7r6r5r4 r3g7g6g5 g4g3g2b7 b6b5b4b3 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
222 "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */ |
18861 | 223 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
224 MOVNTQ " %%mm5, 8 (%1);" /* store pixel 4-7 */ |
23129 | 225 |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
226 YUV2RGB_ENDLOOP(2) |
28937
f2abbc7bb8f0
Split YUV2RGB operands declaration into a separate macro
sdrik
parents:
28721
diff
changeset
|
227 YUV2RGB_OPERANDS |
18861 | 228 } |
229 | |
230 static inline int RENAME(yuv420_rgb15)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
231 int srcSliceH, uint8_t* dst[], int dstStride[]){ |
18861 | 232 int y, h_size; |
233 | |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
234 YUV422_UNSHIFT |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
235 YUV2RGB_LOOP(2) |
18861 | 236 |
27686
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
237 c->blueDither= ff_dither8[y&1]; |
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
238 c->greenDither= ff_dither8[y&1]; |
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
239 c->redDither= ff_dither8[(y+1)&1]; |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
240 |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
241 YUV2RGB_INIT |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
242 YUV2RGB |
18861 | 243 |
244 #ifdef DITHER1XBPP | |
27686
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
245 "paddusb "BLUE_DITHER"(%4), %%mm0 \n\t" |
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
246 "paddusb "GREEN_DITHER"(%4), %%mm2 \n\t" |
235164d3b407
Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents:
27683
diff
changeset
|
247 "paddusb "RED_DITHER"(%4), %%mm1 \n\t" |
18861 | 248 #endif |
249 | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
250 /* mask unneeded bits off */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
251 "pand "MANGLE(mmx_redmask)", %%mm0;" /* b7b6b5b4 b3_0_0_0 b7b6b5b4 b3_0_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
252 "pand "MANGLE(mmx_redmask)", %%mm2;" /* g7g6g5g4 g3_0_0_0 g7g6g5g4 g3_0_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
253 "pand "MANGLE(mmx_redmask)", %%mm1;" /* r7r6r5r4 r3_0_0_0 r7r6r5r4 r3_0_0_0 */ |
18861 | 254 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
255 "psrlw $3, %%mm0;" /* 0_0_0_b7 b6b5b4b3 0_0_0_b7 b6b5b4b3 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
256 "psrlw $1, %%mm1;" /* 0_r7r6r5 r4r3_0_0 0_r7r6r5 r4r3_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
257 "pxor %%mm4, %%mm4;" /* zero mm4 */ |
18861 | 258 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
259 "movq %%mm0, %%mm5;" /* Copy B7-B0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
260 "movq %%mm2, %%mm7;" /* Copy G7-G0 */ |
18861 | 261 |
27158 | 262 /* convert RGB24 plane to RGB16 pack for pixel 0-3 */ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
263 "punpcklbw %%mm4, %%mm2;" /* 0_0_0_0 0_0_0_0 g7g6g5g4 g3_0_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
264 "punpcklbw %%mm1, %%mm0;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */ |
18861 | 265 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
266 "psllw $2, %%mm2;" /* 0_0_0_0 0_0_g7g6 g5g4g3_0 0_0_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
267 "por %%mm2, %%mm0;" /* 0_r7r6r5 r4r3g7g6 g5g4g3b7 b6b5b4b3 */ |
18861 | 268 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
269 "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
270 MOVNTQ " %%mm0, (%1);" /* store pixel 0-3 */ |
18861 | 271 |
27158 | 272 /* convert RGB24 plane to RGB16 pack for pixel 0-3 */ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
273 "punpckhbw %%mm4, %%mm7;" /* 0_0_0_0 0_0_0_0 0_g7g6g5 g4g3_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
274 "punpckhbw %%mm1, %%mm5;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */ |
18861 | 275 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
276 "psllw $2, %%mm7;" /* 0_0_0_0 0_0_g7g6 g5g4g3_0 0_0_0_0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
277 "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */ |
18861 | 278 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
279 "por %%mm7, %%mm5;" /* 0_r7r6r5 r4r3g7g6 g5g4g3b7 b6b5b4b3 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
280 "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */ |
18861 | 281 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
282 MOVNTQ " %%mm5, 8 (%1);" /* store pixel 4-7 */ |
23129 | 283 |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
284 YUV2RGB_ENDLOOP(2) |
28937
f2abbc7bb8f0
Split YUV2RGB operands declaration into a separate macro
sdrik
parents:
28721
diff
changeset
|
285 YUV2RGB_OPERANDS |
18861 | 286 } |
287 | |
288 static inline int RENAME(yuv420_rgb24)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
289 int srcSliceH, uint8_t* dst[], int dstStride[]){ |
18861 | 290 int y, h_size; |
291 | |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
292 YUV422_UNSHIFT |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
293 YUV2RGB_LOOP(3) |
18861 | 294 |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
295 YUV2RGB_INIT |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
296 YUV2RGB |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
297 /* mm0=B, %%mm2=G, %%mm1=R */ |
28276 | 298 #if HAVE_MMX2 |
25882
2ad528dd42a0
Make some assembler constants global instead of declaring them multiple times.
reimar
parents:
24577
diff
changeset
|
299 "movq "MANGLE(ff_M24A)", %%mm4 \n\t" |
2ad528dd42a0
Make some assembler constants global instead of declaring them multiple times.
reimar
parents:
24577
diff
changeset
|
300 "movq "MANGLE(ff_M24C)", %%mm7 \n\t" |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
301 "pshufw $0x50, %%mm0, %%mm5 \n\t" /* B3 B2 B3 B2 B1 B0 B1 B0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
302 "pshufw $0x50, %%mm2, %%mm3 \n\t" /* G3 G2 G3 G2 G1 G0 G1 G0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
303 "pshufw $0x00, %%mm1, %%mm6 \n\t" /* R1 R0 R1 R0 R1 R0 R1 R0 */ |
18861 | 304 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
305 "pand %%mm4, %%mm5 \n\t" /* B2 B1 B0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
306 "pand %%mm4, %%mm3 \n\t" /* G2 G1 G0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
307 "pand %%mm7, %%mm6 \n\t" /* R1 R0 */ |
18861 | 308 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
309 "psllq $8, %%mm3 \n\t" /* G2 G1 G0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
310 "por %%mm5, %%mm6 \n\t" |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
311 "por %%mm3, %%mm6 \n\t" |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
312 MOVNTQ" %%mm6, (%1) \n\t" |
18861 | 313 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
314 "psrlq $8, %%mm2 \n\t" /* 00 G7 G6 G5 G4 G3 G2 G1 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
315 "pshufw $0xA5, %%mm0, %%mm5 \n\t" /* B5 B4 B5 B4 B3 B2 B3 B2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
316 "pshufw $0x55, %%mm2, %%mm3 \n\t" /* G4 G3 G4 G3 G4 G3 G4 G3 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
317 "pshufw $0xA5, %%mm1, %%mm6 \n\t" /* R5 R4 R5 R4 R3 R2 R3 R2 */ |
18861 | 318 |
25882
2ad528dd42a0
Make some assembler constants global instead of declaring them multiple times.
reimar
parents:
24577
diff
changeset
|
319 "pand "MANGLE(ff_M24B)", %%mm5 \n\t" /* B5 B4 B3 */ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
320 "pand %%mm7, %%mm3 \n\t" /* G4 G3 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
321 "pand %%mm4, %%mm6 \n\t" /* R4 R3 R2 */ |
18861 | 322 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
323 "por %%mm5, %%mm3 \n\t" /* B5 G4 B4 G3 B3 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
324 "por %%mm3, %%mm6 \n\t" |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
325 MOVNTQ" %%mm6, 8(%1) \n\t" |
18861 | 326 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
327 "pshufw $0xFF, %%mm0, %%mm5 \n\t" /* B7 B6 B7 B6 B7 B6 B6 B7 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
328 "pshufw $0xFA, %%mm2, %%mm3 \n\t" /* 00 G7 00 G7 G6 G5 G6 G5 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
329 "pshufw $0xFA, %%mm1, %%mm6 \n\t" /* R7 R6 R7 R6 R5 R4 R5 R4 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
330 "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */ |
18861 | 331 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
332 "pand %%mm7, %%mm5 \n\t" /* B7 B6 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
333 "pand %%mm4, %%mm3 \n\t" /* G7 G6 G5 */ |
25882
2ad528dd42a0
Make some assembler constants global instead of declaring them multiple times.
reimar
parents:
24577
diff
changeset
|
334 "pand "MANGLE(ff_M24B)", %%mm6 \n\t" /* R7 R6 R5 */ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
335 "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */ |
18861 | 336 \ |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
337 "por %%mm5, %%mm3 \n\t" |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
338 "por %%mm3, %%mm6 \n\t" |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
339 MOVNTQ" %%mm6, 16(%1) \n\t" |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
340 "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
341 "pxor %%mm4, %%mm4 \n\t" |
18861 | 342 |
343 #else | |
344 | |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
345 "pxor %%mm4, %%mm4 \n\t" |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
346 "movq %%mm0, %%mm5 \n\t" /* B */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
347 "movq %%mm1, %%mm6 \n\t" /* R */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
348 "punpcklbw %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
349 "punpcklbw %%mm4, %%mm1 \n\t" /* 0R0R0R0R 0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
350 "punpckhbw %%mm2, %%mm5 \n\t" /* GBGBGBGB 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
351 "punpckhbw %%mm4, %%mm6 \n\t" /* 0R0R0R0R 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
352 "movq %%mm0, %%mm7 \n\t" /* GBGBGBGB 0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
353 "movq %%mm5, %%mm3 \n\t" /* GBGBGBGB 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
354 "punpcklwd %%mm1, %%mm7 \n\t" /* 0RGB0RGB 0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
355 "punpckhwd %%mm1, %%mm0 \n\t" /* 0RGB0RGB 1 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
356 "punpcklwd %%mm6, %%mm5 \n\t" /* 0RGB0RGB 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
357 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */ |
18861 | 358 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
359 "movq %%mm7, %%mm2 \n\t" /* 0RGB0RGB 0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
360 "movq %%mm0, %%mm6 \n\t" /* 0RGB0RGB 1 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
361 "movq %%mm5, %%mm1 \n\t" /* 0RGB0RGB 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
362 "movq %%mm3, %%mm4 \n\t" /* 0RGB0RGB 3 */ |
18861 | 363 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
364 "psllq $40, %%mm7 \n\t" /* RGB00000 0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
365 "psllq $40, %%mm0 \n\t" /* RGB00000 1 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
366 "psllq $40, %%mm5 \n\t" /* RGB00000 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
367 "psllq $40, %%mm3 \n\t" /* RGB00000 3 */ |
18861 | 368 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
369 "punpckhdq %%mm2, %%mm7 \n\t" /* 0RGBRGB0 0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
370 "punpckhdq %%mm6, %%mm0 \n\t" /* 0RGBRGB0 1 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
371 "punpckhdq %%mm1, %%mm5 \n\t" /* 0RGBRGB0 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
372 "punpckhdq %%mm4, %%mm3 \n\t" /* 0RGBRGB0 3 */ |
18861 | 373 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
374 "psrlq $8, %%mm7 \n\t" /* 00RGBRGB 0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
375 "movq %%mm0, %%mm6 \n\t" /* 0RGBRGB0 1 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
376 "psllq $40, %%mm0 \n\t" /* GB000000 1 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
377 "por %%mm0, %%mm7 \n\t" /* GBRGBRGB 0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
378 MOVNTQ" %%mm7, (%1) \n\t" |
18861 | 379 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
380 "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */ |
18861 | 381 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
382 "psrlq $24, %%mm6 \n\t" /* 0000RGBR 1 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
383 "movq %%mm5, %%mm1 \n\t" /* 0RGBRGB0 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
384 "psllq $24, %%mm5 \n\t" /* BRGB0000 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
385 "por %%mm5, %%mm6 \n\t" /* BRGBRGBR 1 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
386 MOVNTQ" %%mm6, 8(%1) \n\t" |
18861 | 387 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
388 "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */ |
18861 | 389 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
390 "psrlq $40, %%mm1 \n\t" /* 000000RG 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
391 "psllq $8, %%mm3 \n\t" /* RGBRGB00 3 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
392 "por %%mm3, %%mm1 \n\t" /* RGBRGBRG 2 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
393 MOVNTQ" %%mm1, 16(%1) \n\t" |
18861 | 394 |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
395 "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */ |
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
396 "pxor %%mm4, %%mm4 \n\t" |
18861 | 397 #endif |
23129 | 398 |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
399 YUV2RGB_ENDLOOP(3) |
28937
f2abbc7bb8f0
Split YUV2RGB operands declaration into a separate macro
sdrik
parents:
28721
diff
changeset
|
400 YUV2RGB_OPERANDS |
18861 | 401 } |
402 | |
28706 | 403 #define RGB_PLANAR2PACKED32 \ |
404 /* convert RGB plane to RGB packed format, \ | |
405 mm0 -> B, mm1 -> R, mm2 -> G, mm3 -> A, \ | |
406 mm4 -> GB, mm5 -> AR pixel 4-7, \ | |
407 mm6 -> GB, mm7 -> AR pixel 0-3 */ \ | |
408 "movq %%mm0, %%mm6;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \ | |
409 "movq %%mm1, %%mm7;" /* R7 R6 R5 R4 R3 R2 R1 R0 */ \ | |
410 \ | |
411 "movq %%mm0, %%mm4;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \ | |
412 "movq %%mm1, %%mm5;" /* R7 R6 R5 R4 R3 R2 R1 R0 */ \ | |
413 \ | |
414 "punpcklbw %%mm2, %%mm6;" /* G3 B3 G2 B2 G1 B1 G0 B0 */ \ | |
415 "punpcklbw %%mm3, %%mm7;" /* A3 R3 A2 R2 A1 R1 A0 R0 */ \ | |
416 \ | |
417 "punpcklwd %%mm7, %%mm6;" /* A1 R1 B1 G1 A0 R0 B0 G0 */ \ | |
418 MOVNTQ " %%mm6, (%1);" /* Store ARGB1 ARGB0 */ \ | |
419 \ | |
420 "movq %%mm0, %%mm6;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \ | |
421 "punpcklbw %%mm2, %%mm6;" /* G3 B3 G2 B2 G1 B1 G0 B0 */ \ | |
422 \ | |
423 "punpckhwd %%mm7, %%mm6;" /* A3 R3 G3 B3 A2 R2 B3 G2 */ \ | |
424 MOVNTQ " %%mm6, 8 (%1);" /* Store ARGB3 ARGB2 */ \ | |
425 \ | |
426 "punpckhbw %%mm2, %%mm4;" /* G7 B7 G6 B6 G5 B5 G4 B4 */ \ | |
427 "punpckhbw %%mm3, %%mm5;" /* A7 R7 A6 R6 A5 R5 A4 R4 */ \ | |
428 \ | |
429 "punpcklwd %%mm5, %%mm4;" /* A5 R5 B5 G5 A4 R4 B4 G4 */ \ | |
430 MOVNTQ " %%mm4, 16 (%1);" /* Store ARGB5 ARGB4 */ \ | |
431 \ | |
432 "movq %%mm0, %%mm4;" /* B7 B6 B5 B4 B3 B2 B1 B0 */ \ | |
433 "punpckhbw %%mm2, %%mm4;" /* G7 B7 G6 B6 G5 B5 G4 B4 */ \ | |
434 \ | |
435 "punpckhwd %%mm5, %%mm4;" /* A7 R7 G7 B7 A6 R6 B6 G6 */ \ | |
436 MOVNTQ " %%mm4, 24 (%1);" /* Store ARGB7 ARGB6 */ \ | |
437 \ | |
438 "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */ \ | |
439 "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */ \ | |
440 \ | |
441 "pxor %%mm4, %%mm4;" /* zero mm4 */ \ | |
442 "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */ \ | |
443 | |
18861 | 444 static inline int RENAME(yuv420_rgb32)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, |
23157
ebc55c913d73
cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents:
23129
diff
changeset
|
445 int srcSliceH, uint8_t* dst[], int dstStride[]){ |
18861 | 446 int y, h_size; |
447 | |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
448 YUV422_UNSHIFT |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
449 YUV2RGB_LOOP(4) |
18861 | 450 |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
451 YUV2RGB_INIT |
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
452 YUV2RGB |
28721
267dd38c800e
When converting from a non alpha format to an alpha format, defaults to all ones rather than all zeroes
sdrik
parents:
28706
diff
changeset
|
453 "pcmpeqd %%mm3, %%mm3;" /* fill mm3 */ |
28706 | 454 RGB_PLANAR2PACKED32 |
18861 | 455 |
28655
9fcf23aaf13c
Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.
cehoyos
parents:
28409
diff
changeset
|
456 YUV2RGB_ENDLOOP(4) |
28937
f2abbc7bb8f0
Split YUV2RGB operands declaration into a separate macro
sdrik
parents:
28721
diff
changeset
|
457 YUV2RGB_OPERANDS |
18861 | 458 } |