annotate libswscale/yuv2rgb_template.c @ 27840:0073bd183787

vobsub: move extradata out of vobsub_t struct
author aurel
date Sat, 01 Nov 2008 13:56:11 +0000
parents 13b72e7bf7ac
children 877336d3c598
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1 /*
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
2 * yuv2rgb_mmx.c, software YUV to RGB converter with Intel MMX "technology"
18861
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 *
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
6 * Author: Olie Lho <ollie@sis.com.tw>
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
7 *
23701
2c8b8b4e63c8 Group all copyright and author notices together.
diego
parents: 23157
diff changeset
8 * 15,24 bpp and dithering from Michael Niedermayer (michaelni@gmx.at)
2c8b8b4e63c8 Group all copyright and author notices together.
diego
parents: 23157
diff changeset
9 * MMX/MMX2 Template stuff from Michael Niedermayer (needed for fast movntq support)
2c8b8b4e63c8 Group all copyright and author notices together.
diego
parents: 23157
diff changeset
10 * context / deglobalize stuff by Michael Niedermayer
2c8b8b4e63c8 Group all copyright and author notices together.
diego
parents: 23157
diff changeset
11 *
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
12 * This file is part of mpeg2dec, a free MPEG-2 video decoder
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
13 *
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
14 * mpeg2dec is free software; you can redistribute it and/or modify
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
15 * it under the terms of the GNU General Public License as published by
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
16 * the Free Software Foundation; either version 2, or (at your option)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
17 * any later version.
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
18 *
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
19 * mpeg2dec is distributed in the hope that it will be useful,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
22 * GNU General Public License for more details.
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
23 *
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
24 * 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
25 * along with mpeg2dec; if not, write to the Free Software
8aac0a59f9c7 Fix license headers and FSF postal address.
diego
parents: 19872
diff changeset
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
27 */
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
28
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
29 #undef MOVNTQ
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
30 #undef EMMS
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
31 #undef SFENCE
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
32
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
33 #ifdef HAVE_3DNOW
27782
13b72e7bf7ac cosmetics: typo fix
diego
parents: 27744
diff changeset
34 /* On K6 femms is faster than emms. On K7 femms is directly mapped to emms. */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
35 #define EMMS "femms"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
36 #else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
37 #define EMMS "emms"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
38 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
39
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
40 #ifdef HAVE_MMX2
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
41 #define MOVNTQ "movntq"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
42 #define SFENCE "sfence"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
43 #else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
44 #define MOVNTQ "movq"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
45 #define SFENCE "/nop"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
46 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
47
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
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
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
122
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
123
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
124 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
125 int srcSliceH, uint8_t* dst[], int dstStride[]){
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
126 int y, h_size;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
127
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 18861
diff changeset
128 if(c->srcFormat == PIX_FMT_YUV422P){
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
129 srcStride[1] *= 2;
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
130 srcStride[2] *= 2;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
131 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
132
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
133 h_size= (c->dstW+7)&~7;
22229
44c3544fd926 negative stride and h_size-=8 fix
michael
parents: 21976
diff changeset
134 if(h_size*2 > FFABS(dstStride[0])) h_size-=8;
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
135
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
136 __asm__ volatile ("pxor %mm4, %mm4;" /* zero mm4 */ );
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
137 //printf("%X %X %X %X %X %X %X %X %X %X\n", (int)&c->redDither, (int)&c->blueDither, (int)src[0], (int)src[1], (int)src[2], (int)dst[0],
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
138 //srcStride[0],srcStride[1],srcStride[2],dstStride[0]);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
139 for (y= 0; y<srcSliceH; y++ ) {
24577
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
140 uint8_t *image = dst[0] + (y+srcSliceY)*dstStride[0];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
141 uint8_t *py = src[0] + y*srcStride[0];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
142 uint8_t *pu = src[1] + (y>>1)*srcStride[1];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
143 uint8_t *pv = src[2] + (y>>1)*srcStride[2];
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
144 long index= -h_size/2;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
145
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
146 c->blueDither= ff_dither8[y&1];
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
147 c->greenDither= ff_dither4[y&1];
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
148 c->redDither= ff_dither8[(y+1)&1];
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
149 /* This MMX assembly code deals with a SINGLE scan line at a time,
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
150 * it converts 8 pixels in each iteration. */
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
151 __asm__ volatile (
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
152 /* load data for start of next scan line */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
153 "movd (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
154 "movd (%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
155 "movq (%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
156 //".balign 16 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
157 "1: \n\t"
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
158 /* No speed difference on my p3@500 with prefetch,
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
159 * if it is faster for anyone with -benchmark then tell me.
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
160 PREFETCH" 64(%0) \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
161 PREFETCH" 64(%1) \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
162 PREFETCH" 64(%2) \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
163 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
164 YUV2RGB
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
165
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
166 #ifdef DITHER1XBPP
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
167 "paddusb "BLUE_DITHER"(%4), %%mm0;"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
168 "paddusb "GREEN_DITHER"(%4), %%mm2;"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
169 "paddusb "RED_DITHER"(%4), %%mm1;"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
170 #endif
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
171 /* mask unneeded bits off */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
172 "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
173 "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
174 "pand "MANGLE(mmx_redmask)", %%mm1;" /* r7r6r5r4 r3_0_0_0 r7r6r5r4 r3_0_0_0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
175
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
176 "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
177 "pxor %%mm4, %%mm4;" /* zero mm4 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
178
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
179 "movq %%mm0, %%mm5;" /* Copy B7-B0 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
180 "movq %%mm2, %%mm7;" /* Copy G7-G0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
181
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
182 /* 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
183 "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
184 "punpcklbw %%mm1, %%mm0;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
185
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
186 "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
187 "por %%mm2, %%mm0;" /* r7r6r5r4 r3g7g6g5 g4g3g2b7 b6b5b4b3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
188
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
189 "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
190 MOVNTQ " %%mm0, (%1);" /* store pixel 0-3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
191
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
192 /* 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
193 "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
194 "punpckhbw %%mm1, %%mm5;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
195
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
196 "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
197 "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
198
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
199 "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
200 "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
201
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
202 MOVNTQ " %%mm5, 8 (%1);" /* store pixel 4-7 */
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
203
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
204 "add $16, %1 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
205 "add $4, %0 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
206 " js 1b \n\t"
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
207
24577
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
208 : "+r" (index), "+r" (image)
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
209 : "r" (pu - index), "r" (pv - index), "r"(&c->redDither), "r" (py - 2*index)
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
210 );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
211 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
212
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
213 __asm__ volatile (EMMS);
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
214
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
215 return srcSliceH;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
216 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
217
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
218 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
219 int srcSliceH, uint8_t* dst[], int dstStride[]){
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
220 int y, h_size;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
221
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 18861
diff changeset
222 if(c->srcFormat == PIX_FMT_YUV422P){
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
223 srcStride[1] *= 2;
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
224 srcStride[2] *= 2;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
225 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
226
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
227 h_size= (c->dstW+7)&~7;
22229
44c3544fd926 negative stride and h_size-=8 fix
michael
parents: 21976
diff changeset
228 if(h_size*2 > FFABS(dstStride[0])) h_size-=8;
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
229
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
230 __asm__ volatile ("pxor %mm4, %mm4;" /* zero mm4 */ );
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
231 //printf("%X %X %X %X %X %X %X %X %X %X\n", (int)&c->redDither, (int)&c->blueDither, (int)src[0], (int)src[1], (int)src[2], (int)dst[0],
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
232 //srcStride[0],srcStride[1],srcStride[2],dstStride[0]);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
233 for (y= 0; y<srcSliceH; y++ ) {
24577
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
234 uint8_t *image = dst[0] + (y+srcSliceY)*dstStride[0];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
235 uint8_t *py = src[0] + y*srcStride[0];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
236 uint8_t *pu = src[1] + (y>>1)*srcStride[1];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
237 uint8_t *pv = src[2] + (y>>1)*srcStride[2];
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
238 long index= -h_size/2;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
239
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
240 c->blueDither= ff_dither8[y&1];
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
241 c->greenDither= ff_dither8[y&1];
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
242 c->redDither= ff_dither8[(y+1)&1];
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
243 /* This MMX assembly code deals with a SINGLE scan line at a time,
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
244 * it converts 8 pixels in each iteration. */
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
245 __asm__ volatile (
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
246 /* load data for start of next scan line */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
247 "movd (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
248 "movd (%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
249 "movq (%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
250 //".balign 16 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
251 "1: \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
252 YUV2RGB
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
253
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
254 #ifdef DITHER1XBPP
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
255 "paddusb "BLUE_DITHER"(%4), %%mm0 \n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
256 "paddusb "GREEN_DITHER"(%4), %%mm2 \n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
257 "paddusb "RED_DITHER"(%4), %%mm1 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
258 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
259
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
260 /* mask unneeded bits off */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
261 "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
262 "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
263 "pand "MANGLE(mmx_redmask)", %%mm1;" /* r7r6r5r4 r3_0_0_0 r7r6r5r4 r3_0_0_0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
264
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
265 "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
266 "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
267 "pxor %%mm4, %%mm4;" /* zero mm4 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
268
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
269 "movq %%mm0, %%mm5;" /* Copy B7-B0 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
270 "movq %%mm2, %%mm7;" /* Copy G7-G0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
271
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
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 "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
274 "punpcklbw %%mm1, %%mm0;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
275
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
276 "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
277 "por %%mm2, %%mm0;" /* 0_r7r6r5 r4r3g7g6 g5g4g3b7 b6b5b4b3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
278
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
279 "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
280 MOVNTQ " %%mm0, (%1);" /* store pixel 0-3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
281
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
282 /* 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
283 "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
284 "punpckhbw %%mm1, %%mm5;" /* r7r6r5r4 r3_0_0_0 0_0_0_b7 b6b5b4b3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
285
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
286 "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
287 "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
288
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
289 "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
290 "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
291
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
292 MOVNTQ " %%mm5, 8 (%1);" /* store pixel 4-7 */
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
293
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
294 "add $16, %1 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
295 "add $4, %0 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
296 " js 1b \n\t"
24577
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
297 : "+r" (index), "+r" (image)
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
298 : "r" (pu - index), "r" (pv - index), "r"(&c->redDither), "r" (py - 2*index)
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
299 );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
300 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
301
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
302 __asm__ volatile (EMMS);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
303 return srcSliceH;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
304 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
305
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
306 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
307 int srcSliceH, uint8_t* dst[], int dstStride[]){
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
308 int y, h_size;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
309
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 18861
diff changeset
310 if(c->srcFormat == PIX_FMT_YUV422P){
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
311 srcStride[1] *= 2;
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
312 srcStride[2] *= 2;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
313 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
314
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
315 h_size= (c->dstW+7)&~7;
22229
44c3544fd926 negative stride and h_size-=8 fix
michael
parents: 21976
diff changeset
316 if(h_size*3 > FFABS(dstStride[0])) h_size-=8;
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
317
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
318 __asm__ volatile ("pxor %mm4, %mm4;" /* zero mm4 */ );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
319
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
320 for (y= 0; y<srcSliceH; y++ ) {
24577
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
321 uint8_t *image = dst[0] + (y+srcSliceY)*dstStride[0];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
322 uint8_t *py = src[0] + y*srcStride[0];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
323 uint8_t *pu = src[1] + (y>>1)*srcStride[1];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
324 uint8_t *pv = src[2] + (y>>1)*srcStride[2];
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
325 long index= -h_size/2;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
326
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
327 /* This MMX assembly code deals with a SINGLE scan line at a time,
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
328 * it converts 8 pixels in each iteration. */
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
329 __asm__ volatile (
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
330 /* load data for start of next scan line */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
331 "movd (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
332 "movd (%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
333 "movq (%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
334 //".balign 16 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
335 "1: \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
336 YUV2RGB
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
337 /* mm0=B, %%mm2=G, %%mm1=R */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
338 #ifdef HAVE_MMX2
25882
2ad528dd42a0 Make some assembler constants global instead of declaring them multiple times.
reimar
parents: 24577
diff changeset
339 "movq "MANGLE(ff_M24A)", %%mm4 \n\t"
2ad528dd42a0 Make some assembler constants global instead of declaring them multiple times.
reimar
parents: 24577
diff changeset
340 "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
341 "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
342 "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
343 "pshufw $0x00, %%mm1, %%mm6 \n\t" /* R1 R0 R1 R0 R1 R0 R1 R0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
344
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
345 "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
346 "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
347 "pand %%mm7, %%mm6 \n\t" /* R1 R0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
348
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
349 "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
350 "por %%mm5, %%mm6 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
351 "por %%mm3, %%mm6 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
352 MOVNTQ" %%mm6, (%1) \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
353
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
354 "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
355 "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
356 "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
357 "pshufw $0xA5, %%mm1, %%mm6 \n\t" /* R5 R4 R5 R4 R3 R2 R3 R2 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
358
25882
2ad528dd42a0 Make some assembler constants global instead of declaring them multiple times.
reimar
parents: 24577
diff changeset
359 "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
360 "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
361 "pand %%mm4, %%mm6 \n\t" /* R4 R3 R2 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
362
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
363 "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
364 "por %%mm3, %%mm6 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
365 MOVNTQ" %%mm6, 8(%1) \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
366
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
367 "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
368 "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
369 "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
370 "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
371
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
372 "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
373 "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
374 "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
375 "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
376 \
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
377 "por %%mm5, %%mm3 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
378 "por %%mm3, %%mm6 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
379 MOVNTQ" %%mm6, 16(%1) \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
380 "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
381 "pxor %%mm4, %%mm4 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
382
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
383 #else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
384
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
385 "pxor %%mm4, %%mm4 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
386 "movq %%mm0, %%mm5 \n\t" /* B */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
387 "movq %%mm1, %%mm6 \n\t" /* R */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
388 "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
389 "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
390 "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
391 "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
392 "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
393 "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
394 "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
395 "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
396 "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
397 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
398
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
399 "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
400 "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
401 "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
402 "movq %%mm3, %%mm4 \n\t" /* 0RGB0RGB 3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
403
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
404 "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
405 "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
406 "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
407 "psllq $40, %%mm3 \n\t" /* RGB00000 3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
408
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
409 "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
410 "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
411 "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
412 "punpckhdq %%mm4, %%mm3 \n\t" /* 0RGBRGB0 3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
413
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
414 "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
415 "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
416 "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
417 "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
418 MOVNTQ" %%mm7, (%1) \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
419
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
420 "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
421
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
422 "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
423 "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
424 "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
425 "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
426 MOVNTQ" %%mm6, 8(%1) \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
427
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
428 "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
429
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
430 "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
431 "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
432 "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
433 MOVNTQ" %%mm1, 16(%1) \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
434
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
435 "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
436 "pxor %%mm4, %%mm4 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
437 #endif
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
438
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
439 "add $24, %1 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
440 "add $4, %0 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
441 " js 1b \n\t"
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
442
24577
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
443 : "+r" (index), "+r" (image)
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
444 : "r" (pu - index), "r" (pv - index), "r"(&c->redDither), "r" (py - 2*index)
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
445 );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
446 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
447
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
448 __asm__ volatile (EMMS);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
449 return srcSliceH;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
450 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
451
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
452 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
453 int srcSliceH, uint8_t* dst[], int dstStride[]){
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
454 int y, h_size;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
455
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 18861
diff changeset
456 if(c->srcFormat == PIX_FMT_YUV422P){
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
457 srcStride[1] *= 2;
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
458 srcStride[2] *= 2;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
459 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
460
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
461 h_size= (c->dstW+7)&~7;
22229
44c3544fd926 negative stride and h_size-=8 fix
michael
parents: 21976
diff changeset
462 if(h_size*4 > FFABS(dstStride[0])) h_size-=8;
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
463
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
464 __asm__ volatile ("pxor %mm4, %mm4;" /* zero mm4 */ );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
465
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
466 for (y= 0; y<srcSliceH; y++ ) {
24577
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
467 uint8_t *image = dst[0] + (y+srcSliceY)*dstStride[0];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
468 uint8_t *py = src[0] + y*srcStride[0];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
469 uint8_t *pu = src[1] + (y>>1)*srcStride[1];
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
470 uint8_t *pv = src[2] + (y>>1)*srcStride[2];
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
471 long index= -h_size/2;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
472
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
473 /* This MMX assembly code deals with a SINGLE scan line at a time,
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26424
diff changeset
474 * it converts 8 pixels in each iteration. */
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
475 __asm__ volatile (
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
476 /* load data for start of next scan line */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
477 "movd (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
478 "movd (%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
479 "movq (%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
480 //".balign 16 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
481 "1: \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
482 YUV2RGB
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
483 /* convert RGB plane to RGB packed format,
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
484 mm0 -> B, mm1 -> R, mm2 -> G, mm3 -> 0,
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
485 mm4 -> GB, mm5 -> AR pixel 4-7,
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
486 mm6 -> GB, mm7 -> AR pixel 0-3 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
487 "pxor %%mm3, %%mm3;" /* zero mm3 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
488
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
489 "movq %%mm0, %%mm6;" /* 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
490 "movq %%mm1, %%mm7;" /* R7 R6 R5 R4 R3 R2 R1 R0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
491
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
492 "movq %%mm0, %%mm4;" /* 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
493 "movq %%mm1, %%mm5;" /* R7 R6 R5 R4 R3 R2 R1 R0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
494
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
495 "punpcklbw %%mm2, %%mm6;" /* G3 B3 G2 B2 G1 B1 G0 B0 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
496 "punpcklbw %%mm3, %%mm7;" /* 00 R3 00 R2 00 R1 00 R0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
497
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
498 "punpcklwd %%mm7, %%mm6;" /* 00 R1 B1 G1 00 R0 B0 G0 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
499 MOVNTQ " %%mm6, (%1);" /* Store ARGB1 ARGB0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
500
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
501 "movq %%mm0, %%mm6;" /* 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
502 "punpcklbw %%mm2, %%mm6;" /* G3 B3 G2 B2 G1 B1 G0 B0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
503
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
504 "punpckhwd %%mm7, %%mm6;" /* 00 R3 G3 B3 00 R2 B3 G2 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
505 MOVNTQ " %%mm6, 8 (%1);" /* Store ARGB3 ARGB2 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
506
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
507 "punpckhbw %%mm2, %%mm4;" /* G7 B7 G6 B6 G5 B5 G4 B4 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
508 "punpckhbw %%mm3, %%mm5;" /* 00 R7 00 R6 00 R5 00 R4 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
509
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
510 "punpcklwd %%mm5, %%mm4;" /* 00 R5 B5 G5 00 R4 B4 G4 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
511 MOVNTQ " %%mm4, 16 (%1);" /* Store ARGB5 ARGB4 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
512
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
513 "movq %%mm0, %%mm4;" /* 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
514 "punpckhbw %%mm2, %%mm4;" /* G7 B7 G6 B6 G5 B5 G4 B4 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
515
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
516 "punpckhwd %%mm5, %%mm4;" /* 00 R7 G7 B7 00 R6 B6 G6 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
517 MOVNTQ " %%mm4, 24 (%1);" /* Store ARGB7 ARGB6 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
518
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
519 "movd 4 (%2, %0), %%mm0;" /* Load 4 Cb 00 00 00 00 u3 u2 u1 u0 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
520 "movd 4 (%3, %0), %%mm1;" /* Load 4 Cr 00 00 00 00 v3 v2 v1 v0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
521
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
522 "pxor %%mm4, %%mm4;" /* zero mm4 */
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
523 "movq 8 (%5, %0, 2), %%mm6;" /* Load 8 Y Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
524
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
525 "add $32, %1 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
526 "add $4, %0 \n\t"
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
527 " js 1b \n\t"
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22229
diff changeset
528
24577
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
529 : "+r" (index), "+r" (image)
00966f09c33b cosmetic (get rid of _ at the start of local variable names)
michael
parents: 23771
diff changeset
530 : "r" (pu - index), "r" (pv - index), "r"(&c->redDither), "r" (py - 2*index)
23157
ebc55c913d73 cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
531 );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
532 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
533
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27686
diff changeset
534 __asm__ volatile (EMMS);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
535 return srcSliceH;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
536 }