annotate libswscale/yuv2rgb_template.c @ 23129:9528d1ebe68f

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