annotate libswscale/swscale_template.c @ 29932:7c5fd4b35889

Add support for nv12/nv21 input.
author ramiro
date Thu, 03 Dec 2009 18:18:13 +0000
parents 3e8bf15f96d6
children ccbc4361e9e6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1 /*
20094
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
2 * Copyright (C) 2001-2003 Michael Niedermayer <michaelni@gmx.at>
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
3 *
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
4 * This file is part of FFmpeg.
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
5 *
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or modify
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
7 * it under the terms of the GNU General Public License as published by
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
8 * the Free Software Foundation; either version 2 of the License, or
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
9 * (at your option) any later version.
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
10 *
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
14 * GNU General Public License for more details.
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
15 *
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
16 * You should have received a copy of the GNU General Public License
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
17 * along with FFmpeg; if not, write to the Free Software
23702
5159b5f8784e license header consistency cosmetics
diego
parents: 23665
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20094
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
19 *
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
20 * The C code (not assembly, MMX, ...) of this file can be used
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
21 * under the LGPL license.
20094
aca9e9783f67 Change license headers to say 'FFmpeg' instead of 'this program'.
diego
parents: 20015
diff changeset
22 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
23
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
24 #undef REAL_MOVNTQ
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
25 #undef MOVNTQ
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
26 #undef PAVGB
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
27 #undef PREFETCH
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
28 #undef PREFETCHW
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
29
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
30 #if COMPILE_TEMPLATE_AMD3DNOW
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
31 #define PREFETCH "prefetch"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
32 #define PREFETCHW "prefetchw"
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
33 #elif COMPILE_TEMPLATE_MMX2
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
34 #define PREFETCH "prefetchnta"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
35 #define PREFETCHW "prefetcht0"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
36 #else
20724
b8fe18a742ce Fix MacIntel build: "/nop" is illegal on Apple's older version of GAS
gpoirier
parents: 20589
diff changeset
37 #define PREFETCH " # nop"
b8fe18a742ce Fix MacIntel build: "/nop" is illegal on Apple's older version of GAS
gpoirier
parents: 20589
diff changeset
38 #define PREFETCHW " # nop"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
39 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
40
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
41 #if COMPILE_TEMPLATE_MMX2
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
42 #define PAVGB(a,b) "pavgb " #a ", " #b " \n\t"
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
43 #elif COMPILE_TEMPLATE_AMD3DNOW
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
44 #define PAVGB(a,b) "pavgusb " #a ", " #b " \n\t"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
45 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
46
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
47 #if COMPILE_TEMPLATE_MMX2
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
48 #define REAL_MOVNTQ(a,b) "movntq " #a ", " #b " \n\t"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
49 #else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
50 #define REAL_MOVNTQ(a,b) "movq " #a ", " #b " \n\t"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
51 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
52 #define MOVNTQ(a,b) REAL_MOVNTQ(a,b)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
53
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
54 #if COMPILE_TEMPLATE_ALTIVEC
29060
e7f277bf38b5 Move swscale AltiVec template code to ppc subdirectory.
diego
parents: 28981
diff changeset
55 #include "ppc/swscale_altivec_template.c"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
56 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
57
19172
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
58 #define YSCALEYUV2YV12X(x, offset, dest, width) \
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
59 __asm__ volatile(\
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
60 "xor %%"REG_a", %%"REG_a" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
61 "movq "VROUNDER_OFFSET"(%0), %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
62 "movq %%mm3, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
63 "lea " offset "(%0), %%"REG_d" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
64 "mov (%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
65 ASMALIGN(4) /* FIXME Unroll? */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
66 "1: \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
67 "movq 8(%%"REG_d"), %%mm0 \n\t" /* filterCoeff */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
68 "movq " x "(%%"REG_S", %%"REG_a", 2), %%mm2 \n\t" /* srcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
69 "movq 8+" x "(%%"REG_S", %%"REG_a", 2), %%mm5 \n\t" /* srcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
70 "add $16, %%"REG_d" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
71 "mov (%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
72 "test %%"REG_S", %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
73 "pmulhw %%mm0, %%mm2 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
74 "pmulhw %%mm0, %%mm5 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
75 "paddw %%mm2, %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
76 "paddw %%mm5, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
77 " jnz 1b \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
78 "psraw $3, %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
79 "psraw $3, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
80 "packuswb %%mm4, %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
81 MOVNTQ(%%mm3, (%1, %%REGa))\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
82 "add $8, %%"REG_a" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
83 "cmp %2, %%"REG_a" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
84 "movq "VROUNDER_OFFSET"(%0), %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
85 "movq %%mm3, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
86 "lea " offset "(%0), %%"REG_d" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
87 "mov (%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
88 "jb 1b \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
89 :: "r" (&c->redDither),\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
90 "r" (dest), "g" (width)\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
91 : "%"REG_a, "%"REG_d, "%"REG_S\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
92 );
19172
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
93
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
94 #define YSCALEYUV2YV12X_ACCURATE(x, offset, dest, width) \
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
95 __asm__ volatile(\
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
96 "lea " offset "(%0), %%"REG_d" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
97 "xor %%"REG_a", %%"REG_a" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
98 "pxor %%mm4, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
99 "pxor %%mm5, %%mm5 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
100 "pxor %%mm6, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
101 "pxor %%mm7, %%mm7 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
102 "mov (%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
103 ASMALIGN(4) \
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
104 "1: \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
105 "movq " x "(%%"REG_S", %%"REG_a", 2), %%mm0 \n\t" /* srcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
106 "movq 8+" x "(%%"REG_S", %%"REG_a", 2), %%mm2 \n\t" /* srcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
107 "mov "STR(APCK_PTR2)"(%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
108 "movq " x "(%%"REG_S", %%"REG_a", 2), %%mm1 \n\t" /* srcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
109 "movq %%mm0, %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
110 "punpcklwd %%mm1, %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
111 "punpckhwd %%mm1, %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
112 "movq "STR(APCK_COEF)"(%%"REG_d"), %%mm1 \n\t" /* filterCoeff */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
113 "pmaddwd %%mm1, %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
114 "pmaddwd %%mm1, %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
115 "paddd %%mm0, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
116 "paddd %%mm3, %%mm5 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
117 "movq 8+" x "(%%"REG_S", %%"REG_a", 2), %%mm3 \n\t" /* srcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
118 "mov "STR(APCK_SIZE)"(%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
119 "add $"STR(APCK_SIZE)", %%"REG_d" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
120 "test %%"REG_S", %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
121 "movq %%mm2, %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
122 "punpcklwd %%mm3, %%mm2 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
123 "punpckhwd %%mm3, %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
124 "pmaddwd %%mm1, %%mm2 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
125 "pmaddwd %%mm1, %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
126 "paddd %%mm2, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
127 "paddd %%mm0, %%mm7 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
128 " jnz 1b \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
129 "psrad $16, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
130 "psrad $16, %%mm5 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
131 "psrad $16, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
132 "psrad $16, %%mm7 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
133 "movq "VROUNDER_OFFSET"(%0), %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
134 "packssdw %%mm5, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
135 "packssdw %%mm7, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
136 "paddw %%mm0, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
137 "paddw %%mm0, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
138 "psraw $3, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
139 "psraw $3, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
140 "packuswb %%mm6, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
141 MOVNTQ(%%mm4, (%1, %%REGa))\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
142 "add $8, %%"REG_a" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
143 "cmp %2, %%"REG_a" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
144 "lea " offset "(%0), %%"REG_d" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
145 "pxor %%mm4, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
146 "pxor %%mm5, %%mm5 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
147 "pxor %%mm6, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
148 "pxor %%mm7, %%mm7 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
149 "mov (%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
150 "jb 1b \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
151 :: "r" (&c->redDither),\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
152 "r" (dest), "g" (width)\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
153 : "%"REG_a, "%"REG_d, "%"REG_S\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
154 );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
155
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
156 #define YSCALEYUV2YV121 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
157 "mov %2, %%"REG_a" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
158 ASMALIGN(4) /* FIXME Unroll? */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
159 "1: \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
160 "movq (%0, %%"REG_a", 2), %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
161 "movq 8(%0, %%"REG_a", 2), %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
162 "psraw $7, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
163 "psraw $7, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
164 "packuswb %%mm1, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
165 MOVNTQ(%%mm0, (%1, %%REGa))\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
166 "add $8, %%"REG_a" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
167 "jnc 1b \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
168
27289
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
169 #define YSCALEYUV2YV121_ACCURATE \
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
170 "mov %2, %%"REG_a" \n\t"\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
171 "pcmpeqw %%mm7, %%mm7 \n\t"\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
172 "psrlw $15, %%mm7 \n\t"\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
173 "psllw $6, %%mm7 \n\t"\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
174 ASMALIGN(4) /* FIXME Unroll? */\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
175 "1: \n\t"\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
176 "movq (%0, %%"REG_a", 2), %%mm0 \n\t"\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
177 "movq 8(%0, %%"REG_a", 2), %%mm1 \n\t"\
27541
022dc2be8cf5 Fix overflow.
michael
parents: 27537
diff changeset
178 "paddsw %%mm7, %%mm0 \n\t"\
022dc2be8cf5 Fix overflow.
michael
parents: 27537
diff changeset
179 "paddsw %%mm7, %%mm1 \n\t"\
27289
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
180 "psraw $7, %%mm0 \n\t"\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
181 "psraw $7, %%mm1 \n\t"\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
182 "packuswb %%mm1, %%mm0 \n\t"\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
183 MOVNTQ(%%mm0, (%1, %%REGa))\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
184 "add $8, %%"REG_a" \n\t"\
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
185 "jnc 1b \n\t"
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
186
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
187 /*
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
188 :: "m" (-lumFilterSize), "m" (-chrFilterSize),
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
189 "m" (lumMmxFilter+lumFilterSize*4), "m" (chrMmxFilter+chrFilterSize*4),
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
190 "r" (dest), "m" (dstW),
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
191 "m" (lumSrc+lumFilterSize), "m" (chrSrc+chrFilterSize)
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
192 : "%eax", "%ebx", "%ecx", "%edx", "%esi"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
193 */
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
194 #define YSCALEYUV2PACKEDX_UV \
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
195 __asm__ volatile(\
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
196 "xor %%"REG_a", %%"REG_a" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
197 ASMALIGN(4)\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
198 "nop \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
199 "1: \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
200 "lea "CHR_MMX_FILTER_OFFSET"(%0), %%"REG_d" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
201 "mov (%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
202 "movq "VROUNDER_OFFSET"(%0), %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
203 "movq %%mm3, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
204 ASMALIGN(4)\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
205 "2: \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
206 "movq 8(%%"REG_d"), %%mm0 \n\t" /* filterCoeff */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
207 "movq (%%"REG_S", %%"REG_a"), %%mm2 \n\t" /* UsrcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
208 "movq "AV_STRINGIFY(VOF)"(%%"REG_S", %%"REG_a"), %%mm5 \n\t" /* VsrcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
209 "add $16, %%"REG_d" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
210 "mov (%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
211 "pmulhw %%mm0, %%mm2 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
212 "pmulhw %%mm0, %%mm5 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
213 "paddw %%mm2, %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
214 "paddw %%mm5, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
215 "test %%"REG_S", %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
216 " jnz 2b \n\t"\
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
217
28899
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
218 #define YSCALEYUV2PACKEDX_YA(offset,coeff,src1,src2,dst1,dst2) \
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
219 "lea "offset"(%0), %%"REG_d" \n\t"\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
220 "mov (%%"REG_d"), %%"REG_S" \n\t"\
28899
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
221 "movq "VROUNDER_OFFSET"(%0), "#dst1" \n\t"\
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
222 "movq "#dst1", "#dst2" \n\t"\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
223 ASMALIGN(4)\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
224 "2: \n\t"\
28899
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
225 "movq 8(%%"REG_d"), "#coeff" \n\t" /* filterCoeff */\
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
226 "movq (%%"REG_S", %%"REG_a", 2), "#src1" \n\t" /* Y1srcData */\
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
227 "movq 8(%%"REG_S", %%"REG_a", 2), "#src2" \n\t" /* Y2srcData */\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
228 "add $16, %%"REG_d" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
229 "mov (%%"REG_d"), %%"REG_S" \n\t"\
28899
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
230 "pmulhw "#coeff", "#src1" \n\t"\
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
231 "pmulhw "#coeff", "#src2" \n\t"\
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
232 "paddw "#src1", "#dst1" \n\t"\
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
233 "paddw "#src2", "#dst2" \n\t"\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
234 "test %%"REG_S", %%"REG_S" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
235 " jnz 2b \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
236
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
237 #define YSCALEYUV2PACKEDX \
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
238 YSCALEYUV2PACKEDX_UV \
28899
58ed7753cee9 Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macro
sdrik
parents: 28881
diff changeset
239 YSCALEYUV2PACKEDX_YA(LUM_MMX_FILTER_OFFSET,%%mm0,%%mm2,%%mm5,%%mm1,%%mm7) \
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
240
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
241 #define YSCALEYUV2PACKEDX_END \
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
242 :: "r" (&c->redDither), \
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
243 "m" (dummy), "m" (dummy), "m" (dummy),\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
244 "r" (dest), "m" (dstW) \
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
245 : "%"REG_a, "%"REG_d, "%"REG_S \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
246 );
19173
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
247
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
248 #define YSCALEYUV2PACKEDX_ACCURATE_UV \
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
249 __asm__ volatile(\
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
250 "xor %%"REG_a", %%"REG_a" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
251 ASMALIGN(4)\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
252 "nop \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
253 "1: \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
254 "lea "CHR_MMX_FILTER_OFFSET"(%0), %%"REG_d" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
255 "mov (%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
256 "pxor %%mm4, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
257 "pxor %%mm5, %%mm5 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
258 "pxor %%mm6, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
259 "pxor %%mm7, %%mm7 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
260 ASMALIGN(4)\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
261 "2: \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
262 "movq (%%"REG_S", %%"REG_a"), %%mm0 \n\t" /* UsrcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
263 "movq "AV_STRINGIFY(VOF)"(%%"REG_S", %%"REG_a"), %%mm2 \n\t" /* VsrcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
264 "mov "STR(APCK_PTR2)"(%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
265 "movq (%%"REG_S", %%"REG_a"), %%mm1 \n\t" /* UsrcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
266 "movq %%mm0, %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
267 "punpcklwd %%mm1, %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
268 "punpckhwd %%mm1, %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
269 "movq "STR(APCK_COEF)"(%%"REG_d"),%%mm1 \n\t" /* filterCoeff */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
270 "pmaddwd %%mm1, %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
271 "pmaddwd %%mm1, %%mm3 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
272 "paddd %%mm0, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
273 "paddd %%mm3, %%mm5 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
274 "movq "AV_STRINGIFY(VOF)"(%%"REG_S", %%"REG_a"), %%mm3 \n\t" /* VsrcData */\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
275 "mov "STR(APCK_SIZE)"(%%"REG_d"), %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
276 "add $"STR(APCK_SIZE)", %%"REG_d" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
277 "test %%"REG_S", %%"REG_S" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
278 "movq %%mm2, %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
279 "punpcklwd %%mm3, %%mm2 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
280 "punpckhwd %%mm3, %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
281 "pmaddwd %%mm1, %%mm2 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
282 "pmaddwd %%mm1, %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
283 "paddd %%mm2, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
284 "paddd %%mm0, %%mm7 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
285 " jnz 2b \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
286 "psrad $16, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
287 "psrad $16, %%mm5 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
288 "psrad $16, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
289 "psrad $16, %%mm7 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
290 "movq "VROUNDER_OFFSET"(%0), %%mm0 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
291 "packssdw %%mm5, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
292 "packssdw %%mm7, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
293 "paddw %%mm0, %%mm4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
294 "paddw %%mm0, %%mm6 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
295 "movq %%mm4, "U_TEMP"(%0) \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
296 "movq %%mm6, "V_TEMP"(%0) \n\t"\
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
297
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
298 #define YSCALEYUV2PACKEDX_ACCURATE_YA(offset) \
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
299 "lea "offset"(%0), %%"REG_d" \n\t"\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
300 "mov (%%"REG_d"), %%"REG_S" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
301 "pxor %%mm1, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
302 "pxor %%mm5, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
303 "pxor %%mm7, %%mm7 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
304 "pxor %%mm6, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
305 ASMALIGN(4)\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
306 "2: \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
307 "movq (%%"REG_S", %%"REG_a", 2), %%mm0 \n\t" /* Y1srcData */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
308 "movq 8(%%"REG_S", %%"REG_a", 2), %%mm2 \n\t" /* Y2srcData */\
27513
2550d0c5bcb6 Fix accurate rounding mode on x86_64.
michael
parents: 27512
diff changeset
309 "mov "STR(APCK_PTR2)"(%%"REG_d"), %%"REG_S" \n\t"\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
310 "movq (%%"REG_S", %%"REG_a", 2), %%mm4 \n\t" /* Y1srcData */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
311 "movq %%mm0, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
312 "punpcklwd %%mm4, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
313 "punpckhwd %%mm4, %%mm3 \n\t"\
27513
2550d0c5bcb6 Fix accurate rounding mode on x86_64.
michael
parents: 27512
diff changeset
314 "movq "STR(APCK_COEF)"(%%"REG_d"), %%mm4 \n\t" /* filterCoeff */\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
315 "pmaddwd %%mm4, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
316 "pmaddwd %%mm4, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
317 "paddd %%mm0, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
318 "paddd %%mm3, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
319 "movq 8(%%"REG_S", %%"REG_a", 2), %%mm3 \n\t" /* Y2srcData */\
27513
2550d0c5bcb6 Fix accurate rounding mode on x86_64.
michael
parents: 27512
diff changeset
320 "mov "STR(APCK_SIZE)"(%%"REG_d"), %%"REG_S" \n\t"\
2550d0c5bcb6 Fix accurate rounding mode on x86_64.
michael
parents: 27512
diff changeset
321 "add $"STR(APCK_SIZE)", %%"REG_d" \n\t"\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
322 "test %%"REG_S", %%"REG_S" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
323 "movq %%mm2, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
324 "punpcklwd %%mm3, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
325 "punpckhwd %%mm3, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
326 "pmaddwd %%mm4, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
327 "pmaddwd %%mm4, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
328 "paddd %%mm2, %%mm7 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
329 "paddd %%mm0, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
330 " jnz 2b \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
331 "psrad $16, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
332 "psrad $16, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
333 "psrad $16, %%mm7 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
334 "psrad $16, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
335 "movq "VROUNDER_OFFSET"(%0), %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
336 "packssdw %%mm5, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
337 "packssdw %%mm6, %%mm7 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
338 "paddw %%mm0, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
339 "paddw %%mm0, %%mm7 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
340 "movq "U_TEMP"(%0), %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
341 "movq "V_TEMP"(%0), %%mm4 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
342
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
343 #define YSCALEYUV2PACKEDX_ACCURATE \
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
344 YSCALEYUV2PACKEDX_ACCURATE_UV \
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
345 YSCALEYUV2PACKEDX_ACCURATE_YA(LUM_MMX_FILTER_OFFSET)
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
346
19173
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
347 #define YSCALEYUV2RGBX \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
348 "psubw "U_OFFSET"(%0), %%mm3 \n\t" /* (U-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
349 "psubw "V_OFFSET"(%0), %%mm4 \n\t" /* (V-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
350 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
351 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
352 "pmulhw "UG_COEFF"(%0), %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
353 "pmulhw "VG_COEFF"(%0), %%mm4 \n\t"\
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
354 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
355 "pmulhw "UB_COEFF"(%0), %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
356 "pmulhw "VR_COEFF"(%0), %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
357 "psubw "Y_OFFSET"(%0), %%mm1 \n\t" /* 8(Y-16)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
358 "psubw "Y_OFFSET"(%0), %%mm7 \n\t" /* 8(Y-16)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
359 "pmulhw "Y_COEFF"(%0), %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
360 "pmulhw "Y_COEFF"(%0), %%mm7 \n\t"\
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
361 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
362 "paddw %%mm3, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
363 "movq %%mm2, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
364 "movq %%mm5, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
365 "movq %%mm4, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
366 "punpcklwd %%mm2, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
367 "punpcklwd %%mm5, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
368 "punpcklwd %%mm4, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
369 "paddw %%mm1, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
370 "paddw %%mm1, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
371 "paddw %%mm1, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
372 "punpckhwd %%mm0, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
373 "punpckhwd %%mm6, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
374 "punpckhwd %%mm3, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
375 "paddw %%mm7, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
376 "paddw %%mm7, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
377 "paddw %%mm7, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
378 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
379 "packuswb %%mm0, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
380 "packuswb %%mm6, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
381 "packuswb %%mm3, %%mm4 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
382
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
383 #define REAL_YSCALEYUV2PACKED(index, c) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
384 "movq "CHR_MMX_FILTER_OFFSET"+8("#c"), %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
385 "movq "LUM_MMX_FILTER_OFFSET"+8("#c"), %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
386 "psraw $3, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
387 "psraw $3, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
388 "movq %%mm0, "CHR_MMX_FILTER_OFFSET"+8("#c") \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
389 "movq %%mm1, "LUM_MMX_FILTER_OFFSET"+8("#c") \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
390 "xor "#index", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
391 ASMALIGN(4)\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
392 "1: \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
393 "movq (%2, "#index"), %%mm2 \n\t" /* uvbuf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
394 "movq (%3, "#index"), %%mm3 \n\t" /* uvbuf1[eax]*/\
26133
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
395 "movq "AV_STRINGIFY(VOF)"(%2, "#index"), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
396 "movq "AV_STRINGIFY(VOF)"(%3, "#index"), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
397 "psubw %%mm3, %%mm2 \n\t" /* uvbuf0[eax] - uvbuf1[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
398 "psubw %%mm4, %%mm5 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
399 "movq "CHR_MMX_FILTER_OFFSET"+8("#c"), %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
400 "pmulhw %%mm0, %%mm2 \n\t" /* (uvbuf0[eax] - uvbuf1[eax])uvalpha1>>16*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
401 "pmulhw %%mm0, %%mm5 \n\t" /* (uvbuf0[eax+2048] - uvbuf1[eax+2048])uvalpha1>>16*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
402 "psraw $7, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
403 "psraw $7, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
404 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax]uvalpha1 - uvbuf1[eax](1-uvalpha1)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
405 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048]uvalpha1 - uvbuf1[eax+2048](1-uvalpha1)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
406 "movq (%0, "#index", 2), %%mm0 \n\t" /*buf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
407 "movq (%1, "#index", 2), %%mm1 \n\t" /*buf1[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
408 "movq 8(%0, "#index", 2), %%mm6 \n\t" /*buf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
409 "movq 8(%1, "#index", 2), %%mm7 \n\t" /*buf1[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
410 "psubw %%mm1, %%mm0 \n\t" /* buf0[eax] - buf1[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
411 "psubw %%mm7, %%mm6 \n\t" /* buf0[eax] - buf1[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
412 "pmulhw "LUM_MMX_FILTER_OFFSET"+8("#c"), %%mm0 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
413 "pmulhw "LUM_MMX_FILTER_OFFSET"+8("#c"), %%mm6 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
414 "psraw $7, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
415 "psraw $7, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
416 "paddw %%mm0, %%mm1 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
417 "paddw %%mm6, %%mm7 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22976
diff changeset
418
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
419 #define YSCALEYUV2PACKED(index, c) REAL_YSCALEYUV2PACKED(index, c)
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22976
diff changeset
420
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
421 #define REAL_YSCALEYUV2RGB_UV(index, c) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
422 "xor "#index", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
423 ASMALIGN(4)\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
424 "1: \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
425 "movq (%2, "#index"), %%mm2 \n\t" /* uvbuf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
426 "movq (%3, "#index"), %%mm3 \n\t" /* uvbuf1[eax]*/\
26133
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
427 "movq "AV_STRINGIFY(VOF)"(%2, "#index"), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
428 "movq "AV_STRINGIFY(VOF)"(%3, "#index"), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
429 "psubw %%mm3, %%mm2 \n\t" /* uvbuf0[eax] - uvbuf1[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
430 "psubw %%mm4, %%mm5 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
431 "movq "CHR_MMX_FILTER_OFFSET"+8("#c"), %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
432 "pmulhw %%mm0, %%mm2 \n\t" /* (uvbuf0[eax] - uvbuf1[eax])uvalpha1>>16*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
433 "pmulhw %%mm0, %%mm5 \n\t" /* (uvbuf0[eax+2048] - uvbuf1[eax+2048])uvalpha1>>16*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
434 "psraw $4, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
435 "psraw $4, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
436 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax]uvalpha1 - uvbuf1[eax](1-uvalpha1)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
437 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048]uvalpha1 - uvbuf1[eax+2048](1-uvalpha1)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
438 "psubw "U_OFFSET"("#c"), %%mm3 \n\t" /* (U-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
439 "psubw "V_OFFSET"("#c"), %%mm4 \n\t" /* (V-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
440 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
441 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
442 "pmulhw "UG_COEFF"("#c"), %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
443 "pmulhw "VG_COEFF"("#c"), %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
444 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
445
28908
3f077f2d4e84 Make the source buffer operands parametrized in the YSCALEYUV2RGB_YA macro
sdrik
parents: 28899
diff changeset
446 #define REAL_YSCALEYUV2RGB_YA(index, c, b1, b2) \
3f077f2d4e84 Make the source buffer operands parametrized in the YSCALEYUV2RGB_YA macro
sdrik
parents: 28899
diff changeset
447 "movq ("#b1", "#index", 2), %%mm0 \n\t" /*buf0[eax]*/\
3f077f2d4e84 Make the source buffer operands parametrized in the YSCALEYUV2RGB_YA macro
sdrik
parents: 28899
diff changeset
448 "movq ("#b2", "#index", 2), %%mm1 \n\t" /*buf1[eax]*/\
3f077f2d4e84 Make the source buffer operands parametrized in the YSCALEYUV2RGB_YA macro
sdrik
parents: 28899
diff changeset
449 "movq 8("#b1", "#index", 2), %%mm6 \n\t" /*buf0[eax]*/\
3f077f2d4e84 Make the source buffer operands parametrized in the YSCALEYUV2RGB_YA macro
sdrik
parents: 28899
diff changeset
450 "movq 8("#b2", "#index", 2), %%mm7 \n\t" /*buf1[eax]*/\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
451 "psubw %%mm1, %%mm0 \n\t" /* buf0[eax] - buf1[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
452 "psubw %%mm7, %%mm6 \n\t" /* buf0[eax] - buf1[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
453 "pmulhw "LUM_MMX_FILTER_OFFSET"+8("#c"), %%mm0 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
454 "pmulhw "LUM_MMX_FILTER_OFFSET"+8("#c"), %%mm6 \n\t" /* (buf0[eax] - buf1[eax])yalpha1>>16*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
455 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
456 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
457 "paddw %%mm0, %%mm1 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
458 "paddw %%mm6, %%mm7 \n\t" /* buf0[eax]yalpha1 + buf1[eax](1-yalpha1) >>16*/\
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
459
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
460 #define REAL_YSCALEYUV2RGB_COEFF(c) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
461 "pmulhw "UB_COEFF"("#c"), %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
462 "pmulhw "VR_COEFF"("#c"), %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
463 "psubw "Y_OFFSET"("#c"), %%mm1 \n\t" /* 8(Y-16)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
464 "psubw "Y_OFFSET"("#c"), %%mm7 \n\t" /* 8(Y-16)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
465 "pmulhw "Y_COEFF"("#c"), %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
466 "pmulhw "Y_COEFF"("#c"), %%mm7 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
467 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
468 "paddw %%mm3, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
469 "movq %%mm2, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
470 "movq %%mm5, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
471 "movq %%mm4, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
472 "punpcklwd %%mm2, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
473 "punpcklwd %%mm5, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
474 "punpcklwd %%mm4, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
475 "paddw %%mm1, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
476 "paddw %%mm1, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
477 "paddw %%mm1, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
478 "punpckhwd %%mm0, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
479 "punpckhwd %%mm6, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
480 "punpckhwd %%mm3, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
481 "paddw %%mm7, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
482 "paddw %%mm7, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
483 "paddw %%mm7, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
484 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
485 "packuswb %%mm0, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
486 "packuswb %%mm6, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
487 "packuswb %%mm3, %%mm4 \n\t"\
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
488
28908
3f077f2d4e84 Make the source buffer operands parametrized in the YSCALEYUV2RGB_YA macro
sdrik
parents: 28899
diff changeset
489 #define YSCALEYUV2RGB_YA(index, c, b1, b2) REAL_YSCALEYUV2RGB_YA(index, c, b1, b2)
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
490
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
491 #define YSCALEYUV2RGB(index, c) \
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
492 REAL_YSCALEYUV2RGB_UV(index, c) \
28908
3f077f2d4e84 Make the source buffer operands parametrized in the YSCALEYUV2RGB_YA macro
sdrik
parents: 28899
diff changeset
493 REAL_YSCALEYUV2RGB_YA(index, c, %0, %1) \
28651
7241319c2d93 splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,
stefang
parents: 28650
diff changeset
494 REAL_YSCALEYUV2RGB_COEFF(c)
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22976
diff changeset
495
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
496 #define REAL_YSCALEYUV2PACKED1(index, c) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
497 "xor "#index", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
498 ASMALIGN(4)\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
499 "1: \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
500 "movq (%2, "#index"), %%mm3 \n\t" /* uvbuf0[eax]*/\
26133
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
501 "movq "AV_STRINGIFY(VOF)"(%2, "#index"), %%mm4 \n\t" /* uvbuf0[eax+2048]*/\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
502 "psraw $7, %%mm3 \n\t" \
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
503 "psraw $7, %%mm4 \n\t" \
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
504 "movq (%0, "#index", 2), %%mm1 \n\t" /*buf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
505 "movq 8(%0, "#index", 2), %%mm7 \n\t" /*buf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
506 "psraw $7, %%mm1 \n\t" \
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
507 "psraw $7, %%mm7 \n\t" \
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22976
diff changeset
508
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
509 #define YSCALEYUV2PACKED1(index, c) REAL_YSCALEYUV2PACKED1(index, c)
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22976
diff changeset
510
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
511 #define REAL_YSCALEYUV2RGB1(index, c) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
512 "xor "#index", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
513 ASMALIGN(4)\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
514 "1: \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
515 "movq (%2, "#index"), %%mm3 \n\t" /* uvbuf0[eax]*/\
26133
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
516 "movq "AV_STRINGIFY(VOF)"(%2, "#index"), %%mm4 \n\t" /* uvbuf0[eax+2048]*/\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
517 "psraw $4, %%mm3 \n\t" /* uvbuf0[eax] - uvbuf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
518 "psraw $4, %%mm4 \n\t" /* uvbuf0[eax+2048] - uvbuf1[eax+2048] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
519 "psubw "U_OFFSET"("#c"), %%mm3 \n\t" /* (U-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
520 "psubw "V_OFFSET"("#c"), %%mm4 \n\t" /* (V-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
521 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
522 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
523 "pmulhw "UG_COEFF"("#c"), %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
524 "pmulhw "VG_COEFF"("#c"), %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
525 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
526 "movq (%0, "#index", 2), %%mm1 \n\t" /*buf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
527 "movq 8(%0, "#index", 2), %%mm7 \n\t" /*buf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
528 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
529 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
530 "pmulhw "UB_COEFF"("#c"), %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
531 "pmulhw "VR_COEFF"("#c"), %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
532 "psubw "Y_OFFSET"("#c"), %%mm1 \n\t" /* 8(Y-16)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
533 "psubw "Y_OFFSET"("#c"), %%mm7 \n\t" /* 8(Y-16)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
534 "pmulhw "Y_COEFF"("#c"), %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
535 "pmulhw "Y_COEFF"("#c"), %%mm7 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
536 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
537 "paddw %%mm3, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
538 "movq %%mm2, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
539 "movq %%mm5, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
540 "movq %%mm4, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
541 "punpcklwd %%mm2, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
542 "punpcklwd %%mm5, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
543 "punpcklwd %%mm4, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
544 "paddw %%mm1, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
545 "paddw %%mm1, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
546 "paddw %%mm1, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
547 "punpckhwd %%mm0, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
548 "punpckhwd %%mm6, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
549 "punpckhwd %%mm3, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
550 "paddw %%mm7, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
551 "paddw %%mm7, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
552 "paddw %%mm7, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
553 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
554 "packuswb %%mm0, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
555 "packuswb %%mm6, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
556 "packuswb %%mm3, %%mm4 \n\t"\
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
557
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
558 #define YSCALEYUV2RGB1(index, c) REAL_YSCALEYUV2RGB1(index, c)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
559
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
560 #define REAL_YSCALEYUV2PACKED1b(index, c) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
561 "xor "#index", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
562 ASMALIGN(4)\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
563 "1: \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
564 "movq (%2, "#index"), %%mm2 \n\t" /* uvbuf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
565 "movq (%3, "#index"), %%mm3 \n\t" /* uvbuf1[eax]*/\
26133
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
566 "movq "AV_STRINGIFY(VOF)"(%2, "#index"), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
567 "movq "AV_STRINGIFY(VOF)"(%3, "#index"), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
568 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax] + uvbuf1[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
569 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048] + uvbuf1[eax+2048]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
570 "psrlw $8, %%mm3 \n\t" \
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
571 "psrlw $8, %%mm4 \n\t" \
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
572 "movq (%0, "#index", 2), %%mm1 \n\t" /*buf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
573 "movq 8(%0, "#index", 2), %%mm7 \n\t" /*buf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
574 "psraw $7, %%mm1 \n\t" \
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
575 "psraw $7, %%mm7 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
576 #define YSCALEYUV2PACKED1b(index, c) REAL_YSCALEYUV2PACKED1b(index, c)
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22976
diff changeset
577
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
578 // do vertical chrominance interpolation
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
579 #define REAL_YSCALEYUV2RGB1b(index, c) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
580 "xor "#index", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
581 ASMALIGN(4)\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
582 "1: \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
583 "movq (%2, "#index"), %%mm2 \n\t" /* uvbuf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
584 "movq (%3, "#index"), %%mm3 \n\t" /* uvbuf1[eax]*/\
26133
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
585 "movq "AV_STRINGIFY(VOF)"(%2, "#index"), %%mm5 \n\t" /* uvbuf0[eax+2048]*/\
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
586 "movq "AV_STRINGIFY(VOF)"(%3, "#index"), %%mm4 \n\t" /* uvbuf1[eax+2048]*/\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
587 "paddw %%mm2, %%mm3 \n\t" /* uvbuf0[eax] + uvbuf1[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
588 "paddw %%mm5, %%mm4 \n\t" /* uvbuf0[eax+2048] + uvbuf1[eax+2048]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
589 "psrlw $5, %%mm3 \n\t" /*FIXME might overflow*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
590 "psrlw $5, %%mm4 \n\t" /*FIXME might overflow*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
591 "psubw "U_OFFSET"("#c"), %%mm3 \n\t" /* (U-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
592 "psubw "V_OFFSET"("#c"), %%mm4 \n\t" /* (V-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
593 "movq %%mm3, %%mm2 \n\t" /* (U-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
594 "movq %%mm4, %%mm5 \n\t" /* (V-128)8*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
595 "pmulhw "UG_COEFF"("#c"), %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
596 "pmulhw "VG_COEFF"("#c"), %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
597 /* mm2=(U-128)8, mm3=ug, mm4=vg mm5=(V-128)8 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
598 "movq (%0, "#index", 2), %%mm1 \n\t" /*buf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
599 "movq 8(%0, "#index", 2), %%mm7 \n\t" /*buf0[eax]*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
600 "psraw $4, %%mm1 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
601 "psraw $4, %%mm7 \n\t" /* buf0[eax] - buf1[eax] >>4*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
602 "pmulhw "UB_COEFF"("#c"), %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
603 "pmulhw "VR_COEFF"("#c"), %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
604 "psubw "Y_OFFSET"("#c"), %%mm1 \n\t" /* 8(Y-16)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
605 "psubw "Y_OFFSET"("#c"), %%mm7 \n\t" /* 8(Y-16)*/\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
606 "pmulhw "Y_COEFF"("#c"), %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
607 "pmulhw "Y_COEFF"("#c"), %%mm7 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
608 /* mm1= Y1, mm2=ub, mm3=ug, mm4=vg mm5=vr, mm7=Y2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
609 "paddw %%mm3, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
610 "movq %%mm2, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
611 "movq %%mm5, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
612 "movq %%mm4, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
613 "punpcklwd %%mm2, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
614 "punpcklwd %%mm5, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
615 "punpcklwd %%mm4, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
616 "paddw %%mm1, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
617 "paddw %%mm1, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
618 "paddw %%mm1, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
619 "punpckhwd %%mm0, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
620 "punpckhwd %%mm6, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
621 "punpckhwd %%mm3, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
622 "paddw %%mm7, %%mm0 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
623 "paddw %%mm7, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
624 "paddw %%mm7, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
625 /* mm0=B1, mm2=B2, mm3=G2, mm4=G1, mm5=R1, mm6=R2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
626 "packuswb %%mm0, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
627 "packuswb %%mm6, %%mm5 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
628 "packuswb %%mm3, %%mm4 \n\t"\
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
629
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
630 #define YSCALEYUV2RGB1b(index, c) REAL_YSCALEYUV2RGB1b(index, c)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
631
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
632 #define REAL_YSCALEYUV2RGB1_ALPHA(index) \
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
633 "movq (%1, "#index", 2), %%mm7 \n\t" /* abuf0[index ] */\
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
634 "movq 8(%1, "#index", 2), %%mm1 \n\t" /* abuf0[index+4] */\
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
635 "psraw $7, %%mm7 \n\t" /* abuf0[index ] >>7 */\
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
636 "psraw $7, %%mm1 \n\t" /* abuf0[index+4] >>7 */\
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
637 "packuswb %%mm1, %%mm7 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
638 #define YSCALEYUV2RGB1_ALPHA(index) REAL_YSCALEYUV2RGB1_ALPHA(index)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
639
28650
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
640 #define REAL_WRITEBGR32(dst, dstw, index, b, g, r, a, q0, q2, q3, t) \
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
641 "movq "#b", "#q2" \n\t" /* B */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
642 "movq "#r", "#t" \n\t" /* R */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
643 "punpcklbw "#g", "#b" \n\t" /* GBGBGBGB 0 */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
644 "punpcklbw "#a", "#r" \n\t" /* ARARARAR 0 */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
645 "punpckhbw "#g", "#q2" \n\t" /* GBGBGBGB 2 */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
646 "punpckhbw "#a", "#t" \n\t" /* ARARARAR 2 */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
647 "movq "#b", "#q0" \n\t" /* GBGBGBGB 0 */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
648 "movq "#q2", "#q3" \n\t" /* GBGBGBGB 2 */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
649 "punpcklwd "#r", "#q0" \n\t" /* ARGBARGB 0 */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
650 "punpckhwd "#r", "#b" \n\t" /* ARGBARGB 1 */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
651 "punpcklwd "#t", "#q2" \n\t" /* ARGBARGB 2 */\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
652 "punpckhwd "#t", "#q3" \n\t" /* ARGBARGB 3 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
653 \
28650
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
654 MOVNTQ( q0, (dst, index, 4))\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
655 MOVNTQ( b, 8(dst, index, 4))\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
656 MOVNTQ( q2, 16(dst, index, 4))\
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
657 MOVNTQ( q3, 24(dst, index, 4))\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
658 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
659 "add $8, "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
660 "cmp "#dstw", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
661 " jb 1b \n\t"
28650
585b5f224fcd make MMX registers parametrized in the WRITEBGR32 macro,
stefang
parents: 28520
diff changeset
662 #define WRITEBGR32(dst, dstw, index, b, g, r, a, q0, q2, q3, t) REAL_WRITEBGR32(dst, dstw, index, b, g, r, a, q0, q2, q3, t)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
663
27485
88f74be78ee2 Fix rgb15/16 vs. bgr part2.
michael
parents: 27291
diff changeset
664 #define REAL_WRITERGB16(dst, dstw, index) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
665 "pand "MANGLE(bF8)", %%mm2 \n\t" /* B */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
666 "pand "MANGLE(bFC)", %%mm4 \n\t" /* G */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
667 "pand "MANGLE(bF8)", %%mm5 \n\t" /* R */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
668 "psrlq $3, %%mm2 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
669 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
670 "movq %%mm2, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
671 "movq %%mm4, %%mm3 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
672 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
673 "punpcklbw %%mm7, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
674 "punpcklbw %%mm5, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
675 "punpckhbw %%mm7, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
676 "punpckhbw %%mm5, %%mm1 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
677 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
678 "psllq $3, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
679 "psllq $3, %%mm4 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
680 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
681 "por %%mm3, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
682 "por %%mm4, %%mm1 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
683 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
684 MOVNTQ(%%mm2, (dst, index, 2))\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
685 MOVNTQ(%%mm1, 8(dst, index, 2))\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
686 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
687 "add $8, "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
688 "cmp "#dstw", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
689 " jb 1b \n\t"
27485
88f74be78ee2 Fix rgb15/16 vs. bgr part2.
michael
parents: 27291
diff changeset
690 #define WRITERGB16(dst, dstw, index) REAL_WRITERGB16(dst, dstw, index)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
691
27485
88f74be78ee2 Fix rgb15/16 vs. bgr part2.
michael
parents: 27291
diff changeset
692 #define REAL_WRITERGB15(dst, dstw, index) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
693 "pand "MANGLE(bF8)", %%mm2 \n\t" /* B */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
694 "pand "MANGLE(bF8)", %%mm4 \n\t" /* G */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
695 "pand "MANGLE(bF8)", %%mm5 \n\t" /* R */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
696 "psrlq $3, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
697 "psrlq $1, %%mm5 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
698 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
699 "movq %%mm2, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
700 "movq %%mm4, %%mm3 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
701 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
702 "punpcklbw %%mm7, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
703 "punpcklbw %%mm5, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
704 "punpckhbw %%mm7, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
705 "punpckhbw %%mm5, %%mm1 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
706 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
707 "psllq $2, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
708 "psllq $2, %%mm4 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
709 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
710 "por %%mm3, %%mm2 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
711 "por %%mm4, %%mm1 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
712 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
713 MOVNTQ(%%mm2, (dst, index, 2))\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
714 MOVNTQ(%%mm1, 8(dst, index, 2))\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
715 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
716 "add $8, "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
717 "cmp "#dstw", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
718 " jb 1b \n\t"
27485
88f74be78ee2 Fix rgb15/16 vs. bgr part2.
michael
parents: 27291
diff changeset
719 #define WRITERGB15(dst, dstw, index) REAL_WRITERGB15(dst, dstw, index)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
720
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
721 #define WRITEBGR24OLD(dst, dstw, index) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
722 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
723 "movq %%mm2, %%mm1 \n\t" /* B */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
724 "movq %%mm5, %%mm6 \n\t" /* R */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
725 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
726 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
727 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
728 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
729 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
730 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
731 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
732 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
733 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
734 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
735 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
736 "movq %%mm0, %%mm4 \n\t" /* 0RGB0RGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
737 "psrlq $8, %%mm0 \n\t" /* 00RGB0RG 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
738 "pand "MANGLE(bm00000111)", %%mm4 \n\t" /* 00000RGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
739 "pand "MANGLE(bm11111000)", %%mm0 \n\t" /* 00RGB000 0.5 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
740 "por %%mm4, %%mm0 \n\t" /* 00RGBRGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
741 "movq %%mm2, %%mm4 \n\t" /* 0RGB0RGB 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
742 "psllq $48, %%mm2 \n\t" /* GB000000 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
743 "por %%mm2, %%mm0 \n\t" /* GBRGBRGB 0 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
744 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
745 "movq %%mm4, %%mm2 \n\t" /* 0RGB0RGB 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
746 "psrld $16, %%mm4 \n\t" /* 000R000R 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
747 "psrlq $24, %%mm2 \n\t" /* 0000RGB0 1.5 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
748 "por %%mm4, %%mm2 \n\t" /* 000RRGBR 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
749 "pand "MANGLE(bm00001111)", %%mm2 \n\t" /* 0000RGBR 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
750 "movq %%mm1, %%mm4 \n\t" /* 0RGB0RGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
751 "psrlq $8, %%mm1 \n\t" /* 00RGB0RG 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
752 "pand "MANGLE(bm00000111)", %%mm4 \n\t" /* 00000RGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
753 "pand "MANGLE(bm11111000)", %%mm1 \n\t" /* 00RGB000 2.5 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
754 "por %%mm4, %%mm1 \n\t" /* 00RGBRGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
755 "movq %%mm1, %%mm4 \n\t" /* 00RGBRGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
756 "psllq $32, %%mm1 \n\t" /* BRGB0000 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
757 "por %%mm1, %%mm2 \n\t" /* BRGBRGBR 1 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
758 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
759 "psrlq $32, %%mm4 \n\t" /* 000000RG 2.5 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
760 "movq %%mm3, %%mm5 \n\t" /* 0RGB0RGB 3 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
761 "psrlq $8, %%mm3 \n\t" /* 00RGB0RG 3 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
762 "pand "MANGLE(bm00000111)", %%mm5 \n\t" /* 00000RGB 3 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
763 "pand "MANGLE(bm11111000)", %%mm3 \n\t" /* 00RGB000 3.5 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
764 "por %%mm5, %%mm3 \n\t" /* 00RGBRGB 3 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
765 "psllq $16, %%mm3 \n\t" /* RGBRGB00 3 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
766 "por %%mm4, %%mm3 \n\t" /* RGBRGBRG 2.5 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
767 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
768 MOVNTQ(%%mm0, (dst))\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
769 MOVNTQ(%%mm2, 8(dst))\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
770 MOVNTQ(%%mm3, 16(dst))\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
771 "add $24, "#dst" \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
772 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
773 "add $8, "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
774 "cmp "#dstw", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
775 " jb 1b \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
776
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
777 #define WRITEBGR24MMX(dst, dstw, index) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
778 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
779 "movq %%mm2, %%mm1 \n\t" /* B */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
780 "movq %%mm5, %%mm6 \n\t" /* R */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
781 "punpcklbw %%mm4, %%mm2 \n\t" /* GBGBGBGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
782 "punpcklbw %%mm7, %%mm5 \n\t" /* 0R0R0R0R 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
783 "punpckhbw %%mm4, %%mm1 \n\t" /* GBGBGBGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
784 "punpckhbw %%mm7, %%mm6 \n\t" /* 0R0R0R0R 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
785 "movq %%mm2, %%mm0 \n\t" /* GBGBGBGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
786 "movq %%mm1, %%mm3 \n\t" /* GBGBGBGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
787 "punpcklwd %%mm5, %%mm0 \n\t" /* 0RGB0RGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
788 "punpckhwd %%mm5, %%mm2 \n\t" /* 0RGB0RGB 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
789 "punpcklwd %%mm6, %%mm1 \n\t" /* 0RGB0RGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
790 "punpckhwd %%mm6, %%mm3 \n\t" /* 0RGB0RGB 3 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
791 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
792 "movq %%mm0, %%mm4 \n\t" /* 0RGB0RGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
793 "movq %%mm2, %%mm6 \n\t" /* 0RGB0RGB 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
794 "movq %%mm1, %%mm5 \n\t" /* 0RGB0RGB 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
795 "movq %%mm3, %%mm7 \n\t" /* 0RGB0RGB 3 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
796 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
797 "psllq $40, %%mm0 \n\t" /* RGB00000 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
798 "psllq $40, %%mm2 \n\t" /* RGB00000 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
799 "psllq $40, %%mm1 \n\t" /* RGB00000 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
800 "psllq $40, %%mm3 \n\t" /* RGB00000 3 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
801 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
802 "punpckhdq %%mm4, %%mm0 \n\t" /* 0RGBRGB0 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
803 "punpckhdq %%mm6, %%mm2 \n\t" /* 0RGBRGB0 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
804 "punpckhdq %%mm5, %%mm1 \n\t" /* 0RGBRGB0 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
805 "punpckhdq %%mm7, %%mm3 \n\t" /* 0RGBRGB0 3 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
806 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
807 "psrlq $8, %%mm0 \n\t" /* 00RGBRGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
808 "movq %%mm2, %%mm6 \n\t" /* 0RGBRGB0 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
809 "psllq $40, %%mm2 \n\t" /* GB000000 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
810 "por %%mm2, %%mm0 \n\t" /* GBRGBRGB 0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
811 MOVNTQ(%%mm0, (dst))\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
812 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
813 "psrlq $24, %%mm6 \n\t" /* 0000RGBR 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
814 "movq %%mm1, %%mm5 \n\t" /* 0RGBRGB0 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
815 "psllq $24, %%mm1 \n\t" /* BRGB0000 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
816 "por %%mm1, %%mm6 \n\t" /* BRGBRGBR 1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
817 MOVNTQ(%%mm6, 8(dst))\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
818 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
819 "psrlq $40, %%mm5 \n\t" /* 000000RG 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
820 "psllq $8, %%mm3 \n\t" /* RGBRGB00 3 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
821 "por %%mm3, %%mm5 \n\t" /* RGBRGBRG 2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
822 MOVNTQ(%%mm5, 16(dst))\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
823 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
824 "add $24, "#dst" \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
825 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
826 "add $8, "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
827 "cmp "#dstw", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
828 " jb 1b \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
829
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
830 #define WRITEBGR24MMX2(dst, dstw, index) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
831 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */\
25882
2ad528dd42a0 Make some assembler constants global instead of declaring them multiple times.
reimar
parents: 25752
diff changeset
832 "movq "MANGLE(ff_M24A)", %%mm0 \n\t"\
2ad528dd42a0 Make some assembler constants global instead of declaring them multiple times.
reimar
parents: 25752
diff changeset
833 "movq "MANGLE(ff_M24C)", %%mm7 \n\t"\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
834 "pshufw $0x50, %%mm2, %%mm1 \n\t" /* B3 B2 B3 B2 B1 B0 B1 B0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
835 "pshufw $0x50, %%mm4, %%mm3 \n\t" /* G3 G2 G3 G2 G1 G0 G1 G0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
836 "pshufw $0x00, %%mm5, %%mm6 \n\t" /* R1 R0 R1 R0 R1 R0 R1 R0 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
837 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
838 "pand %%mm0, %%mm1 \n\t" /* B2 B1 B0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
839 "pand %%mm0, %%mm3 \n\t" /* G2 G1 G0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
840 "pand %%mm7, %%mm6 \n\t" /* R1 R0 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
841 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
842 "psllq $8, %%mm3 \n\t" /* G2 G1 G0 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
843 "por %%mm1, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
844 "por %%mm3, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
845 MOVNTQ(%%mm6, (dst))\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
846 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
847 "psrlq $8, %%mm4 \n\t" /* 00 G7 G6 G5 G4 G3 G2 G1 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
848 "pshufw $0xA5, %%mm2, %%mm1 \n\t" /* B5 B4 B5 B4 B3 B2 B3 B2 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
849 "pshufw $0x55, %%mm4, %%mm3 \n\t" /* G4 G3 G4 G3 G4 G3 G4 G3 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
850 "pshufw $0xA5, %%mm5, %%mm6 \n\t" /* R5 R4 R5 R4 R3 R2 R3 R2 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
851 \
25882
2ad528dd42a0 Make some assembler constants global instead of declaring them multiple times.
reimar
parents: 25752
diff changeset
852 "pand "MANGLE(ff_M24B)", %%mm1 \n\t" /* B5 B4 B3 */\
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
853 "pand %%mm7, %%mm3 \n\t" /* G4 G3 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
854 "pand %%mm0, %%mm6 \n\t" /* R4 R3 R2 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
855 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
856 "por %%mm1, %%mm3 \n\t" /* B5 G4 B4 G3 B3 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
857 "por %%mm3, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
858 MOVNTQ(%%mm6, 8(dst))\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
859 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
860 "pshufw $0xFF, %%mm2, %%mm1 \n\t" /* B7 B6 B7 B6 B7 B6 B6 B7 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
861 "pshufw $0xFA, %%mm4, %%mm3 \n\t" /* 00 G7 00 G7 G6 G5 G6 G5 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
862 "pshufw $0xFA, %%mm5, %%mm6 \n\t" /* R7 R6 R7 R6 R5 R4 R5 R4 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
863 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
864 "pand %%mm7, %%mm1 \n\t" /* B7 B6 */\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
865 "pand %%mm0, %%mm3 \n\t" /* G7 G6 G5 */\
25882
2ad528dd42a0 Make some assembler constants global instead of declaring them multiple times.
reimar
parents: 25752
diff changeset
866 "pand "MANGLE(ff_M24B)", %%mm6 \n\t" /* R7 R6 R5 */\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
867 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
868 "por %%mm1, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
869 "por %%mm3, %%mm6 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
870 MOVNTQ(%%mm6, 16(dst))\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
871 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
872 "add $24, "#dst" \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
873 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
874 "add $8, "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
875 "cmp "#dstw", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
876 " jb 1b \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
877
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
878 #if COMPILE_TEMPLATE_MMX2
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
879 #undef WRITEBGR24
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
880 #define WRITEBGR24(dst, dstw, index) WRITEBGR24MMX2(dst, dstw, index)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
881 #else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
882 #undef WRITEBGR24
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
883 #define WRITEBGR24(dst, dstw, index) WRITEBGR24MMX(dst, dstw, index)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
884 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
885
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
886 #define REAL_WRITEYUY2(dst, dstw, index) \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
887 "packuswb %%mm3, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
888 "packuswb %%mm4, %%mm4 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
889 "packuswb %%mm7, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
890 "punpcklbw %%mm4, %%mm3 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
891 "movq %%mm1, %%mm7 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
892 "punpcklbw %%mm3, %%mm1 \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
893 "punpckhbw %%mm3, %%mm7 \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
894 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
895 MOVNTQ(%%mm1, (dst, index, 2))\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
896 MOVNTQ(%%mm7, 8(dst, index, 2))\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
897 \
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
898 "add $8, "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
899 "cmp "#dstw", "#index" \n\t"\
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
900 " jb 1b \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
901 #define WRITEYUY2(dst, dstw, index) REAL_WRITEYUY2(dst, dstw, index)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
902
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
903
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
904 static inline void RENAME(yuv2yuvX)(SwsContext *c, const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
905 const int16_t *chrFilter, const int16_t **chrSrc, int chrFilterSize, const int16_t **alpSrc,
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
906 uint8_t *dest, uint8_t *uDest, uint8_t *vDest, uint8_t *aDest, long dstW, long chrDstW)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
907 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
908 #if COMPILE_TEMPLATE_MMX
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
909 if(!(c->flags & SWS_BITEXACT)) {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
910 if (c->flags & SWS_ACCURATE_RND) {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
911 if (uDest) {
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
912 YSCALEYUV2YV12X_ACCURATE( "0", CHR_MMX_FILTER_OFFSET, uDest, chrDstW)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
913 YSCALEYUV2YV12X_ACCURATE(AV_STRINGIFY(VOF), CHR_MMX_FILTER_OFFSET, vDest, chrDstW)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
914 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
915 if (CONFIG_SWSCALE_ALPHA && aDest) {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
916 YSCALEYUV2YV12X_ACCURATE( "0", ALP_MMX_FILTER_OFFSET, aDest, dstW)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
917 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
918
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
919 YSCALEYUV2YV12X_ACCURATE("0", LUM_MMX_FILTER_OFFSET, dest, dstW)
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
920 } else {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
921 if (uDest) {
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
922 YSCALEYUV2YV12X( "0", CHR_MMX_FILTER_OFFSET, uDest, chrDstW)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
923 YSCALEYUV2YV12X(AV_STRINGIFY(VOF), CHR_MMX_FILTER_OFFSET, vDest, chrDstW)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
924 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
925 if (CONFIG_SWSCALE_ALPHA && aDest) {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
926 YSCALEYUV2YV12X( "0", ALP_MMX_FILTER_OFFSET, aDest, dstW)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
927 }
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
928
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
929 YSCALEYUV2YV12X("0", LUM_MMX_FILTER_OFFSET, dest, dstW)
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
930 }
27565
5ff11e5336e1 Disable mmx routines that are not bitexact when the user wants
michael
parents: 27564
diff changeset
931 return;
5ff11e5336e1 Disable mmx routines that are not bitexact when the user wants
michael
parents: 27564
diff changeset
932 }
5ff11e5336e1 Disable mmx routines that are not bitexact when the user wants
michael
parents: 27564
diff changeset
933 #endif
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
934 #if COMPILE_TEMPLATE_ALTIVEC
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
935 yuv2yuvX_altivec_real(lumFilter, lumSrc, lumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
936 chrFilter, chrSrc, chrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
937 dest, uDest, vDest, dstW, chrDstW);
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
938 #else //COMPILE_TEMPLATE_ALTIVEC
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
939 yuv2yuvXinC(lumFilter, lumSrc, lumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
940 chrFilter, chrSrc, chrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
941 alpSrc, dest, uDest, vDest, aDest, dstW, chrDstW);
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
942 #endif //!COMPILE_TEMPLATE_ALTIVEC
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
943 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
944
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
945 static inline void RENAME(yuv2nv12X)(SwsContext *c, const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
946 const int16_t *chrFilter, const int16_t **chrSrc, int chrFilterSize,
29815
3e8bf15f96d6 Use enum PixelFormat instead of int for srcFormat and dstFormat.
cehoyos
parents: 29659
diff changeset
947 uint8_t *dest, uint8_t *uDest, int dstW, int chrDstW, enum PixelFormat dstFormat)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
948 {
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
949 yuv2nv12XinC(lumFilter, lumSrc, lumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
950 chrFilter, chrSrc, chrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
951 dest, uDest, dstW, chrDstW, dstFormat);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
952 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
953
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
954 static inline void RENAME(yuv2yuv1)(SwsContext *c, const int16_t *lumSrc, const int16_t *chrSrc, const int16_t *alpSrc,
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
955 uint8_t *dest, uint8_t *uDest, uint8_t *vDest, uint8_t *aDest, long dstW, long chrDstW)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
956 {
27565
5ff11e5336e1 Disable mmx routines that are not bitexact when the user wants
michael
parents: 27564
diff changeset
957 int i;
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
958 #if COMPILE_TEMPLATE_MMX
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
959 if(!(c->flags & SWS_BITEXACT)) {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
960 long p= 4;
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
961 uint8_t *src[4]= {alpSrc + dstW, lumSrc + dstW, chrSrc + chrDstW, chrSrc + VOFW + chrDstW};
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
962 uint8_t *dst[4]= {aDest, dest, uDest, vDest};
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
963 x86_reg counter[4]= {dstW, dstW, chrDstW, chrDstW};
27288
37014889f212 simplify yuv2yuv1()
michael
parents: 27182
diff changeset
964
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
965 if (c->flags & SWS_ACCURATE_RND) {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
966 while(p--) {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
967 if (dst[p]) {
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
968 __asm__ volatile(
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
969 YSCALEYUV2YV121_ACCURATE
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
970 :: "r" (src[p]), "r" (dst[p] + counter[p]),
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
971 "g" (-counter[p])
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
972 : "%"REG_a
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
973 );
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
974 }
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
975 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
976 } else {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
977 while(p--) {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
978 if (dst[p]) {
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
979 __asm__ volatile(
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
980 YSCALEYUV2YV121
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
981 :: "r" (src[p]), "r" (dst[p] + counter[p]),
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
982 "g" (-counter[p])
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
983 : "%"REG_a
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
984 );
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
985 }
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
986 }
27289
2c9fa9b25781 Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.
michael
parents: 27288
diff changeset
987 }
27565
5ff11e5336e1 Disable mmx routines that are not bitexact when the user wants
michael
parents: 27564
diff changeset
988 return;
5ff11e5336e1 Disable mmx routines that are not bitexact when the user wants
michael
parents: 27564
diff changeset
989 }
5ff11e5336e1 Disable mmx routines that are not bitexact when the user wants
michael
parents: 27564
diff changeset
990 #endif
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
991 for (i=0; i<dstW; i++) {
27291
ca46d66b3143 Make C code in yuv2yuv1() do accurate rounding, this could be split
michael
parents: 27290
diff changeset
992 int val= (lumSrc[i]+64)>>7;
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22976
diff changeset
993
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
994 if (val&256) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
995 if (val<0) val=0;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
996 else val=255;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
997 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
998
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
999 dest[i]= val;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1000 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1001
25752
559b0e9d47fb Change (a == NULL) condition to (!a) and (a != NULL) condition to (a).
benoit
parents: 25749
diff changeset
1002 if (uDest)
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1003 for (i=0; i<chrDstW; i++) {
27291
ca46d66b3143 Make C code in yuv2yuv1() do accurate rounding, this could be split
michael
parents: 27290
diff changeset
1004 int u=(chrSrc[i ]+64)>>7;
ca46d66b3143 Make C code in yuv2yuv1() do accurate rounding, this could be split
michael
parents: 27290
diff changeset
1005 int v=(chrSrc[i + VOFW]+64)>>7;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1006
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1007 if ((u|v)&256) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1008 if (u<0) u=0;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1009 else if (u>255) u=255;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1010 if (v<0) v=0;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1011 else if (v>255) v=255;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1012 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1013
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1014 uDest[i]= u;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1015 vDest[i]= v;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1016 }
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1017
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1018 if (CONFIG_SWSCALE_ALPHA && aDest)
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1019 for (i=0; i<dstW; i++) {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1020 int val= (alpSrc[i]+64)>>7;
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1021 aDest[i]= av_clip_uint8(val);
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1022 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1023 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1024
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1025
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1026 /**
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1027 * vertical scale YV12 to RGB
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1028 */
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1029 static inline void RENAME(yuv2packedX)(SwsContext *c, const int16_t *lumFilter, const int16_t **lumSrc, int lumFilterSize,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1030 const int16_t *chrFilter, const int16_t **chrSrc, int chrFilterSize,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1031 const int16_t **alpSrc, uint8_t *dest, long dstW, long dstY)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1032 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1033 #if COMPILE_TEMPLATE_MMX
28957
e538af2c69c1 Do not assume long is same width as x86 register.
ramiro
parents: 28953
diff changeset
1034 x86_reg dummy=0;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1035 if(!(c->flags & SWS_BITEXACT)) {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1036 if (c->flags & SWS_ACCURATE_RND) {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1037 switch(c->dstFormat) {
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1038 case PIX_FMT_RGB32:
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1039 if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf) {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1040 YSCALEYUV2PACKEDX_ACCURATE
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1041 YSCALEYUV2RGBX
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1042 "movq %%mm2, "U_TEMP"(%0) \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1043 "movq %%mm4, "V_TEMP"(%0) \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1044 "movq %%mm5, "Y_TEMP"(%0) \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1045 YSCALEYUV2PACKEDX_ACCURATE_YA(ALP_MMX_FILTER_OFFSET)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1046 "movq "Y_TEMP"(%0), %%mm5 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1047 "psraw $3, %%mm1 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1048 "psraw $3, %%mm7 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1049 "packuswb %%mm7, %%mm1 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1050 WRITEBGR32(%4, %5, %%REGa, %%mm3, %%mm4, %%mm5, %%mm1, %%mm0, %%mm7, %%mm2, %%mm6)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1051
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1052 YSCALEYUV2PACKEDX_END
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1053 } else {
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1054 YSCALEYUV2PACKEDX_ACCURATE
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1055 YSCALEYUV2RGBX
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1056 "pcmpeqd %%mm7, %%mm7 \n\t"
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1057 WRITEBGR32(%4, %5, %%REGa, %%mm2, %%mm4, %%mm5, %%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
19172
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
1058
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1059 YSCALEYUV2PACKEDX_END
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1060 }
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1061 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1062 case PIX_FMT_BGR24:
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1063 YSCALEYUV2PACKEDX_ACCURATE
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1064 YSCALEYUV2RGBX
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
1065 "pxor %%mm7, %%mm7 \n\t"
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1066 "lea (%%"REG_a", %%"REG_a", 2), %%"REG_c"\n\t" //FIXME optimize
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1067 "add %4, %%"REG_c" \n\t"
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1068 WRITEBGR24(%%REGc, %5, %%REGa)
19173
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
1069
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
1070
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1071 :: "r" (&c->redDither),
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1072 "m" (dummy), "m" (dummy), "m" (dummy),
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1073 "r" (dest), "m" (dstW)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1074 : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1075 );
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1076 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1077 case PIX_FMT_RGB555:
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1078 YSCALEYUV2PACKEDX_ACCURATE
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1079 YSCALEYUV2RGBX
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
1080 "pxor %%mm7, %%mm7 \n\t"
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1081 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
19173
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
1082 #ifdef DITHER1XBPP
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1083 "paddusb "BLUE_DITHER"(%0), %%mm2\n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1084 "paddusb "GREEN_DITHER"(%0), %%mm4\n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1085 "paddusb "RED_DITHER"(%0), %%mm5\n\t"
19173
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
1086 #endif
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
1087
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1088 WRITERGB15(%4, %5, %%REGa)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1089 YSCALEYUV2PACKEDX_END
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1090 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1091 case PIX_FMT_RGB565:
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1092 YSCALEYUV2PACKEDX_ACCURATE
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1093 YSCALEYUV2RGBX
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
1094 "pxor %%mm7, %%mm7 \n\t"
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1095 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
19173
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
1096 #ifdef DITHER1XBPP
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1097 "paddusb "BLUE_DITHER"(%0), %%mm2\n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1098 "paddusb "GREEN_DITHER"(%0), %%mm4\n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1099 "paddusb "RED_DITHER"(%0), %%mm5\n\t"
19173
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
1100 #endif
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
1101
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1102 WRITERGB16(%4, %5, %%REGa)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1103 YSCALEYUV2PACKEDX_END
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1104 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1105 case PIX_FMT_YUYV422:
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1106 YSCALEYUV2PACKEDX_ACCURATE
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1107 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
19173
dbdc58b6e9bb a tiny bit of cleanup
michael
parents: 19172
diff changeset
1108
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1109 "psraw $3, %%mm3 \n\t"
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1110 "psraw $3, %%mm4 \n\t"
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1111 "psraw $3, %%mm1 \n\t"
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1112 "psraw $3, %%mm7 \n\t"
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1113 WRITEYUY2(%4, %5, %%REGa)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1114 YSCALEYUV2PACKEDX_END
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1115 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1116 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1117 } else {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1118 switch(c->dstFormat) {
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1119 case PIX_FMT_RGB32:
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1120 if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf) {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1121 YSCALEYUV2PACKEDX
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1122 YSCALEYUV2RGBX
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1123 YSCALEYUV2PACKEDX_YA(ALP_MMX_FILTER_OFFSET, %%mm0, %%mm3, %%mm6, %%mm1, %%mm7)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1124 "psraw $3, %%mm1 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1125 "psraw $3, %%mm7 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1126 "packuswb %%mm7, %%mm1 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1127 WRITEBGR32(%4, %5, %%REGa, %%mm2, %%mm4, %%mm5, %%mm1, %%mm0, %%mm7, %%mm3, %%mm6)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1128 YSCALEYUV2PACKEDX_END
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1129 } else {
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1130 YSCALEYUV2PACKEDX
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1131 YSCALEYUV2RGBX
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1132 "pcmpeqd %%mm7, %%mm7 \n\t"
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1133 WRITEBGR32(%4, %5, %%REGa, %%mm2, %%mm4, %%mm5, %%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1134 YSCALEYUV2PACKEDX_END
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1135 }
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1136 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1137 case PIX_FMT_BGR24:
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1138 YSCALEYUV2PACKEDX
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1139 YSCALEYUV2RGBX
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
1140 "pxor %%mm7, %%mm7 \n\t"
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1141 "lea (%%"REG_a", %%"REG_a", 2), %%"REG_c" \n\t" //FIXME optimize
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1142 "add %4, %%"REG_c" \n\t"
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1143 WRITEBGR24(%%REGc, %5, %%REGa)
19172
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
1144
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1145 :: "r" (&c->redDither),
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1146 "m" (dummy), "m" (dummy), "m" (dummy),
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1147 "r" (dest), "m" (dstW)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1148 : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1149 );
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1150 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1151 case PIX_FMT_RGB555:
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1152 YSCALEYUV2PACKEDX
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1153 YSCALEYUV2RGBX
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
1154 "pxor %%mm7, %%mm7 \n\t"
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1155 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
19172
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
1156 #ifdef DITHER1XBPP
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1157 "paddusb "BLUE_DITHER"(%0), %%mm2 \n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1158 "paddusb "GREEN_DITHER"(%0), %%mm4 \n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1159 "paddusb "RED_DITHER"(%0), %%mm5 \n\t"
19172
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
1160 #endif
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
1161
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1162 WRITERGB15(%4, %5, %%REGa)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1163 YSCALEYUV2PACKEDX_END
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1164 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1165 case PIX_FMT_RGB565:
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1166 YSCALEYUV2PACKEDX
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1167 YSCALEYUV2RGBX
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
1168 "pxor %%mm7, %%mm7 \n\t"
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1169 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
19172
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
1170 #ifdef DITHER1XBPP
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1171 "paddusb "BLUE_DITHER"(%0), %%mm2 \n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1172 "paddusb "GREEN_DITHER"(%0), %%mm4 \n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1173 "paddusb "RED_DITHER"(%0), %%mm5 \n\t"
19172
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
1174 #endif
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
1175
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1176 WRITERGB16(%4, %5, %%REGa)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1177 YSCALEYUV2PACKEDX_END
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1178 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1179 case PIX_FMT_YUYV422:
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1180 YSCALEYUV2PACKEDX
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1181 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1182
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1183 "psraw $3, %%mm3 \n\t"
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1184 "psraw $3, %%mm4 \n\t"
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1185 "psraw $3, %%mm1 \n\t"
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1186 "psraw $3, %%mm7 \n\t"
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1187 WRITEYUY2(%4, %5, %%REGa)
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1188 YSCALEYUV2PACKEDX_END
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1189 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1190 }
19172
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
1191 }
bae6c99a99cc vertical scaler with accurate rounding, some people on doom9 can see +-1 errors
michael
parents: 18861
diff changeset
1192 }
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1193 #endif /* COMPILE_TEMPLATE_MMX */
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1194 #if COMPILE_TEMPLATE_ALTIVEC
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1195 /* The following list of supported dstFormat values should
28953
1e56ea9937ce Consistently use ff_ prefixes for internal symbols.
diego
parents: 28908
diff changeset
1196 match what's found in the body of ff_yuv2packedX_altivec() */
28980
90e69faca51d Fix swscale compilation with Altivec enabled.
reimar
parents: 28979
diff changeset
1197 if (!(c->flags & SWS_BITEXACT) && !c->alpPixBuf &&
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
1198 (c->dstFormat==PIX_FMT_ABGR || c->dstFormat==PIX_FMT_BGRA ||
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
1199 c->dstFormat==PIX_FMT_BGR24 || c->dstFormat==PIX_FMT_RGB24 ||
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
1200 c->dstFormat==PIX_FMT_RGBA || c->dstFormat==PIX_FMT_ARGB))
28953
1e56ea9937ce Consistently use ff_ prefixes for internal symbols.
diego
parents: 28908
diff changeset
1201 ff_yuv2packedX_altivec(c, lumFilter, lumSrc, lumFilterSize,
1e56ea9937ce Consistently use ff_ prefixes for internal symbols.
diego
parents: 28908
diff changeset
1202 chrFilter, chrSrc, chrFilterSize,
1e56ea9937ce Consistently use ff_ prefixes for internal symbols.
diego
parents: 28908
diff changeset
1203 dest, dstW, dstY);
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1204 else
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1205 #endif
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1206 yuv2packedXinC(c, lumFilter, lumSrc, lumFilterSize,
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1207 chrFilter, chrSrc, chrFilterSize,
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1208 alpSrc, dest, dstW, dstY);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1209 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1210
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1211 /**
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1212 * vertical bilinear scale YV12 to RGB
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1213 */
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1214 static inline void RENAME(yuv2packed2)(SwsContext *c, const uint16_t *buf0, const uint16_t *buf1, const uint16_t *uvbuf0, const uint16_t *uvbuf1,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1215 const uint16_t *abuf0, const uint16_t *abuf1, uint8_t *dest, int dstW, int yalpha, int uvalpha, int y)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1216 {
27542
090bf8535df8 Make the 2point linear interpolation coefficients correct even for the
michael
parents: 27541
diff changeset
1217 int yalpha1=4095- yalpha;
090bf8535df8 Make the 2point linear interpolation coefficients correct even for the
michael
parents: 27541
diff changeset
1218 int uvalpha1=4095-uvalpha;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1219 int i;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1220
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1221 #if COMPILE_TEMPLATE_MMX
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1222 if(!(c->flags & SWS_BITEXACT)) {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1223 switch(c->dstFormat) {
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1224 //Note 8280 == DSTW_OFFSET but the preprocessor can't handle that there :(
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1225 case PIX_FMT_RGB32:
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1226 if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf) {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1227 #if ARCH_X86_64
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1228 __asm__ volatile(
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1229 YSCALEYUV2RGB(%%REGBP, %5)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1230 YSCALEYUV2RGB_YA(%%REGBP, %5, %6, %7)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1231 "psraw $3, %%mm1 \n\t" /* abuf0[eax] - abuf1[eax] >>7*/
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1232 "psraw $3, %%mm7 \n\t" /* abuf0[eax] - abuf1[eax] >>7*/
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1233 "packuswb %%mm7, %%mm1 \n\t"
28981
e975109ff839 Do _not_ use rbx on x86_64, it will fail to compile with PIC, besides it
reimar
parents: 28980
diff changeset
1234 WRITEBGR32(%4, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, %%mm1, %%mm0, %%mm7, %%mm3, %%mm6)
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1235
28981
e975109ff839 Do _not_ use rbx on x86_64, it will fail to compile with PIC, besides it
reimar
parents: 28980
diff changeset
1236 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "r" (dest),
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1237 "a" (&c->redDither)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1238 ,"r" (abuf0), "r" (abuf1)
28981
e975109ff839 Do _not_ use rbx on x86_64, it will fail to compile with PIC, besides it
reimar
parents: 28980
diff changeset
1239 : "%"REG_BP
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1240 );
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1241 #else
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1242 *(uint16_t **)(&c->u_temp)=abuf0;
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1243 *(uint16_t **)(&c->v_temp)=abuf1;
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1244 __asm__ volatile(
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1245 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1246 "mov %4, %%"REG_b" \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1247 "push %%"REG_BP" \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1248 YSCALEYUV2RGB(%%REGBP, %5)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1249 "push %0 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1250 "push %1 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1251 "mov "U_TEMP"(%5), %0 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1252 "mov "V_TEMP"(%5), %1 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1253 YSCALEYUV2RGB_YA(%%REGBP, %5, %0, %1)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1254 "psraw $3, %%mm1 \n\t" /* abuf0[eax] - abuf1[eax] >>7*/
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1255 "psraw $3, %%mm7 \n\t" /* abuf0[eax] - abuf1[eax] >>7*/
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1256 "packuswb %%mm7, %%mm1 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1257 "pop %1 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1258 "pop %0 \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1259 WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, %%mm1, %%mm0, %%mm7, %%mm3, %%mm6)
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1260 "pop %%"REG_BP" \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1261 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1262
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1263 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1264 "a" (&c->redDither)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1265 );
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1266 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1267 } else {
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1268 __asm__ volatile(
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1269 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1270 "mov %4, %%"REG_b" \n\t"
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1271 "push %%"REG_BP" \n\t"
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1272 YSCALEYUV2RGB(%%REGBP, %5)
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1273 "pcmpeqd %%mm7, %%mm7 \n\t"
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1274 WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, %%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1275 "pop %%"REG_BP" \n\t"
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1276 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1277
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1278 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1279 "a" (&c->redDither)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1280 );
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1281 }
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1282 return;
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1283 case PIX_FMT_BGR24:
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1284 __asm__ volatile(
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1285 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1286 "mov %4, %%"REG_b" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1287 "push %%"REG_BP" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1288 YSCALEYUV2RGB(%%REGBP, %5)
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
1289 "pxor %%mm7, %%mm7 \n\t"
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1290 WRITEBGR24(%%REGb, 8280(%5), %%REGBP)
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1291 "pop %%"REG_BP" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1292 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1293 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1294 "a" (&c->redDither)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1295 );
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1296 return;
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1297 case PIX_FMT_RGB555:
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1298 __asm__ volatile(
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1299 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1300 "mov %4, %%"REG_b" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1301 "push %%"REG_BP" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1302 YSCALEYUV2RGB(%%REGBP, %5)
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
1303 "pxor %%mm7, %%mm7 \n\t"
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1304 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1305 #ifdef DITHER1XBPP
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1306 "paddusb "BLUE_DITHER"(%5), %%mm2 \n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1307 "paddusb "GREEN_DITHER"(%5), %%mm4 \n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1308 "paddusb "RED_DITHER"(%5), %%mm5 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1309 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1310
27485
88f74be78ee2 Fix rgb15/16 vs. bgr part2.
michael
parents: 27291
diff changeset
1311 WRITERGB15(%%REGb, 8280(%5), %%REGBP)
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1312 "pop %%"REG_BP" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1313 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1314
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1315 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1316 "a" (&c->redDither)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1317 );
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1318 return;
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1319 case PIX_FMT_RGB565:
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1320 __asm__ volatile(
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1321 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1322 "mov %4, %%"REG_b" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1323 "push %%"REG_BP" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1324 YSCALEYUV2RGB(%%REGBP, %5)
28652
cc44b3827a6f move zeroing of alpha channel register out of YSCALEYUV2xxx macros,
stefang
parents: 28651
diff changeset
1325 "pxor %%mm7, %%mm7 \n\t"
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1326 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1327 #ifdef DITHER1XBPP
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1328 "paddusb "BLUE_DITHER"(%5), %%mm2 \n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1329 "paddusb "GREEN_DITHER"(%5), %%mm4 \n\t"
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
1330 "paddusb "RED_DITHER"(%5), %%mm5 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1331 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1332
27485
88f74be78ee2 Fix rgb15/16 vs. bgr part2.
michael
parents: 27291
diff changeset
1333 WRITERGB16(%%REGb, 8280(%5), %%REGBP)
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1334 "pop %%"REG_BP" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1335 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1336 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1337 "a" (&c->redDither)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1338 );
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1339 return;
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1340 case PIX_FMT_YUYV422:
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1341 __asm__ volatile(
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1342 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1343 "mov %4, %%"REG_b" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1344 "push %%"REG_BP" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1345 YSCALEYUV2PACKED(%%REGBP, %5)
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1346 WRITEYUY2(%%REGb, 8280(%5), %%REGBP)
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1347 "pop %%"REG_BP" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1348 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1349 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1350 "a" (&c->redDither)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1351 );
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1352 return;
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1353 default: break;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1354 }
27565
5ff11e5336e1 Disable mmx routines that are not bitexact when the user wants
michael
parents: 27564
diff changeset
1355 }
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1356 #endif //COMPILE_TEMPLATE_MMX
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
1357 YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGB2_C, YSCALE_YUV_2_PACKED2_C(void,0), YSCALE_YUV_2_GRAY16_2_C, YSCALE_YUV_2_MONO2_C)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1358 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1359
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1360 /**
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1361 * YV12 to RGB without scaling or interpolating
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1362 */
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1363 static inline void RENAME(yuv2packed1)(SwsContext *c, const uint16_t *buf0, const uint16_t *uvbuf0, const uint16_t *uvbuf1,
29815
3e8bf15f96d6 Use enum PixelFormat instead of int for srcFormat and dstFormat.
cehoyos
parents: 29659
diff changeset
1364 const uint16_t *abuf0, uint8_t *dest, int dstW, int uvalpha, enum PixelFormat dstFormat, int flags, int y)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1365 {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1366 const int yalpha1=0;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1367 int i;
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22976
diff changeset
1368
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1369 const uint16_t *buf1= buf0; //FIXME needed for RGB1/BGR1
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1370 const int yalpha= 4096; //FIXME ...
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1371
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1372 if (flags&SWS_FULL_CHR_H_INT) {
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
1373 c->yuv2packed2(c, buf0, buf0, uvbuf0, uvbuf1, abuf0, abuf0, dest, dstW, 0, uvalpha, y);
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1374 return;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1375 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1376
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1377 #if COMPILE_TEMPLATE_MMX
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1378 if(!(flags & SWS_BITEXACT)) {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1379 if (uvalpha < 2048) { // note this is not correct (shifts chrominance by 0.5 pixels) but it is a bit faster
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1380 switch(dstFormat) {
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1381 case PIX_FMT_RGB32:
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1382 if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf) {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1383 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1384 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1385 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1386 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1387 YSCALEYUV2RGB1(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1388 YSCALEYUV2RGB1_ALPHA(%%REGBP)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1389 WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, %%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1390 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1391 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1392
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1393 :: "c" (buf0), "d" (abuf0), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1394 "a" (&c->redDither)
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1395 );
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1396 } else {
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1397 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1398 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1399 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1400 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1401 YSCALEYUV2RGB1(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1402 "pcmpeqd %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1403 WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, %%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1404 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1405 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1406
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1407 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1408 "a" (&c->redDither)
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1409 );
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1410 }
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1411 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1412 case PIX_FMT_BGR24:
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1413 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1414 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1415 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1416 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1417 YSCALEYUV2RGB1(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1418 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1419 WRITEBGR24(%%REGb, 8280(%5), %%REGBP)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1420 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1421 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1422
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1423 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1424 "a" (&c->redDither)
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1425 );
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1426 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1427 case PIX_FMT_RGB555:
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1428 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1429 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1430 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1431 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1432 YSCALEYUV2RGB1(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1433 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1434 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1435 #ifdef DITHER1XBPP
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1436 "paddusb "BLUE_DITHER"(%5), %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1437 "paddusb "GREEN_DITHER"(%5), %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1438 "paddusb "RED_DITHER"(%5), %%mm5 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1439 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1440 WRITERGB15(%%REGb, 8280(%5), %%REGBP)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1441 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1442 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1443
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1444 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1445 "a" (&c->redDither)
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1446 );
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1447 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1448 case PIX_FMT_RGB565:
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1449 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1450 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1451 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1452 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1453 YSCALEYUV2RGB1(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1454 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1455 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1456 #ifdef DITHER1XBPP
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1457 "paddusb "BLUE_DITHER"(%5), %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1458 "paddusb "GREEN_DITHER"(%5), %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1459 "paddusb "RED_DITHER"(%5), %%mm5 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1460 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1461
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1462 WRITERGB16(%%REGb, 8280(%5), %%REGBP)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1463 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1464 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1465
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1466 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1467 "a" (&c->redDither)
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1468 );
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1469 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1470 case PIX_FMT_YUYV422:
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1471 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1472 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1473 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1474 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1475 YSCALEYUV2PACKED1(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1476 WRITEYUY2(%%REGb, 8280(%5), %%REGBP)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1477 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1478 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1479
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1480 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1481 "a" (&c->redDither)
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1482 );
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1483 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1484 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1485 } else {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1486 switch(dstFormat) {
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1487 case PIX_FMT_RGB32:
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1488 if (CONFIG_SWSCALE_ALPHA && c->alpPixBuf) {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1489 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1490 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1491 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1492 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1493 YSCALEYUV2RGB1b(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1494 YSCALEYUV2RGB1_ALPHA(%%REGBP)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1495 WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, %%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1496 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1497 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1498
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1499 :: "c" (buf0), "d" (abuf0), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1500 "a" (&c->redDither)
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1501 );
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1502 } else {
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1503 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1504 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1505 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1506 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1507 YSCALEYUV2RGB1b(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1508 "pcmpeqd %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1509 WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, %%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1510 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1511 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1512
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1513 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1514 "a" (&c->redDither)
28979
9fc0071c1d20 Reindent after last commit
sdrik
parents: 28977
diff changeset
1515 );
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1516 }
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1517 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1518 case PIX_FMT_BGR24:
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1519 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1520 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1521 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1522 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1523 YSCALEYUV2RGB1b(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1524 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1525 WRITEBGR24(%%REGb, 8280(%5), %%REGBP)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1526 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1527 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1528
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1529 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1530 "a" (&c->redDither)
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1531 );
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1532 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1533 case PIX_FMT_RGB555:
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1534 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1535 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1536 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1537 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1538 YSCALEYUV2RGB1b(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1539 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1540 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1541 #ifdef DITHER1XBPP
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1542 "paddusb "BLUE_DITHER"(%5), %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1543 "paddusb "GREEN_DITHER"(%5), %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1544 "paddusb "RED_DITHER"(%5), %%mm5 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1545 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1546 WRITERGB15(%%REGb, 8280(%5), %%REGBP)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1547 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1548 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1549
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1550 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1551 "a" (&c->redDither)
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1552 );
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1553 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1554 case PIX_FMT_RGB565:
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1555 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1556 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1557 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1558 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1559 YSCALEYUV2RGB1b(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1560 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1561 /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1562 #ifdef DITHER1XBPP
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1563 "paddusb "BLUE_DITHER"(%5), %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1564 "paddusb "GREEN_DITHER"(%5), %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1565 "paddusb "RED_DITHER"(%5), %%mm5 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1566 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1567
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1568 WRITERGB16(%%REGb, 8280(%5), %%REGBP)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1569 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1570 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1571
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1572 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1573 "a" (&c->redDither)
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1574 );
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1575 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1576 case PIX_FMT_YUYV422:
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1577 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1578 "mov %%"REG_b", "ESP_OFFSET"(%5) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1579 "mov %4, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1580 "push %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1581 YSCALEYUV2PACKED1b(%%REGBP, %5)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1582 WRITEYUY2(%%REGb, 8280(%5), %%REGBP)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1583 "pop %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1584 "mov "ESP_OFFSET"(%5), %%"REG_b" \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1585
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1586 :: "c" (buf0), "d" (buf1), "S" (uvbuf0), "D" (uvbuf1), "m" (dest),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1587 "a" (&c->redDither)
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1588 );
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1589 return;
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
1590 }
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1591 }
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1592 }
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1593 #endif /* COMPILE_TEMPLATE_MMX */
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1594 if (uvalpha < 2048) {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1595 YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGB1_C, YSCALE_YUV_2_PACKED1_C(void,0), YSCALE_YUV_2_GRAY16_1_C, YSCALE_YUV_2_MONO2_C)
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1596 } else {
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
1597 YSCALE_YUV_2_ANYRGB_C(YSCALE_YUV_2_RGB1B_C, YSCALE_YUV_2_PACKED1B_C(void,0), YSCALE_YUV_2_GRAY16_1_C, YSCALE_YUV_2_MONO2_C)
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1598 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1599 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1600
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
1601 //FIXME yuy2* can read up to 7 samples too much
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1602
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1603 static inline void RENAME(yuy2ToY)(uint8_t *dst, const uint8_t *src, long width, uint32_t *unused)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1604 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1605 #if COMPILE_TEMPLATE_MMX
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1606 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1607 "movq "MANGLE(bm01010101)", %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1608 "mov %0, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1609 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1610 "movq (%1, %%"REG_a",2), %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1611 "movq 8(%1, %%"REG_a",2), %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1612 "pand %%mm2, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1613 "pand %%mm2, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1614 "packuswb %%mm1, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1615 "movq %%mm0, (%2, %%"REG_a") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1616 "add $8, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1617 " js 1b \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1618 : : "g" ((x86_reg)-width), "r" (src+width*2), "r" (dst+width)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1619 : "%"REG_a
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1620 );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1621 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1622 int i;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1623 for (i=0; i<width; i++)
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1624 dst[i]= src[2*i];
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1625 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1626 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1627
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1628 static inline void RENAME(yuy2ToUV)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1, const uint8_t *src2, long width, uint32_t *unused)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1629 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1630 #if COMPILE_TEMPLATE_MMX
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1631 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1632 "movq "MANGLE(bm01010101)", %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1633 "mov %0, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1634 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1635 "movq (%1, %%"REG_a",4), %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1636 "movq 8(%1, %%"REG_a",4), %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1637 "psrlw $8, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1638 "psrlw $8, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1639 "packuswb %%mm1, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1640 "movq %%mm0, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1641 "psrlw $8, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1642 "pand %%mm4, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1643 "packuswb %%mm0, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1644 "packuswb %%mm1, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1645 "movd %%mm0, (%3, %%"REG_a") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1646 "movd %%mm1, (%2, %%"REG_a") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1647 "add $4, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1648 " js 1b \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1649 : : "g" ((x86_reg)-width), "r" (src1+width*4), "r" (dstU+width), "r" (dstV+width)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1650 : "%"REG_a
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1651 );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1652 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1653 int i;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1654 for (i=0; i<width; i++) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1655 dstU[i]= src1[4*i + 1];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1656 dstV[i]= src1[4*i + 3];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1657 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1658 #endif
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1659 assert(src1 == src2);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1660 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1661
29176
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1662 static inline void RENAME(LEToUV)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1, const uint8_t *src2, long width, uint32_t *unused)
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1663 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1664 #if COMPILE_TEMPLATE_MMX
29176
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1665 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1666 "mov %0, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1667 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1668 "movq (%1, %%"REG_a",2), %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1669 "movq 8(%1, %%"REG_a",2), %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1670 "movq (%2, %%"REG_a",2), %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1671 "movq 8(%2, %%"REG_a",2), %%mm3 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1672 "psrlw $8, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1673 "psrlw $8, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1674 "psrlw $8, %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1675 "psrlw $8, %%mm3 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1676 "packuswb %%mm1, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1677 "packuswb %%mm3, %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1678 "movq %%mm0, (%3, %%"REG_a") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1679 "movq %%mm2, (%4, %%"REG_a") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1680 "add $8, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1681 " js 1b \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1682 : : "g" ((x86_reg)-width), "r" (src1+width*2), "r" (src2+width*2), "r" (dstU+width), "r" (dstV+width)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1683 : "%"REG_a
29176
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1684 );
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1685 #else
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1686 int i;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1687 for (i=0; i<width; i++) {
29176
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1688 dstU[i]= src1[2*i + 1];
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1689 dstV[i]= src2[2*i + 1];
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1690 }
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1691 #endif
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1692 }
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1693
26237
f2d670be6bc8 cosmetics: comment typo fixes
diego
parents: 26150
diff changeset
1694 /* This is almost identical to the previous, end exists only because
f2d670be6bc8 cosmetics: comment typo fixes
diego
parents: 26150
diff changeset
1695 * yuy2ToY/UV)(dst, src+1, ...) would have 100% unaligned accesses. */
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1696 static inline void RENAME(uyvyToY)(uint8_t *dst, const uint8_t *src, long width, uint32_t *unused)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1697 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1698 #if COMPILE_TEMPLATE_MMX
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1699 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1700 "mov %0, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1701 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1702 "movq (%1, %%"REG_a",2), %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1703 "movq 8(%1, %%"REG_a",2), %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1704 "psrlw $8, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1705 "psrlw $8, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1706 "packuswb %%mm1, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1707 "movq %%mm0, (%2, %%"REG_a") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1708 "add $8, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1709 " js 1b \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1710 : : "g" ((x86_reg)-width), "r" (src+width*2), "r" (dst+width)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1711 : "%"REG_a
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1712 );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1713 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1714 int i;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1715 for (i=0; i<width; i++)
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1716 dst[i]= src[2*i+1];
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1717 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1718 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1719
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1720 static inline void RENAME(uyvyToUV)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1, const uint8_t *src2, long width, uint32_t *unused)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1721 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1722 #if COMPILE_TEMPLATE_MMX
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1723 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1724 "movq "MANGLE(bm01010101)", %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1725 "mov %0, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1726 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1727 "movq (%1, %%"REG_a",4), %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1728 "movq 8(%1, %%"REG_a",4), %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1729 "pand %%mm4, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1730 "pand %%mm4, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1731 "packuswb %%mm1, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1732 "movq %%mm0, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1733 "psrlw $8, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1734 "pand %%mm4, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1735 "packuswb %%mm0, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1736 "packuswb %%mm1, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1737 "movd %%mm0, (%3, %%"REG_a") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1738 "movd %%mm1, (%2, %%"REG_a") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1739 "add $4, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1740 " js 1b \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1741 : : "g" ((x86_reg)-width), "r" (src1+width*4), "r" (dstU+width), "r" (dstV+width)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1742 : "%"REG_a
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1743 );
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1744 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1745 int i;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1746 for (i=0; i<width; i++) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1747 dstU[i]= src1[4*i + 0];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1748 dstV[i]= src1[4*i + 2];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1749 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1750 #endif
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1751 assert(src1 == src2);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1752 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1753
29176
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1754 static inline void RENAME(BEToUV)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1, const uint8_t *src2, long width, uint32_t *unused)
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1755 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1756 #if COMPILE_TEMPLATE_MMX
29176
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1757 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1758 "movq "MANGLE(bm01010101)", %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1759 "mov %0, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1760 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1761 "movq (%1, %%"REG_a",2), %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1762 "movq 8(%1, %%"REG_a",2), %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1763 "movq (%2, %%"REG_a",2), %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1764 "movq 8(%2, %%"REG_a",2), %%mm3 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1765 "pand %%mm4, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1766 "pand %%mm4, %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1767 "pand %%mm4, %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1768 "pand %%mm4, %%mm3 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1769 "packuswb %%mm1, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1770 "packuswb %%mm3, %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1771 "movq %%mm0, (%3, %%"REG_a") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1772 "movq %%mm2, (%4, %%"REG_a") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1773 "add $8, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1774 " js 1b \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1775 : : "g" ((x86_reg)-width), "r" (src1+width*2), "r" (src2+width*2), "r" (dstU+width), "r" (dstV+width)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
1776 : "%"REG_a
29176
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1777 );
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1778 #else
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1779 int i;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1780 for (i=0; i<width; i++) {
29176
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1781 dstU[i]= src1[2*i];
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1782 dstV[i]= src2[2*i];
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1783 }
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1784 #endif
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1785 }
d18426e37f13 Planar 16bit 420 422 444 YUV support (output is only supported in some
michael
parents: 29139
diff changeset
1786
29932
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1787 static inline void RENAME(nvXXtoUV)(uint8_t *dst1, uint8_t *dst2,
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1788 const uint8_t *src, long width)
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1789 {
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1790 #if COMPILE_TEMPLATE_MMX
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1791 __asm__ volatile(
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1792 "movq "MANGLE(bm01010101)", %%mm4 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1793 "mov %0, %%"REG_a" \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1794 "1: \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1795 "movq (%1, %%"REG_a",2), %%mm0 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1796 "movq 8(%1, %%"REG_a",2), %%mm1 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1797 "movq %%mm0, %%mm2 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1798 "movq %%mm1, %%mm3 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1799 "pand %%mm4, %%mm0 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1800 "pand %%mm4, %%mm1 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1801 "psrlw $8, %%mm2 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1802 "psrlw $8, %%mm3 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1803 "packuswb %%mm1, %%mm0 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1804 "packuswb %%mm3, %%mm2 \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1805 "movq %%mm0, (%2, %%"REG_a") \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1806 "movq %%mm2, (%3, %%"REG_a") \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1807 "add $8, %%"REG_a" \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1808 " js 1b \n\t"
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1809 : : "g" ((x86_reg)-width), "r" (src+width*2), "r" (dst1+width), "r" (dst2+width)
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1810 : "%"REG_a
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1811 );
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1812 #else
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1813 int i;
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1814 for (i = 0; i < width; i++) {
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1815 dst1[i] = src[2*i+0];
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1816 dst2[i] = src[2*i+1];
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1817 }
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1818 #endif
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1819 }
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1820
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1821 static inline void nv12ToUV(uint8_t *dstU, uint8_t *dstV,
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1822 const uint8_t *src1, const uint8_t *src2,
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1823 long width, uint32_t *unused)
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1824 {
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1825 RENAME(nvXXtoUV)(dstU, dstV, src1, width);
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1826 }
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1827
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1828 static inline void nv21ToUV(uint8_t *dstU, uint8_t *dstV,
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1829 const uint8_t *src1, const uint8_t *src2,
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1830 long width, uint32_t *unused)
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1831 {
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1832 RENAME(nvXXtoUV)(dstV, dstU, src1, width);
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1833 }
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
1834
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1835 #if COMPILE_TEMPLATE_MMX
29815
3e8bf15f96d6 Use enum PixelFormat instead of int for srcFormat and dstFormat.
cehoyos
parents: 29659
diff changeset
1836 static inline void RENAME(bgr24ToY_mmx)(uint8_t *dst, const uint8_t *src, long width, enum PixelFormat srcFormat)
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1837 {
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1838
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1839 if(srcFormat == PIX_FMT_BGR24) {
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1840 __asm__ volatile(
27537
3c8584b0ac41 Fix build failure due to %%eip on x86_64.
michael
parents: 27536
diff changeset
1841 "movq "MANGLE(ff_bgr24toY1Coeff)", %%mm5 \n\t"
3c8584b0ac41 Fix build failure due to %%eip on x86_64.
michael
parents: 27536
diff changeset
1842 "movq "MANGLE(ff_bgr24toY2Coeff)", %%mm6 \n\t"
3c8584b0ac41 Fix build failure due to %%eip on x86_64.
michael
parents: 27536
diff changeset
1843 :
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1844 );
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1845 } else {
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1846 __asm__ volatile(
27537
3c8584b0ac41 Fix build failure due to %%eip on x86_64.
michael
parents: 27536
diff changeset
1847 "movq "MANGLE(ff_rgb24toY1Coeff)", %%mm5 \n\t"
3c8584b0ac41 Fix build failure due to %%eip on x86_64.
michael
parents: 27536
diff changeset
1848 "movq "MANGLE(ff_rgb24toY2Coeff)", %%mm6 \n\t"
3c8584b0ac41 Fix build failure due to %%eip on x86_64.
michael
parents: 27536
diff changeset
1849 :
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1850 );
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1851 }
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1852
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1853 __asm__ volatile(
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1854 "movq "MANGLE(ff_bgr24toYOffset)", %%mm4 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1855 "mov %2, %%"REG_a" \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1856 "pxor %%mm7, %%mm7 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1857 "1: \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1858 PREFETCH" 64(%0) \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1859 "movd (%0), %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1860 "movd 2(%0), %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1861 "movd 6(%0), %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1862 "movd 8(%0), %%mm3 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1863 "add $12, %0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1864 "punpcklbw %%mm7, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1865 "punpcklbw %%mm7, %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1866 "punpcklbw %%mm7, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1867 "punpcklbw %%mm7, %%mm3 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1868 "pmaddwd %%mm5, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1869 "pmaddwd %%mm6, %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1870 "pmaddwd %%mm5, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1871 "pmaddwd %%mm6, %%mm3 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1872 "paddd %%mm1, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1873 "paddd %%mm3, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1874 "paddd %%mm4, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1875 "paddd %%mm4, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1876 "psrad $15, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1877 "psrad $15, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1878 "packssdw %%mm2, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1879 "packuswb %%mm0, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1880 "movd %%mm0, (%1, %%"REG_a") \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1881 "add $4, %%"REG_a" \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1882 " js 1b \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1883 : "+r" (src)
28957
e538af2c69c1 Do not assume long is same width as x86 register.
ramiro
parents: 28953
diff changeset
1884 : "r" (dst+width), "g" ((x86_reg)-width)
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1885 : "%"REG_a
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1886 );
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1887 }
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1888
29815
3e8bf15f96d6 Use enum PixelFormat instead of int for srcFormat and dstFormat.
cehoyos
parents: 29659
diff changeset
1889 static inline void RENAME(bgr24ToUV_mmx)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src, long width, enum PixelFormat srcFormat)
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1890 {
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
1891 __asm__ volatile(
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1892 "movq 24+%4, %%mm6 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1893 "mov %3, %%"REG_a" \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1894 "pxor %%mm7, %%mm7 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1895 "1: \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1896 PREFETCH" 64(%0) \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1897 "movd (%0), %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1898 "movd 2(%0), %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1899 "punpcklbw %%mm7, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1900 "punpcklbw %%mm7, %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1901 "movq %%mm0, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1902 "movq %%mm1, %%mm3 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1903 "pmaddwd %4, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1904 "pmaddwd 8+%4, %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1905 "pmaddwd 16+%4, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1906 "pmaddwd %%mm6, %%mm3 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1907 "paddd %%mm1, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1908 "paddd %%mm3, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1909
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1910 "movd 6(%0), %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1911 "movd 8(%0), %%mm3 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1912 "add $12, %0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1913 "punpcklbw %%mm7, %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1914 "punpcklbw %%mm7, %%mm3 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1915 "movq %%mm1, %%mm4 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1916 "movq %%mm3, %%mm5 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1917 "pmaddwd %4, %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1918 "pmaddwd 8+%4, %%mm3 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1919 "pmaddwd 16+%4, %%mm4 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1920 "pmaddwd %%mm6, %%mm5 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1921 "paddd %%mm3, %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1922 "paddd %%mm5, %%mm4 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1923
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1924 "movq "MANGLE(ff_bgr24toUVOffset)", %%mm3 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1925 "paddd %%mm3, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1926 "paddd %%mm3, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1927 "paddd %%mm3, %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1928 "paddd %%mm3, %%mm4 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1929 "psrad $15, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1930 "psrad $15, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1931 "psrad $15, %%mm1 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1932 "psrad $15, %%mm4 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1933 "packssdw %%mm1, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1934 "packssdw %%mm4, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1935 "packuswb %%mm0, %%mm0 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1936 "packuswb %%mm2, %%mm2 \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1937 "movd %%mm0, (%1, %%"REG_a") \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1938 "movd %%mm2, (%2, %%"REG_a") \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1939 "add $4, %%"REG_a" \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1940 " js 1b \n\t"
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1941 : "+r" (src)
28957
e538af2c69c1 Do not assume long is same width as x86 register.
ramiro
parents: 28953
diff changeset
1942 : "r" (dstU+width), "r" (dstV+width), "g" ((x86_reg)-width), "m"(ff_bgr24toUV[srcFormat == PIX_FMT_RGB24][0])
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1943 : "%"REG_a
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1944 );
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1945 }
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1946 #endif
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1947
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1948 static inline void RENAME(bgr24ToY)(uint8_t *dst, const uint8_t *src, long width, uint32_t *unused)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1949 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1950 #if COMPILE_TEMPLATE_MMX
27570
aa795bfca46f Fix libswscale build after r27561 if --enable-runtime-cpudetection is used.
ben
parents: 27568
diff changeset
1951 RENAME(bgr24ToY_mmx)(dst, src, width, PIX_FMT_BGR24);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1952 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1953 int i;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1954 for (i=0; i<width; i++) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1955 int b= src[i*3+0];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1956 int g= src[i*3+1];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1957 int r= src[i*3+2];
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1958
25749
8d082a234a6d Remove non cosmetic spaces inside parentheses.
benoit
parents: 25183
diff changeset
1959 dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT);
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1960 }
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1961 #endif /* COMPILE_TEMPLATE_MMX */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1962 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1963
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1964 static inline void RENAME(bgr24ToUV)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1, const uint8_t *src2, long width, uint32_t *unused)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1965 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1966 #if COMPILE_TEMPLATE_MMX
27570
aa795bfca46f Fix libswscale build after r27561 if --enable-runtime-cpudetection is used.
ben
parents: 27568
diff changeset
1967 RENAME(bgr24ToUV_mmx)(dstU, dstV, src1, width, PIX_FMT_BGR24);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1968 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1969 int i;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1970 for (i=0; i<width; i++) {
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1971 int b= src1[3*i + 0];
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1972 int g= src1[3*i + 1];
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1973 int r= src1[3*i + 2];
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1974
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1975 dstU[i]= (RU*r + GU*g + BU*b + (257<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT;
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
1976 dstV[i]= (RV*r + GV*g + BV*b + (257<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1977 }
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1978 #endif /* COMPILE_TEMPLATE_MMX */
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
1979 assert(src1 == src2);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1980 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1981
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1982 static inline void RENAME(bgr24ToUV_half)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1, const uint8_t *src2, long width, uint32_t *unused)
27532
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1983 {
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1984 int i;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
1985 for (i=0; i<width; i++) {
27532
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1986 int b= src1[6*i + 0] + src1[6*i + 3];
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1987 int g= src1[6*i + 1] + src1[6*i + 4];
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1988 int r= src1[6*i + 2] + src1[6*i + 5];
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1989
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1990 dstU[i]= (RU*r + GU*g + BU*b + (257<<RGB2YUV_SHIFT))>>(RGB2YUV_SHIFT+1);
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1991 dstV[i]= (RV*r + GV*g + BV*b + (257<<RGB2YUV_SHIFT))>>(RGB2YUV_SHIFT+1);
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1992 }
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1993 assert(src1 == src2);
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1994 }
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
1995
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
1996 static inline void RENAME(rgb24ToY)(uint8_t *dst, const uint8_t *src, long width, uint32_t *unused)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1997 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
1998 #if COMPILE_TEMPLATE_MMX
27570
aa795bfca46f Fix libswscale build after r27561 if --enable-runtime-cpudetection is used.
ben
parents: 27568
diff changeset
1999 RENAME(bgr24ToY_mmx)(dst, src, width, PIX_FMT_RGB24);
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
2000 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2001 int i;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2002 for (i=0; i<width; i++) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2003 int r= src[i*3+0];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2004 int g= src[i*3+1];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2005 int b= src[i*3+2];
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2006
25749
8d082a234a6d Remove non cosmetic spaces inside parentheses.
benoit
parents: 25183
diff changeset
2007 dst[i]= ((RY*r + GY*g + BY*b + (33<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT);
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2008 }
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
2009 #endif
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2010 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2011
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2012 static inline void RENAME(rgb24ToUV)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1, const uint8_t *src2, long width, uint32_t *unused)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2013 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2014 #if COMPILE_TEMPLATE_MMX
27911
535e8e3803e9 Put variable declaration inside an #ifdef to avoid an unused variable warning.
diego
parents: 27793
diff changeset
2015 assert(src1==src2);
535e8e3803e9 Put variable declaration inside an #ifdef to avoid an unused variable warning.
diego
parents: 27793
diff changeset
2016 RENAME(bgr24ToUV_mmx)(dstU, dstV, src1, width, PIX_FMT_RGB24);
535e8e3803e9 Put variable declaration inside an #ifdef to avoid an unused variable warning.
diego
parents: 27793
diff changeset
2017 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2018 int i;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2019 assert(src1==src2);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2020 for (i=0; i<width; i++) {
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
2021 int r= src1[3*i + 0];
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
2022 int g= src1[3*i + 1];
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
2023 int b= src1[3*i + 2];
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2024
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
2025 dstU[i]= (RU*r + GU*g + BU*b + (257<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT;
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
2026 dstV[i]= (RV*r + GV*g + BV*b + (257<<(RGB2YUV_SHIFT-1)))>>RGB2YUV_SHIFT;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2027 }
27529
ffb573fae5e8 Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,
michael
parents: 27525
diff changeset
2028 #endif
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2029 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2030
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2031 static inline void RENAME(rgb24ToUV_half)(uint8_t *dstU, uint8_t *dstV, const uint8_t *src1, const uint8_t *src2, long width, uint32_t *unused)
27532
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
2032 {
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
2033 int i;
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
2034 assert(src1==src2);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2035 for (i=0; i<width; i++) {
27550
3f12d34131a9 Fix typo that lead to averaging of the same pixel in rgb24ToUV_half().
michael
parents: 27548
diff changeset
2036 int r= src1[6*i + 0] + src1[6*i + 3];
3f12d34131a9 Fix typo that lead to averaging of the same pixel in rgb24ToUV_half().
michael
parents: 27548
diff changeset
2037 int g= src1[6*i + 1] + src1[6*i + 4];
3f12d34131a9 Fix typo that lead to averaging of the same pixel in rgb24ToUV_half().
michael
parents: 27548
diff changeset
2038 int b= src1[6*i + 2] + src1[6*i + 5];
27532
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
2039
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
2040 dstU[i]= (RU*r + GU*g + BU*b + (257<<RGB2YUV_SHIFT))>>(RGB2YUV_SHIFT+1);
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
2041 dstV[i]= (RV*r + GV*g + BV*b + (257<<RGB2YUV_SHIFT))>>(RGB2YUV_SHIFT+1);
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
2042 }
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
2043 }
1ecce17e826f Make SWS_FULL_CHR_H_INP work.
michael
parents: 27529
diff changeset
2044
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2045
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
2046 // bilinear / bicubic scaling
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2047 static inline void RENAME(hScale)(int16_t *dst, int dstW, const uint8_t *src, int srcW, int xInc,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2048 const int16_t *filter, const int16_t *filterPos, long filterSize)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2049 {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2050 #if COMPILE_TEMPLATE_MMX
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2051 assert(filterSize % 4 == 0 && filterSize>0);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2052 if (filterSize==4) { // Always true for upscaling, sometimes for down, too.
28957
e538af2c69c1 Do not assume long is same width as x86 register.
ramiro
parents: 28953
diff changeset
2053 x86_reg counter= -2*dstW;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2054 filter-= counter*2;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2055 filterPos-= counter/2;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2056 dst-= counter/2;
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
2057 __asm__ volatile(
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2058 #if defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2059 "push %%"REG_b" \n\t"
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2060 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2061 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2062 "push %%"REG_BP" \n\t" // we use 7 regs here ...
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2063 "mov %%"REG_a", %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2064 ASMALIGN(4)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2065 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2066 "movzwl (%2, %%"REG_BP"), %%eax \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2067 "movzwl 2(%2, %%"REG_BP"), %%ebx \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2068 "movq (%1, %%"REG_BP", 4), %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2069 "movq 8(%1, %%"REG_BP", 4), %%mm3 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2070 "movd (%3, %%"REG_a"), %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2071 "movd (%3, %%"REG_b"), %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2072 "punpcklbw %%mm7, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2073 "punpcklbw %%mm7, %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2074 "pmaddwd %%mm1, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2075 "pmaddwd %%mm2, %%mm3 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2076 "movq %%mm0, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2077 "punpckldq %%mm3, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2078 "punpckhdq %%mm3, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2079 "paddd %%mm4, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2080 "psrad $7, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2081 "packssdw %%mm0, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2082 "movd %%mm0, (%4, %%"REG_BP") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2083 "add $4, %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2084 " jnc 1b \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2085
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2086 "pop %%"REG_BP" \n\t"
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2087 #if defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2088 "pop %%"REG_b" \n\t"
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2089 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2090 : "+a" (counter)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2091 : "c" (filter), "d" (filterPos), "S" (src), "D" (dst)
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2092 #if !defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2093 : "%"REG_b
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2094 #endif
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2095 );
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2096 } else if (filterSize==8) {
28957
e538af2c69c1 Do not assume long is same width as x86 register.
ramiro
parents: 28953
diff changeset
2097 x86_reg counter= -2*dstW;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2098 filter-= counter*4;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2099 filterPos-= counter/2;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2100 dst-= counter/2;
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
2101 __asm__ volatile(
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2102 #if defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2103 "push %%"REG_b" \n\t"
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2104 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2105 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2106 "push %%"REG_BP" \n\t" // we use 7 regs here ...
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2107 "mov %%"REG_a", %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2108 ASMALIGN(4)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2109 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2110 "movzwl (%2, %%"REG_BP"), %%eax \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2111 "movzwl 2(%2, %%"REG_BP"), %%ebx \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2112 "movq (%1, %%"REG_BP", 8), %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2113 "movq 16(%1, %%"REG_BP", 8), %%mm3 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2114 "movd (%3, %%"REG_a"), %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2115 "movd (%3, %%"REG_b"), %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2116 "punpcklbw %%mm7, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2117 "punpcklbw %%mm7, %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2118 "pmaddwd %%mm1, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2119 "pmaddwd %%mm2, %%mm3 \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2120
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2121 "movq 8(%1, %%"REG_BP", 8), %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2122 "movq 24(%1, %%"REG_BP", 8), %%mm5 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2123 "movd 4(%3, %%"REG_a"), %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2124 "movd 4(%3, %%"REG_b"), %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2125 "punpcklbw %%mm7, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2126 "punpcklbw %%mm7, %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2127 "pmaddwd %%mm1, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2128 "pmaddwd %%mm2, %%mm5 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2129 "paddd %%mm4, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2130 "paddd %%mm5, %%mm3 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2131 "movq %%mm0, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2132 "punpckldq %%mm3, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2133 "punpckhdq %%mm3, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2134 "paddd %%mm4, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2135 "psrad $7, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2136 "packssdw %%mm0, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2137 "movd %%mm0, (%4, %%"REG_BP") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2138 "add $4, %%"REG_BP" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2139 " jnc 1b \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2140
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2141 "pop %%"REG_BP" \n\t"
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2142 #if defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2143 "pop %%"REG_b" \n\t"
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2144 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2145 : "+a" (counter)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2146 : "c" (filter), "d" (filterPos), "S" (src), "D" (dst)
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2147 #if !defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2148 : "%"REG_b
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2149 #endif
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2150 );
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2151 } else {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2152 uint8_t *offset = src+filterSize;
28957
e538af2c69c1 Do not assume long is same width as x86 register.
ramiro
parents: 28953
diff changeset
2153 x86_reg counter= -2*dstW;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2154 //filter-= counter*filterSize/2;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2155 filterPos-= counter/2;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2156 dst-= counter/2;
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
2157 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2158 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2159 ASMALIGN(4)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2160 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2161 "mov %2, %%"REG_c" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2162 "movzwl (%%"REG_c", %0), %%eax \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2163 "movzwl 2(%%"REG_c", %0), %%edx \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2164 "mov %5, %%"REG_c" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2165 "pxor %%mm4, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2166 "pxor %%mm5, %%mm5 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2167 "2: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2168 "movq (%1), %%mm1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2169 "movq (%1, %6), %%mm3 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2170 "movd (%%"REG_c", %%"REG_a"), %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2171 "movd (%%"REG_c", %%"REG_d"), %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2172 "punpcklbw %%mm7, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2173 "punpcklbw %%mm7, %%mm2 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2174 "pmaddwd %%mm1, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2175 "pmaddwd %%mm2, %%mm3 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2176 "paddd %%mm3, %%mm5 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2177 "paddd %%mm0, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2178 "add $8, %1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2179 "add $4, %%"REG_c" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2180 "cmp %4, %%"REG_c" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2181 " jb 2b \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2182 "add %6, %1 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2183 "movq %%mm4, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2184 "punpckldq %%mm5, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2185 "punpckhdq %%mm5, %%mm0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2186 "paddd %%mm0, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2187 "psrad $7, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2188 "packssdw %%mm4, %%mm4 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2189 "mov %3, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2190 "movd %%mm4, (%%"REG_a", %0) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2191 "add $4, %0 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2192 " jnc 1b \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2193
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2194 : "+r" (counter), "+r" (filter)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2195 : "m" (filterPos), "m" (dst), "m"(offset),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2196 "m" (src), "r" ((x86_reg)filterSize*2)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2197 : "%"REG_a, "%"REG_c, "%"REG_d
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2198 );
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2199 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2200 #else
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2201 #if COMPILE_TEMPLATE_ALTIVEC
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2202 hScale_altivec_real(dst, dstW, src, srcW, xInc, filter, filterPos, filterSize);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2203 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2204 int i;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2205 for (i=0; i<dstW; i++) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2206 int j;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2207 int srcPos= filterPos[i];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2208 int val=0;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2209 //printf("filterPos: %d\n", filterPos[i]);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2210 for (j=0; j<filterSize; j++) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2211 //printf("filter: %d, src: %d\n", filter[i], src[srcPos + j]);
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2212 val += ((int)src[srcPos + j])*filter[filterSize*i + j];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2213 }
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2214 //filter += hFilterSize;
27561
5e35ed8ae2a3 Make the horizontal C scaler code clip only against INT16_MAX not 0,
michael
parents: 27558
diff changeset
2215 dst[i] = FFMIN(val>>7, (1<<15)-1); // the cubic equation does overflow ...
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2216 //dst[i] = val>>7;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2217 }
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2218 #endif /* COMPILE_ALTIVEC */
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2219 #endif /* COMPILE_MMX */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2220 }
29089
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2221
29403
6c1b9f334f97 Factorize x86 fast_bilinear assembly.
ramiro
parents: 29402
diff changeset
2222 #define FAST_BILINEAR_X86 \
6c1b9f334f97 Factorize x86 fast_bilinear assembly.
ramiro
parents: 29402
diff changeset
2223 "subl %%edi, %%esi \n\t" /* src[xx+1] - src[xx] */ \
6c1b9f334f97 Factorize x86 fast_bilinear assembly.
ramiro
parents: 29402
diff changeset
2224 "imull %%ecx, %%esi \n\t" /* (src[xx+1] - src[xx])*xalpha */ \
6c1b9f334f97 Factorize x86 fast_bilinear assembly.
ramiro
parents: 29402
diff changeset
2225 "shll $16, %%edi \n\t" \
6c1b9f334f97 Factorize x86 fast_bilinear assembly.
ramiro
parents: 29402
diff changeset
2226 "addl %%edi, %%esi \n\t" /* src[xx+1]*xalpha + src[xx]*(1-xalpha) */ \
6c1b9f334f97 Factorize x86 fast_bilinear assembly.
ramiro
parents: 29402
diff changeset
2227 "mov %1, %%"REG_D"\n\t" \
6c1b9f334f97 Factorize x86 fast_bilinear assembly.
ramiro
parents: 29402
diff changeset
2228 "shrl $9, %%esi \n\t" \
6c1b9f334f97 Factorize x86 fast_bilinear assembly.
ramiro
parents: 29402
diff changeset
2229
29089
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2230 static inline void RENAME(hyscale_fast)(SwsContext *c, int16_t *dst,
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2231 int dstWidth, const uint8_t *src, int srcW,
29089
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2232 int xInc)
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2233 {
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2234 int i;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2235 unsigned int xpos=0;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2236 for (i=0;i<dstWidth;i++) {
29089
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2237 register unsigned int xx=xpos>>16;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2238 register unsigned int xalpha=(xpos&0xFFFF)>>9;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2239 dst[i]= (src[xx]<<7) + (src[xx+1] - src[xx])*xalpha;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2240 xpos+=xInc;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2241 }
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2242 }
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2243
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2244 // *** horizontal scale Y line to temp buffer
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2245 static inline void RENAME(hyscale)(SwsContext *c, uint16_t *dst, long dstWidth, const uint8_t *src, int srcW, int xInc,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2246 int flags, const int16_t *hLumFilter,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2247 const int16_t *hLumFilterPos, int hLumFilterSize,
29815
3e8bf15f96d6 Use enum PixelFormat instead of int for srcFormat and dstFormat.
cehoyos
parents: 29659
diff changeset
2248 enum PixelFormat srcFormat, uint8_t *formatConvBuffer,
29090
319305829bdc swscale: Remove mmx2 params from h[yc]scale().
ramiro
parents: 29089
diff changeset
2249 uint32_t *pal, int isAlpha)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2250 {
29313
7a6f47f74e9b Kill warnings of possibly unused variables by using av_unused.
ramiro
parents: 29307
diff changeset
2251 int32_t av_unused *mmx2FilterPos = c->lumMmx2FilterPos;
7a6f47f74e9b Kill warnings of possibly unused variables by using av_unused.
ramiro
parents: 29307
diff changeset
2252 int16_t av_unused *mmx2Filter = c->lumMmx2Filter;
7a6f47f74e9b Kill warnings of possibly unused variables by using av_unused.
ramiro
parents: 29307
diff changeset
2253 int av_unused canMMX2BeUsed = c->canMMX2BeUsed;
29465
45e78d49e493 Rename "funny" code to "mmx2 filter" code.
ramiro
parents: 29440
diff changeset
2254 void av_unused *mmx2FilterCode= c->lumMmx2FilterCode;
29139
cd5d58b02153 Do not use abgrToA for both luma and alpha channel in hyscale.
sdrik
parents: 29105
diff changeset
2255 void (*internal_func)(uint8_t *, const uint8_t *, long, uint32_t *) = isAlpha ? c->hascale_internal : c->hyscale_internal;
29090
319305829bdc swscale: Remove mmx2 params from h[yc]scale().
ramiro
parents: 29089
diff changeset
2256
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2257 if (isAlpha) {
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2258 if (srcFormat == PIX_FMT_RGB32 || srcFormat == PIX_FMT_BGR32 )
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2259 src += 3;
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2260 } else {
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2261 if (srcFormat == PIX_FMT_RGB32_1 || srcFormat == PIX_FMT_BGR32_1)
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2262 src += ALT32_CORR;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2263 }
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2264
29299
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2265 if (srcFormat == PIX_FMT_RGB48LE)
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2266 src++;
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2267
29139
cd5d58b02153 Do not use abgrToA for both luma and alpha channel in hyscale.
sdrik
parents: 29105
diff changeset
2268 if (internal_func) {
cd5d58b02153 Do not use abgrToA for both luma and alpha channel in hyscale.
sdrik
parents: 29105
diff changeset
2269 internal_func(formatConvBuffer, src, srcW, pal);
27555
bf2638aa89b4 Support mono as input format.
michael
parents: 27554
diff changeset
2270 src= formatConvBuffer;
bf2638aa89b4 Support mono as input format.
michael
parents: 27554
diff changeset
2271 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2272
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2273 #if COMPILE_TEMPLATE_MMX
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
2274 // Use the new MMX scaler if the MMX2 one can't be used (it is faster than the x86 ASM one).
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2275 if (!(flags&SWS_FAST_BILINEAR) || (!canMMX2BeUsed))
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2276 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2277 if (!(flags&SWS_FAST_BILINEAR))
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2278 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2279 {
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2280 c->hScale(dst, dstWidth, src, srcW, xInc, hLumFilter, hLumFilterPos, hLumFilterSize);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2281 } else { // fast bilinear upscale / crap downscale
28769
741f9cfcee91 remove the rest of x86 asm from LGPL build
henry
parents: 28721
diff changeset
2282 #if ARCH_X86 && CONFIG_GPL
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2283 #if COMPILE_TEMPLATE_MMX2
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2284 int i;
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2285 #if defined(PIC)
29307
5efc5acb0f7c Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED.
ramiro
parents: 29299
diff changeset
2286 DECLARE_ALIGNED(8, uint64_t, ebxsave);
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2287 #endif
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2288 if (canMMX2BeUsed) {
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
2289 __asm__ volatile(
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2290 #if defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2291 "mov %%"REG_b", %5 \n\t"
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2292 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2293 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2294 "mov %0, %%"REG_c" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2295 "mov %1, %%"REG_D" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2296 "mov %2, %%"REG_d" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2297 "mov %3, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2298 "xor %%"REG_a", %%"REG_a" \n\t" // i
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2299 PREFETCH" (%%"REG_c") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2300 PREFETCH" 32(%%"REG_c") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2301 PREFETCH" 64(%%"REG_c") \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2302
28276
877336d3c598 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 27911
diff changeset
2303 #if ARCH_X86_64
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2304
29465
45e78d49e493 Rename "funny" code to "mmx2 filter" code.
ramiro
parents: 29440
diff changeset
2305 #define CALL_MMX2_FILTER_CODE \
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2306 "movl (%%"REG_b"), %%esi \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2307 "call *%4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2308 "movl (%%"REG_b", %%"REG_a"), %%esi \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2309 "add %%"REG_S", %%"REG_c" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2310 "add %%"REG_a", %%"REG_D" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2311 "xor %%"REG_a", %%"REG_a" \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2312
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2313 #else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2314
29465
45e78d49e493 Rename "funny" code to "mmx2 filter" code.
ramiro
parents: 29440
diff changeset
2315 #define CALL_MMX2_FILTER_CODE \
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2316 "movl (%%"REG_b"), %%esi \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2317 "call *%4 \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2318 "addl (%%"REG_b", %%"REG_a"), %%"REG_c" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2319 "add %%"REG_a", %%"REG_D" \n\t"\
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2320 "xor %%"REG_a", %%"REG_a" \n\t"\
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2321
25183
2ef0fab3aa73 Comment some #endif directives.
diego
parents: 24937
diff changeset
2322 #endif /* ARCH_X86_64 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2323
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2324 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2325 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2326 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2327 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2328 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2329 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2330 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2331 CALL_MMX2_FILTER_CODE
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2332
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2333 #if defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2334 "mov %5, %%"REG_b" \n\t"
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2335 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2336 :: "m" (src), "m" (dst), "m" (mmx2Filter), "m" (mmx2FilterPos),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2337 "m" (mmx2FilterCode)
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2338 #if defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2339 ,"m" (ebxsave)
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2340 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2341 : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2342 #if !defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2343 ,"%"REG_b
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2344 #endif
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2345 );
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2346 for (i=dstWidth-1; (i*xInc)>>16 >=srcW-1; i--) dst[i] = src[srcW-1]*128;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2347 } else {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2348 #endif /* COMPILE_TEMPLATE_MMX2 */
28957
e538af2c69c1 Do not assume long is same width as x86 register.
ramiro
parents: 28953
diff changeset
2349 x86_reg xInc_shr16 = xInc >> 16;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2350 uint16_t xInc_mask = xInc & 0xffff;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2351 //NO MMX just normal asm ...
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
2352 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2353 "xor %%"REG_a", %%"REG_a" \n\t" // i
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2354 "xor %%"REG_d", %%"REG_d" \n\t" // xx
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2355 "xorl %%ecx, %%ecx \n\t" // xalpha
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2356 ASMALIGN(4)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2357 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2358 "movzbl (%0, %%"REG_d"), %%edi \n\t" //src[xx]
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2359 "movzbl 1(%0, %%"REG_d"), %%esi \n\t" //src[xx+1]
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2360 FAST_BILINEAR_X86
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2361 "movw %%si, (%%"REG_D", %%"REG_a", 2) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2362 "addw %4, %%cx \n\t" //xalpha += xInc&0xFFFF
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2363 "adc %3, %%"REG_d" \n\t" //xx+= xInc>>16 + carry
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2364
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2365 "movzbl (%0, %%"REG_d"), %%edi \n\t" //src[xx]
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2366 "movzbl 1(%0, %%"REG_d"), %%esi \n\t" //src[xx+1]
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2367 FAST_BILINEAR_X86
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2368 "movw %%si, 2(%%"REG_D", %%"REG_a", 2) \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2369 "addw %4, %%cx \n\t" //xalpha += xInc&0xFFFF
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2370 "adc %3, %%"REG_d" \n\t" //xx+= xInc>>16 + carry
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2371
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2372
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2373 "add $2, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2374 "cmp %2, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2375 " jb 1b \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2376
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2377
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2378 :: "r" (src), "m" (dst), "m" (dstWidth), "m" (xInc_shr16), "m" (xInc_mask)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2379 : "%"REG_a, "%"REG_d, "%ecx", "%"REG_D, "%esi"
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2380 );
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2381 #if COMPILE_TEMPLATE_MMX2
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2382 } //if MMX2 can't be used
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2383 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2384 #else
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2385 c->hyscale_fast(c, dst, dstWidth, src, srcW, xInc);
28276
877336d3c598 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 27911
diff changeset
2386 #endif /* ARCH_X86 */
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2387 }
27515
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2388
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2389 if(!isAlpha && c->srcRange != c->dstRange && !(isRGB(c->dstFormat) || isBGR(c->dstFormat))) {
27515
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2390 int i;
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2391 //FIXME all pal and rgb srcFormats could do this convertion as well
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2392 //FIXME all scalers more complex than bilinear could do half of this transform
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2393 if(c->srcRange) {
27515
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2394 for (i=0; i<dstWidth; i++)
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2395 dst[i]= (dst[i]*14071 + 33561947)>>14;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2396 } else {
27515
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2397 for (i=0; i<dstWidth; i++)
27520
740b5a4125c4 Prevent overflows during mpeg->jpeg yuv.
michael
parents: 27515
diff changeset
2398 dst[i]= (FFMIN(dst[i],30189)*19077 - 39057361)>>14;
27515
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2399 }
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2400 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2401 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2402
29089
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2403 static inline void RENAME(hcscale_fast)(SwsContext *c, int16_t *dst,
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2404 int dstWidth, const uint8_t *src1,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2405 const uint8_t *src2, int srcW, int xInc)
29089
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2406 {
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2407 int i;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2408 unsigned int xpos=0;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2409 for (i=0;i<dstWidth;i++) {
29089
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2410 register unsigned int xx=xpos>>16;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2411 register unsigned int xalpha=(xpos&0xFFFF)>>9;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2412 dst[i]=(src1[xx]*(xalpha^127)+src1[xx+1]*xalpha);
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2413 dst[i+VOFW]=(src2[xx]*(xalpha^127)+src2[xx+1]*xalpha);
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2414 /* slower
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2415 dst[i]= (src1[xx]<<7) + (src1[xx+1] - src1[xx])*xalpha;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2416 dst[i+VOFW]=(src2[xx]<<7) + (src2[xx+1] - src2[xx])*xalpha;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2417 */
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2418 xpos+=xInc;
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2419 }
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2420 }
e3253ea94757 swscale: Split h[yc]scale_fast() into their own functions.
ramiro
parents: 29088
diff changeset
2421
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2422 inline static void RENAME(hcscale)(SwsContext *c, uint16_t *dst, long dstWidth, const uint8_t *src1, const uint8_t *src2,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2423 int srcW, int xInc, int flags, const int16_t *hChrFilter,
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2424 const int16_t *hChrFilterPos, int hChrFilterSize,
29815
3e8bf15f96d6 Use enum PixelFormat instead of int for srcFormat and dstFormat.
cehoyos
parents: 29659
diff changeset
2425 enum PixelFormat srcFormat, uint8_t *formatConvBuffer,
29090
319305829bdc swscale: Remove mmx2 params from h[yc]scale().
ramiro
parents: 29089
diff changeset
2426 uint32_t *pal)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2427 {
29313
7a6f47f74e9b Kill warnings of possibly unused variables by using av_unused.
ramiro
parents: 29307
diff changeset
2428 int32_t av_unused *mmx2FilterPos = c->chrMmx2FilterPos;
7a6f47f74e9b Kill warnings of possibly unused variables by using av_unused.
ramiro
parents: 29307
diff changeset
2429 int16_t av_unused *mmx2Filter = c->chrMmx2Filter;
7a6f47f74e9b Kill warnings of possibly unused variables by using av_unused.
ramiro
parents: 29307
diff changeset
2430 int av_unused canMMX2BeUsed = c->canMMX2BeUsed;
29465
45e78d49e493 Rename "funny" code to "mmx2 filter" code.
ramiro
parents: 29440
diff changeset
2431 void av_unused *mmx2FilterCode= c->chrMmx2FilterCode;
29090
319305829bdc swscale: Remove mmx2 params from h[yc]scale().
ramiro
parents: 29089
diff changeset
2432
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2433 if (isGray(srcFormat) || srcFormat==PIX_FMT_MONOBLACK || srcFormat==PIX_FMT_MONOWHITE)
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2434 return;
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2435
29200
80492f643e9b Fix chroma shift when scaling from ARGB on LE and BGRA on BE
sdrik
parents: 29176
diff changeset
2436 if (srcFormat==PIX_FMT_RGB32_1 || srcFormat==PIX_FMT_BGR32_1) {
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2437 src1 += ALT32_CORR;
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2438 src2 += ALT32_CORR;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2439 }
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2440
29299
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2441 if (srcFormat==PIX_FMT_RGB48LE) {
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2442 src1++;
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2443 src2++;
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2444 }
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2445
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2446 if (c->hcscale_internal) {
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2447 c->hcscale_internal(formatConvBuffer, formatConvBuffer+VOFW, src1, src2, srcW, pal);
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2448 src1= formatConvBuffer;
26133
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
2449 src2= formatConvBuffer+VOFW;
22218
ff7aa2aecb9d pal8 input
michael
parents: 21981
diff changeset
2450 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2451
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2452 #if COMPILE_TEMPLATE_MMX
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
2453 // Use the new MMX scaler if the MMX2 one can't be used (it is faster than the x86 ASM one).
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2454 if (!(flags&SWS_FAST_BILINEAR) || (!canMMX2BeUsed))
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2455 #else
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2456 if (!(flags&SWS_FAST_BILINEAR))
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2457 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2458 {
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2459 c->hScale(dst , dstWidth, src1, srcW, xInc, hChrFilter, hChrFilterPos, hChrFilterSize);
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2460 c->hScale(dst+VOFW, dstWidth, src2, srcW, xInc, hChrFilter, hChrFilterPos, hChrFilterSize);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2461 } else { // fast bilinear upscale / crap downscale
28769
741f9cfcee91 remove the rest of x86 asm from LGPL build
henry
parents: 28721
diff changeset
2462 #if ARCH_X86 && CONFIG_GPL
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2463 #if COMPILE_TEMPLATE_MMX2
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2464 int i;
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2465 #if defined(PIC)
29307
5efc5acb0f7c Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED.
ramiro
parents: 29299
diff changeset
2466 DECLARE_ALIGNED(8, uint64_t, ebxsave);
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2467 #endif
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2468 if (canMMX2BeUsed) {
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
2469 __asm__ volatile(
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2470 #if defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2471 "mov %%"REG_b", %6 \n\t"
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2472 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2473 "pxor %%mm7, %%mm7 \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2474 "mov %0, %%"REG_c" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2475 "mov %1, %%"REG_D" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2476 "mov %2, %%"REG_d" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2477 "mov %3, %%"REG_b" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2478 "xor %%"REG_a", %%"REG_a" \n\t" // i
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2479 PREFETCH" (%%"REG_c") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2480 PREFETCH" 32(%%"REG_c") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2481 PREFETCH" 64(%%"REG_c") \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2482
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2483 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2484 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2485 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2486 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2487 "xor %%"REG_a", %%"REG_a" \n\t" // i
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2488 "mov %5, %%"REG_c" \n\t" // src
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2489 "mov %1, %%"REG_D" \n\t" // buf1
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2490 "add $"AV_STRINGIFY(VOF)", %%"REG_D" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2491 PREFETCH" (%%"REG_c") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2492 PREFETCH" 32(%%"REG_c") \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2493 PREFETCH" 64(%%"REG_c") \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2494
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2495 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2496 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2497 CALL_MMX2_FILTER_CODE
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2498 CALL_MMX2_FILTER_CODE
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2499
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2500 #if defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2501 "mov %6, %%"REG_b" \n\t"
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2502 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2503 :: "m" (src1), "m" (dst), "m" (mmx2Filter), "m" (mmx2FilterPos),
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2504 "m" (mmx2FilterCode), "m" (src2)
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2505 #if defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2506 ,"m" (ebxsave)
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2507 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2508 : "%"REG_a, "%"REG_c, "%"REG_d, "%"REG_S, "%"REG_D
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2509 #if !defined(PIC)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2510 ,"%"REG_b
19396
8fe37c66d10a -fPIC support for libswscale
diego
parents: 19372
diff changeset
2511 #endif
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2512 );
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2513 for (i=dstWidth-1; (i*xInc)>>16 >=srcW-1; i--) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2514 //printf("%d %d %d\n", dstWidth, i, srcW);
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2515 dst[i] = src1[srcW-1]*128;
26133
94cc4bac8cd0 Turn ancient V offset numerical constants into named ones.
michael
parents: 26059
diff changeset
2516 dst[i+VOFW] = src2[srcW-1]*128;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2517 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2518 } else {
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2519 #endif /* COMPILE_TEMPLATE_MMX2 */
28957
e538af2c69c1 Do not assume long is same width as x86 register.
ramiro
parents: 28953
diff changeset
2520 x86_reg xInc_shr16 = (x86_reg) (xInc >> 16);
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2521 uint16_t xInc_mask = xInc & 0xffff;
27744
7b83cbade239 Convert asm keyword into __asm__.
flameeyes
parents: 27702
diff changeset
2522 __asm__ volatile(
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2523 "xor %%"REG_a", %%"REG_a" \n\t" // i
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2524 "xor %%"REG_d", %%"REG_d" \n\t" // xx
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2525 "xorl %%ecx, %%ecx \n\t" // xalpha
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2526 ASMALIGN(4)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2527 "1: \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2528 "mov %0, %%"REG_S" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2529 "movzbl (%%"REG_S", %%"REG_d"), %%edi \n\t" //src[xx]
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2530 "movzbl 1(%%"REG_S", %%"REG_d"), %%esi \n\t" //src[xx+1]
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2531 FAST_BILINEAR_X86
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2532 "movw %%si, (%%"REG_D", %%"REG_a", 2) \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2533
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2534 "movzbl (%5, %%"REG_d"), %%edi \n\t" //src[xx]
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2535 "movzbl 1(%5, %%"REG_d"), %%esi \n\t" //src[xx+1]
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2536 FAST_BILINEAR_X86
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2537 "movw %%si, "AV_STRINGIFY(VOF)"(%%"REG_D", %%"REG_a", 2) \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2538
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2539 "addw %4, %%cx \n\t" //xalpha += xInc&0xFFFF
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2540 "adc %3, %%"REG_d" \n\t" //xx+= xInc>>16 + carry
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2541 "add $1, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2542 "cmp %2, %%"REG_a" \n\t"
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2543 " jb 1b \n\t"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2544
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
2545 /* GCC 3.3 makes MPlayer crash on IA-32 machines when using "g" operand here,
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
2546 which is needed to support GCC 4.0. */
29659
ec016bdbae85 Replace manual gcc version check by AV_GCC_VERSION_AT_LEAST macro.
diego
parents: 29644
diff changeset
2547 #if ARCH_X86_64 && AV_GCC_VERSION_AT_LEAST(3,4)
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2548 :: "m" (src1), "m" (dst), "g" (dstWidth), "m" (xInc_shr16), "m" (xInc_mask),
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2549 #else
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2550 :: "m" (src1), "m" (dst), "m" (dstWidth), "m" (xInc_shr16), "m" (xInc_mask),
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2551 #endif
29482
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2552 "r" (src2)
bb2eaf7331e5 More indentation changes leftover from r29522:
ramiro
parents: 29481
diff changeset
2553 : "%"REG_a, "%"REG_d, "%ecx", "%"REG_D, "%esi"
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2554 );
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2555 #if COMPILE_TEMPLATE_MMX2
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2556 } //if MMX2 can't be used
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2557 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2558 #else
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2559 c->hcscale_fast(c, dst, dstWidth, src1, src2, srcW, xInc);
28276
877336d3c598 Change semantic of CONFIG_*, HAVE_* and ARCH_*.
aurel
parents: 27911
diff changeset
2560 #endif /* ARCH_X86 */
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2561 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2562 if(c->srcRange != c->dstRange && !(isRGB(c->dstFormat) || isBGR(c->dstFormat))) {
27515
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2563 int i;
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2564 //FIXME all pal and rgb srcFormats could do this convertion as well
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2565 //FIXME all scalers more complex than bilinear could do half of this transform
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2566 if(c->srcRange) {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2567 for (i=0; i<dstWidth; i++) {
27515
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2568 dst[i ]= (dst[i ]*1799 + 4081085)>>11; //1469
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2569 dst[i+VOFW]= (dst[i+VOFW]*1799 + 4081085)>>11; //1469
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2570 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2571 } else {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2572 for (i=0; i<dstWidth; i++) {
27520
740b5a4125c4 Prevent overflows during mpeg->jpeg yuv.
michael
parents: 27515
diff changeset
2573 dst[i ]= (FFMIN(dst[i ],30775)*4663 - 9289992)>>12; //-264
740b5a4125c4 Prevent overflows during mpeg->jpeg yuv.
michael
parents: 27515
diff changeset
2574 dst[i+VOFW]= (FFMIN(dst[i+VOFW],30775)*4663 - 9289992)>>12; //-264
27515
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2575 }
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2576 }
9355343a7721 Fix jpeg yuv.
michael
parents: 27513
diff changeset
2577 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2578 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2579
29644
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2580 #define DEBUG_SWSCALE_BUFFERS 0
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2581 #define DEBUG_BUFFERS(...) if (DEBUG_SWSCALE_BUFFERS) av_log(c, AV_LOG_DEBUG, __VA_ARGS__)
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2582
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2583 static int RENAME(swScale)(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2584 int srcSliceH, uint8_t* dst[], int dstStride[])
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2585 {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2586 /* load a few things into local vars to make the code more readable? and faster */
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2587 const int srcW= c->srcW;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2588 const int dstW= c->dstW;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2589 const int dstH= c->dstH;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2590 const int chrDstW= c->chrDstW;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2591 const int chrSrcW= c->chrSrcW;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2592 const int lumXInc= c->lumXInc;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2593 const int chrXInc= c->chrXInc;
29815
3e8bf15f96d6 Use enum PixelFormat instead of int for srcFormat and dstFormat.
cehoyos
parents: 29659
diff changeset
2594 const enum PixelFormat dstFormat= c->dstFormat;
3e8bf15f96d6 Use enum PixelFormat instead of int for srcFormat and dstFormat.
cehoyos
parents: 29659
diff changeset
2595 const enum PixelFormat srcFormat= c->srcFormat;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2596 const int flags= c->flags;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2597 int16_t *vLumFilterPos= c->vLumFilterPos;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2598 int16_t *vChrFilterPos= c->vChrFilterPos;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2599 int16_t *hLumFilterPos= c->hLumFilterPos;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2600 int16_t *hChrFilterPos= c->hChrFilterPos;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2601 int16_t *vLumFilter= c->vLumFilter;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2602 int16_t *vChrFilter= c->vChrFilter;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2603 int16_t *hLumFilter= c->hLumFilter;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2604 int16_t *hChrFilter= c->hChrFilter;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2605 int32_t *lumMmxFilter= c->lumMmxFilter;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2606 int32_t *chrMmxFilter= c->chrMmxFilter;
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
2607 int32_t *alpMmxFilter= c->alpMmxFilter;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2608 const int vLumFilterSize= c->vLumFilterSize;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2609 const int vChrFilterSize= c->vChrFilterSize;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2610 const int hLumFilterSize= c->hLumFilterSize;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2611 const int hChrFilterSize= c->hChrFilterSize;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2612 int16_t **lumPixBuf= c->lumPixBuf;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2613 int16_t **chrPixBuf= c->chrPixBuf;
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
2614 int16_t **alpPixBuf= c->alpPixBuf;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2615 const int vLumBufSize= c->vLumBufSize;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2616 const int vChrBufSize= c->vChrBufSize;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2617 uint8_t *formatConvBuffer= c->formatConvBuffer;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2618 const int chrSrcSliceY= srcSliceY >> c->chrSrcVSubSample;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2619 const int chrSrcSliceH= -((-srcSliceH) >> c->chrSrcVSubSample);
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2620 int lastDstY;
27699
31a477d77c57 Do not set src[1] to the palette, it is now in the context
vitor
parents: 27686
diff changeset
2621 uint32_t *pal=c->pal_yuv;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2622
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
2623 /* vars which will change and which we need to store back in the context */
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2624 int dstY= c->dstY;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2625 int lumBufIndex= c->lumBufIndex;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2626 int chrBufIndex= c->chrBufIndex;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2627 int lastInLumBuf= c->lastInLumBuf;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2628 int lastInChrBuf= c->lastInChrBuf;
23129
9528d1ebe68f cosmetics: Remove trailing whitespace.
diego
parents: 22976
diff changeset
2629
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2630 if (isPacked(c->srcFormat)) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2631 src[0]=
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2632 src[1]=
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
2633 src[2]=
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
2634 src[3]= src[0];
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2635 srcStride[0]=
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2636 srcStride[1]=
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
2637 srcStride[2]=
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
2638 srcStride[3]= srcStride[0];
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2639 }
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2640 srcStride[1]<<= c->vChrDrop;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2641 srcStride[2]<<= c->vChrDrop;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2642
29644
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2643 DEBUG_BUFFERS("swScale() %p[%d] %p[%d] %p[%d] %p[%d] -> %p[%d] %p[%d] %p[%d] %p[%d]\n",
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2644 src[0], srcStride[0], src[1], srcStride[1], src[2], srcStride[2], src[3], srcStride[3],
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2645 dst[0], dstStride[0], dst[1], dstStride[1], dst[2], dstStride[2], dst[3], dstStride[3]);
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2646 DEBUG_BUFFERS("srcSliceY: %d srcSliceH: %d dstY: %d dstH: %d\n",
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2647 srcSliceY, srcSliceH, dstY, dstH);
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2648 DEBUG_BUFFERS("vLumFilterSize: %d vLumBufSize: %d vChrFilterSize: %d vChrBufSize: %d\n",
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2649 vLumFilterSize, vLumBufSize, vChrFilterSize, vChrBufSize);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2650
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2651 if (dstStride[0]%8 !=0 || dstStride[1]%8 !=0 || dstStride[2]%8 !=0 || dstStride[3]%8 != 0) {
27702
b6a499f72725 Invert logic for the single-pass in swScale() functions.
flameeyes
parents: 27699
diff changeset
2652 static int warnedAlready=0; //FIXME move this into the context perhaps
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2653 if (flags & SWS_PRINT_INFO && !warnedAlready) {
26150
1df4a811aa9c remove redundant SwScaler text since av_log uses AVClass context
bcoudurier
parents: 26133
diff changeset
2654 av_log(c, AV_LOG_WARNING, "Warning: dstStride is not aligned!\n"
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
2655 " ->cannot do aligned memory accesses anymore\n");
27702
b6a499f72725 Invert logic for the single-pass in swScale() functions.
flameeyes
parents: 27699
diff changeset
2656 warnedAlready=1;
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2657 }
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2658 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2659
27158
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
2660 /* Note the user might start scaling the picture in the middle so this
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
2661 will not get executed. This is not really intended but works
65b8334df960 spelling/grammar/wording overhaul
diego
parents: 26914
diff changeset
2662 currently, so people might do it. */
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2663 if (srcSliceY ==0) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2664 lumBufIndex=0;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2665 chrBufIndex=0;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2666 dstY=0;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2667 lastInLumBuf= -1;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2668 lastInChrBuf= -1;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2669 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2670
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2671 lastDstY= dstY;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2672
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2673 for (;dstY < dstH; dstY++) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2674 unsigned char *dest =dst[0]+dstStride[0]*dstY;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2675 const int chrDstY= dstY>>c->chrDstVSubSample;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2676 unsigned char *uDest=dst[1]+dstStride[1]*chrDstY;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2677 unsigned char *vDest=dst[2]+dstStride[2]*chrDstY;
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
2678 unsigned char *aDest=(CONFIG_SWSCALE_ALPHA && alpPixBuf) ? dst[3]+dstStride[3]*dstY : NULL;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2679
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2680 const int firstLumSrcY= vLumFilterPos[dstY]; //First line needed as input
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2681 const int firstChrSrcY= vChrFilterPos[chrDstY]; //First line needed as input
29408
45759bfb13d6 Remove duplicate horizontal scaling when there aren't enough lines in a slice
ramiro
parents: 29404
diff changeset
2682 int lastLumSrcY= firstLumSrcY + vLumFilterSize -1; // Last line needed as input
45759bfb13d6 Remove duplicate horizontal scaling when there aren't enough lines in a slice
ramiro
parents: 29404
diff changeset
2683 int lastChrSrcY= firstChrSrcY + vChrFilterSize -1; // Last line needed as input
45759bfb13d6 Remove duplicate horizontal scaling when there aren't enough lines in a slice
ramiro
parents: 29404
diff changeset
2684 int enough_lines;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2685
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2686 //handle holes (FAST_BILINEAR & weird filters)
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2687 if (firstLumSrcY > lastInLumBuf) lastInLumBuf= firstLumSrcY-1;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2688 if (firstChrSrcY > lastInChrBuf) lastInChrBuf= firstChrSrcY-1;
27182
f7b6d1014b6b Remove ASSERT() macro. SoC Patch from Keiji Costantini
lu_zero
parents: 27158
diff changeset
2689 assert(firstLumSrcY >= lastInLumBuf - vLumBufSize + 1);
f7b6d1014b6b Remove ASSERT() macro. SoC Patch from Keiji Costantini
lu_zero
parents: 27158
diff changeset
2690 assert(firstChrSrcY >= lastInChrBuf - vChrBufSize + 1);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2691
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2692 // Do we have enough lines in this slice to output the dstY line
29408
45759bfb13d6 Remove duplicate horizontal scaling when there aren't enough lines in a slice
ramiro
parents: 29404
diff changeset
2693 enough_lines = lastLumSrcY < srcSliceY + srcSliceH && lastChrSrcY < -((-srcSliceY - srcSliceH)>>c->chrSrcVSubSample);
45759bfb13d6 Remove duplicate horizontal scaling when there aren't enough lines in a slice
ramiro
parents: 29404
diff changeset
2694 if (!enough_lines) {
45759bfb13d6 Remove duplicate horizontal scaling when there aren't enough lines in a slice
ramiro
parents: 29404
diff changeset
2695 lastLumSrcY = srcSliceY + srcSliceH - 1;
45759bfb13d6 Remove duplicate horizontal scaling when there aren't enough lines in a slice
ramiro
parents: 29404
diff changeset
2696 lastChrSrcY = chrSrcSliceY + chrSrcSliceH - 1;
45759bfb13d6 Remove duplicate horizontal scaling when there aren't enough lines in a slice
ramiro
parents: 29404
diff changeset
2697 }
45759bfb13d6 Remove duplicate horizontal scaling when there aren't enough lines in a slice
ramiro
parents: 29404
diff changeset
2698
29644
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2699 DEBUG_BUFFERS("dstY: %d\n", dstY);
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2700 DEBUG_BUFFERS("\tfirstLumSrcY: %d lastLumSrcY: %d lastInLumBuf: %d\n",
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2701 firstLumSrcY, lastLumSrcY, lastInLumBuf);
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2702 DEBUG_BUFFERS("\tfirstChrSrcY: %d lastChrSrcY: %d lastInChrBuf: %d\n",
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2703 firstChrSrcY, lastChrSrcY, lastInChrBuf);
29408
45759bfb13d6 Remove duplicate horizontal scaling when there aren't enough lines in a slice
ramiro
parents: 29404
diff changeset
2704
29409
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2705 //Do horizontal scaling
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2706 while(lastInLumBuf < lastLumSrcY) {
29409
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2707 uint8_t *src1= src[0]+(lastInLumBuf + 1 - srcSliceY)*srcStride[0];
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2708 uint8_t *src2= src[3]+(lastInLumBuf + 1 - srcSliceY)*srcStride[3];
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2709 lumBufIndex++;
29644
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2710 DEBUG_BUFFERS("\t\tlumBufIndex %d: lastInLumBuf: %d\n",
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2711 lumBufIndex, lastInLumBuf);
29409
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2712 assert(lumBufIndex < 2*vLumBufSize);
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2713 assert(lastInLumBuf + 1 - srcSliceY < srcSliceH);
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2714 assert(lastInLumBuf + 1 - srcSliceY >= 0);
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2715 RENAME(hyscale)(c, lumPixBuf[ lumBufIndex ], dstW, src1, srcW, lumXInc,
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2716 flags, hLumFilter, hLumFilterPos, hLumFilterSize,
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2717 c->srcFormat, formatConvBuffer,
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2718 pal, 0);
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2719 if (CONFIG_SWSCALE_ALPHA && alpPixBuf)
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2720 RENAME(hyscale)(c, alpPixBuf[ lumBufIndex ], dstW, src2, srcW, lumXInc,
29090
319305829bdc swscale: Remove mmx2 params from h[yc]scale().
ramiro
parents: 29089
diff changeset
2721 flags, hLumFilter, hLumFilterPos, hLumFilterSize,
319305829bdc swscale: Remove mmx2 params from h[yc]scale().
ramiro
parents: 29089
diff changeset
2722 c->srcFormat, formatConvBuffer,
29409
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2723 pal, 1);
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2724 lastInLumBuf++;
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2725 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2726 while(lastInChrBuf < lastChrSrcY) {
29409
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2727 uint8_t *src1= src[1]+(lastInChrBuf + 1 - chrSrcSliceY)*srcStride[1];
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2728 uint8_t *src2= src[2]+(lastInChrBuf + 1 - chrSrcSliceY)*srcStride[2];
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2729 chrBufIndex++;
29644
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2730 DEBUG_BUFFERS("\t\tchrBufIndex %d: lastInChrBuf: %d\n",
5eee87d44a4a Cleanup buffer debugs in swScale().
ramiro
parents: 29643
diff changeset
2731 chrBufIndex, lastInChrBuf);
29409
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2732 assert(chrBufIndex < 2*vChrBufSize);
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2733 assert(lastInChrBuf + 1 - chrSrcSliceY < (chrSrcSliceH));
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2734 assert(lastInChrBuf + 1 - chrSrcSliceY >= 0);
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2735 //FIXME replace parameters through context struct (some at least)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2736
29409
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2737 if (!(isGray(srcFormat) || isGray(dstFormat)))
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2738 RENAME(hcscale)(c, chrPixBuf[ chrBufIndex ], chrDstW, src1, src2, chrSrcW, chrXInc,
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2739 flags, hChrFilter, hChrFilterPos, hChrFilterSize,
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2740 c->srcFormat, formatConvBuffer,
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2741 pal);
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2742 lastInChrBuf++;
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2743 }
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2744 //wrap buf index around to stay inside the ring buffer
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2745 if (lumBufIndex >= vLumBufSize) lumBufIndex-= vLumBufSize;
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2746 if (chrBufIndex >= vChrBufSize) chrBufIndex-= vChrBufSize;
4b0a12d0e5bd Indent.
ramiro
parents: 29408
diff changeset
2747 if (!enough_lines)
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2748 break; //we can't output a dstY line so let's try with the next slice
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2749
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2750 #if COMPILE_TEMPLATE_MMX
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
2751 c->blueDither= ff_dither8[dstY&1];
27683
29d9ec9b1f9d Remove g6Dither from libswscale.
cehoyos
parents: 27604
diff changeset
2752 if (c->dstFormat == PIX_FMT_RGB555 || c->dstFormat == PIX_FMT_BGR555)
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
2753 c->greenDither= ff_dither8[dstY&1];
27683
29d9ec9b1f9d Remove g6Dither from libswscale.
cehoyos
parents: 27604
diff changeset
2754 else
27686
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
2755 c->greenDither= ff_dither4[dstY&1];
235164d3b407 Remove b5Dither, g5Dither and r5Dither from libswscale.
cehoyos
parents: 27683
diff changeset
2756 c->redDither= ff_dither8[(dstY+1)&1];
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2757 #endif
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2758 if (dstY < dstH-2) {
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2759 const int16_t **lumSrcPtr= (const int16_t **) lumPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize;
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2760 const int16_t **chrSrcPtr= (const int16_t **) chrPixBuf + chrBufIndex + firstChrSrcY - lastInChrBuf + vChrBufSize;
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2761 const int16_t **alpSrcPtr= (CONFIG_SWSCALE_ALPHA && alpPixBuf) ? (const int16_t **) alpPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize : NULL;
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2762 #if COMPILE_TEMPLATE_MMX
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2763 int i;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2764 if (flags & SWS_ACCURATE_RND) {
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2765 int s= APCK_SIZE / 8;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2766 for (i=0; i<vLumFilterSize; i+=2) {
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2767 *(void**)&lumMmxFilter[s*i ]= lumSrcPtr[i ];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2768 *(void**)&lumMmxFilter[s*i+APCK_PTR2/4 ]= lumSrcPtr[i+(vLumFilterSize>1)];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2769 lumMmxFilter[s*i+APCK_COEF/4 ]=
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2770 lumMmxFilter[s*i+APCK_COEF/4+1]= vLumFilter[dstY*vLumFilterSize + i ]
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2771 + (vLumFilterSize>1 ? vLumFilter[dstY*vLumFilterSize + i + 1]<<16 : 0);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2772 if (CONFIG_SWSCALE_ALPHA && alpPixBuf) {
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2773 *(void**)&alpMmxFilter[s*i ]= alpSrcPtr[i ];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2774 *(void**)&alpMmxFilter[s*i+APCK_PTR2/4 ]= alpSrcPtr[i+(vLumFilterSize>1)];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2775 alpMmxFilter[s*i+APCK_COEF/4 ]=
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2776 alpMmxFilter[s*i+APCK_COEF/4+1]= lumMmxFilter[s*i+APCK_COEF/4 ];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2777 }
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2778 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2779 for (i=0; i<vChrFilterSize; i+=2) {
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2780 *(void**)&chrMmxFilter[s*i ]= chrSrcPtr[i ];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2781 *(void**)&chrMmxFilter[s*i+APCK_PTR2/4 ]= chrSrcPtr[i+(vChrFilterSize>1)];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2782 chrMmxFilter[s*i+APCK_COEF/4 ]=
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2783 chrMmxFilter[s*i+APCK_COEF/4+1]= vChrFilter[chrDstY*vChrFilterSize + i ]
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2784 + (vChrFilterSize>1 ? vChrFilter[chrDstY*vChrFilterSize + i + 1]<<16 : 0);
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2785 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2786 } else {
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2787 for (i=0; i<vLumFilterSize; i++) {
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2788 lumMmxFilter[4*i+0]= (int32_t)lumSrcPtr[i];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2789 lumMmxFilter[4*i+1]= (uint64_t)lumSrcPtr[i] >> 32;
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2790 lumMmxFilter[4*i+2]=
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2791 lumMmxFilter[4*i+3]=
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2792 ((uint16_t)vLumFilter[dstY*vLumFilterSize + i])*0x10001;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2793 if (CONFIG_SWSCALE_ALPHA && alpPixBuf) {
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2794 alpMmxFilter[4*i+0]= (int32_t)alpSrcPtr[i];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2795 alpMmxFilter[4*i+1]= (uint64_t)alpSrcPtr[i] >> 32;
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2796 alpMmxFilter[4*i+2]=
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2797 alpMmxFilter[4*i+3]= lumMmxFilter[4*i+2];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2798 }
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2799 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2800 for (i=0; i<vChrFilterSize; i++) {
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2801 chrMmxFilter[4*i+0]= (int32_t)chrSrcPtr[i];
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2802 chrMmxFilter[4*i+1]= (uint64_t)chrSrcPtr[i] >> 32;
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2803 chrMmxFilter[4*i+2]=
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2804 chrMmxFilter[4*i+3]=
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2805 ((uint16_t)vChrFilter[chrDstY*vChrFilterSize + i])*0x10001;
28976
602c77c53923 Add alpha channel scaling
sdrik
parents: 28972
diff changeset
2806 }
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2807 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2808 #endif
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2809 if (dstFormat == PIX_FMT_NV12 || dstFormat == PIX_FMT_NV21) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2810 const int chrSkipMask= (1<<c->chrDstVSubSample)-1;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2811 if (dstY&chrSkipMask) uDest= NULL; //FIXME split functions in lumi / chromi
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2812 c->yuv2nv12X(c,
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2813 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2814 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2815 dest, uDest, dstW, chrDstW, dstFormat);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2816 } else if (isPlanarYUV(dstFormat) || dstFormat==PIX_FMT_GRAY8) { //YV12 like
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2817 const int chrSkipMask= (1<<c->chrDstVSubSample)-1;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2818 if ((dstY&chrSkipMask) || isGray(dstFormat)) uDest=vDest= NULL; //FIXME split functions in lumi / chromi
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2819 if (is16BPS(dstFormat)) {
29475
a697eafd804d Vertical yuv -> yuv16 scaler.
ramiro
parents: 29466
diff changeset
2820 yuv2yuvX16inC(
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2821 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2822 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2823 alpSrcPtr, (uint16_t *) dest, (uint16_t *) uDest, (uint16_t *) vDest, (uint16_t *) aDest, dstW, chrDstW,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2824 dstFormat);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2825 } else if (vLumFilterSize == 1 && vChrFilterSize == 1) { // unscaled YV12
29643
c2b0efdf5358 Use correct buffers in vertical scaler in unscaled YV12 case.
ramiro
parents: 29608
diff changeset
2826 int16_t *lumBuf = lumSrcPtr[0];
c2b0efdf5358 Use correct buffers in vertical scaler in unscaled YV12 case.
ramiro
parents: 29608
diff changeset
2827 int16_t *chrBuf= chrSrcPtr[0];
c2b0efdf5358 Use correct buffers in vertical scaler in unscaled YV12 case.
ramiro
parents: 29608
diff changeset
2828 int16_t *alpBuf= (CONFIG_SWSCALE_ALPHA && alpPixBuf) ? alpSrcPtr[0] : NULL;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2829 c->yuv2yuv1(c, lumBuf, chrBuf, alpBuf, dest, uDest, vDest, aDest, dstW, chrDstW);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2830 } else { //General YV12
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2831 c->yuv2yuvX(c,
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2832 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2833 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2834 alpSrcPtr, dest, uDest, vDest, aDest, dstW, chrDstW);
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2835 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2836 } else {
27182
f7b6d1014b6b Remove ASSERT() macro. SoC Patch from Keiji Costantini
lu_zero
parents: 27158
diff changeset
2837 assert(lumSrcPtr + vLumFilterSize - 1 < lumPixBuf + vLumBufSize*2);
f7b6d1014b6b Remove ASSERT() macro. SoC Patch from Keiji Costantini
lu_zero
parents: 27158
diff changeset
2838 assert(chrSrcPtr + vChrFilterSize - 1 < chrPixBuf + vChrBufSize*2);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2839 if (vLumFilterSize == 1 && vChrFilterSize == 2) { //unscaled RGB
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2840 int chrAlpha= vChrFilter[2*dstY+1];
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2841 if(flags & SWS_FULL_CHR_H_INT) {
27548
78da4c8b2293 Implement full horizontal chroma for rgb/bgr24/32 output.
michael
parents: 27546
diff changeset
2842 yuv2rgbXinC_full(c, //FIXME write a packed1_full function
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2843 vLumFilter+dstY*vLumFilterSize, lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2844 vChrFilter+dstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2845 alpSrcPtr, dest, dstW, dstY);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2846 } else {
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2847 c->yuv2packed1(c, *lumSrcPtr, *chrSrcPtr, *(chrSrcPtr+1),
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2848 alpPixBuf ? *alpSrcPtr : NULL,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2849 dest, dstW, chrAlpha, dstFormat, flags, dstY);
27548
78da4c8b2293 Implement full horizontal chroma for rgb/bgr24/32 output.
michael
parents: 27546
diff changeset
2850 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2851 } else if (vLumFilterSize == 2 && vChrFilterSize == 2) { //bilinear upscale RGB
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2852 int lumAlpha= vLumFilter[2*dstY+1];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2853 int chrAlpha= vChrFilter[2*dstY+1];
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2854 lumMmxFilter[2]=
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2855 lumMmxFilter[3]= vLumFilter[2*dstY ]*0x10001;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2856 chrMmxFilter[2]=
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2857 chrMmxFilter[3]= vChrFilter[2*chrDstY]*0x10001;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2858 if(flags & SWS_FULL_CHR_H_INT) {
27548
78da4c8b2293 Implement full horizontal chroma for rgb/bgr24/32 output.
michael
parents: 27546
diff changeset
2859 yuv2rgbXinC_full(c, //FIXME write a packed2_full function
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2860 vLumFilter+dstY*vLumFilterSize, lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2861 vChrFilter+dstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2862 alpSrcPtr, dest, dstW, dstY);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2863 } else {
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2864 c->yuv2packed2(c, *lumSrcPtr, *(lumSrcPtr+1), *chrSrcPtr, *(chrSrcPtr+1),
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2865 alpPixBuf ? *alpSrcPtr : NULL, alpPixBuf ? *(alpSrcPtr+1) : NULL,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2866 dest, dstW, lumAlpha, chrAlpha, dstY);
27548
78da4c8b2293 Implement full horizontal chroma for rgb/bgr24/32 output.
michael
parents: 27546
diff changeset
2867 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2868 } else { //general RGB
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2869 if(flags & SWS_FULL_CHR_H_INT) {
27548
78da4c8b2293 Implement full horizontal chroma for rgb/bgr24/32 output.
michael
parents: 27546
diff changeset
2870 yuv2rgbXinC_full(c,
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2871 vLumFilter+dstY*vLumFilterSize, lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2872 vChrFilter+dstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2873 alpSrcPtr, dest, dstW, dstY);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2874 } else {
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2875 c->yuv2packedX(c,
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2876 vLumFilter+dstY*vLumFilterSize, lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2877 vChrFilter+dstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2878 alpSrcPtr, dest, dstW, dstY);
27548
78da4c8b2293 Implement full horizontal chroma for rgb/bgr24/32 output.
michael
parents: 27546
diff changeset
2879 }
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2880 }
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2881 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2882 } else { // hmm looks like we can't use MMX here without overwriting this array's tail
29103
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2883 const int16_t **lumSrcPtr= (const int16_t **)lumPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize;
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2884 const int16_t **chrSrcPtr= (const int16_t **)chrPixBuf + chrBufIndex + firstChrSrcY - lastInChrBuf + vChrBufSize;
06c79db43cd8 swscale: Add const to some swScale functions' parameters.
ramiro
parents: 29090
diff changeset
2885 const int16_t **alpSrcPtr= (CONFIG_SWSCALE_ALPHA && alpPixBuf) ? (const int16_t **)alpPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize : NULL;
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2886 if (dstFormat == PIX_FMT_NV12 || dstFormat == PIX_FMT_NV21) {
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2887 const int chrSkipMask= (1<<c->chrDstVSubSample)-1;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2888 if (dstY&chrSkipMask) uDest= NULL; //FIXME split functions in lumi / chromi
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2889 yuv2nv12XinC(
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2890 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2891 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2892 dest, uDest, dstW, chrDstW, dstFormat);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2893 } else if (isPlanarYUV(dstFormat) || dstFormat==PIX_FMT_GRAY8) { //YV12
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2894 const int chrSkipMask= (1<<c->chrDstVSubSample)-1;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2895 if ((dstY&chrSkipMask) || isGray(dstFormat)) uDest=vDest= NULL; //FIXME split functions in lumi / chromi
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2896 if (is16BPS(dstFormat)) {
29475
a697eafd804d Vertical yuv -> yuv16 scaler.
ramiro
parents: 29466
diff changeset
2897 yuv2yuvX16inC(
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2898 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2899 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2900 alpSrcPtr, (uint16_t *) dest, (uint16_t *) uDest, (uint16_t *) vDest, (uint16_t *) aDest, dstW, chrDstW,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2901 dstFormat);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2902 } else {
29476
dc1a6d06b090 Indent.
ramiro
parents: 29475
diff changeset
2903 yuv2yuvXinC(
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2904 vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2905 vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2906 alpSrcPtr, dest, uDest, vDest, aDest, dstW, chrDstW);
29475
a697eafd804d Vertical yuv -> yuv16 scaler.
ramiro
parents: 29466
diff changeset
2907 }
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2908 } else {
27182
f7b6d1014b6b Remove ASSERT() macro. SoC Patch from Keiji Costantini
lu_zero
parents: 27158
diff changeset
2909 assert(lumSrcPtr + vLumFilterSize - 1 < lumPixBuf + vLumBufSize*2);
f7b6d1014b6b Remove ASSERT() macro. SoC Patch from Keiji Costantini
lu_zero
parents: 27158
diff changeset
2910 assert(chrSrcPtr + vChrFilterSize - 1 < chrPixBuf + vChrBufSize*2);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2911 if(flags & SWS_FULL_CHR_H_INT) {
27548
78da4c8b2293 Implement full horizontal chroma for rgb/bgr24/32 output.
michael
parents: 27546
diff changeset
2912 yuv2rgbXinC_full(c,
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2913 vLumFilter+dstY*vLumFilterSize, lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2914 vChrFilter+dstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2915 alpSrcPtr, dest, dstW, dstY);
29481
c080f1f5c07e Cosmetics:
ramiro
parents: 29480
diff changeset
2916 } else {
27568
e5095880bc12 Fix indention.
michael
parents: 27565
diff changeset
2917 yuv2packedXinC(c,
29480
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2918 vLumFilter+dstY*vLumFilterSize, lumSrcPtr, vLumFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2919 vChrFilter+dstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
a4d8dee13834 Indent libswscale:
ramiro
parents: 29476
diff changeset
2920 alpSrcPtr, dest, dstW, dstY);
27548
78da4c8b2293 Implement full horizontal chroma for rgb/bgr24/32 output.
michael
parents: 27546
diff changeset
2921 }
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2922 }
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2923 }
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2924 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2925
28977
6601bf7365d5 YUVA420P is now supported as output format
sdrik
parents: 28976
diff changeset
2926 if ((dstFormat == PIX_FMT_YUVA420P) && !alpPixBuf)
6601bf7365d5 YUVA420P is now supported as output format
sdrik
parents: 28976
diff changeset
2927 fillPlane(dst[3], dstStride[3], dstW, dstY-lastDstY, lastDstY, 255);
6601bf7365d5 YUVA420P is now supported as output format
sdrik
parents: 28976
diff changeset
2928
29404
efbe0c7de351 Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use them
ramiro
parents: 29403
diff changeset
2929 #if COMPILE_TEMPLATE_MMX
29088
d8a28bef8bc3 swscale: Execute sfence and emms depending on runtime flags.
ramiro
parents: 29060
diff changeset
2930 if (flags & SWS_CPU_CAPS_MMX2 ) __asm__ volatile("sfence":::"memory");
d8a28bef8bc3 swscale: Execute sfence and emms depending on runtime flags.
ramiro
parents: 29060
diff changeset
2931 /* On K6 femms is faster than emms. On K7 femms is directly mapped to emms. */
d8a28bef8bc3 swscale: Execute sfence and emms depending on runtime flags.
ramiro
parents: 29060
diff changeset
2932 if (flags & SWS_CPU_CAPS_3DNOW) __asm__ volatile("femms" :::"memory");
d8a28bef8bc3 swscale: Execute sfence and emms depending on runtime flags.
ramiro
parents: 29060
diff changeset
2933 else __asm__ volatile("emms" :::"memory");
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2934 #endif
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2935 /* store changed local vars back in the context */
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2936 c->dstY= dstY;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2937 c->lumBufIndex= lumBufIndex;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2938 c->chrBufIndex= chrBufIndex;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2939 c->lastInLumBuf= lastInLumBuf;
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2940 c->lastInChrBuf= lastInChrBuf;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2941
23161
ee7358c1726c cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.
diego
parents: 23129
diff changeset
2942 return dstY - lastDstY;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2943 }
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2944
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2945 static void RENAME(sws_init_swScale)(SwsContext *c)
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2946 {
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2947 enum PixelFormat srcFormat = c->srcFormat;
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2948
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2949 c->yuv2nv12X = RENAME(yuv2nv12X );
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2950 c->yuv2yuv1 = RENAME(yuv2yuv1 );
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2951 c->yuv2yuvX = RENAME(yuv2yuvX );
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2952 c->yuv2packed1 = RENAME(yuv2packed1 );
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2953 c->yuv2packed2 = RENAME(yuv2packed2 );
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2954 c->yuv2packedX = RENAME(yuv2packedX );
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2955
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2956 c->hScale = RENAME(hScale );
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2957
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2958 c->hyscale_fast = RENAME(hyscale_fast);
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2959 c->hcscale_fast = RENAME(hcscale_fast);
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2960
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2961 c->hcscale_internal = NULL;
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2962 switch(srcFormat) {
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2963 case PIX_FMT_YUYV422 : c->hcscale_internal = RENAME(yuy2ToUV); break;
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2964 case PIX_FMT_UYVY422 : c->hcscale_internal = RENAME(uyvyToUV); break;
29932
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
2965 case PIX_FMT_NV12 : c->hcscale_internal = nv12ToUV; break;
7c5fd4b35889 Add support for nv12/nv21 input.
ramiro
parents: 29815
diff changeset
2966 case PIX_FMT_NV21 : c->hcscale_internal = nv21ToUV; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2967 case PIX_FMT_RGB8 :
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2968 case PIX_FMT_BGR8 :
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2969 case PIX_FMT_PAL8 :
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2970 case PIX_FMT_BGR4_BYTE:
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
2971 case PIX_FMT_RGB4_BYTE: c->hcscale_internal = palToUV; break;
29608
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
2972 case PIX_FMT_YUV420P16BE:
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
2973 case PIX_FMT_YUV422P16BE:
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
2974 case PIX_FMT_YUV444P16BE: c->hcscale_internal = RENAME(BEToUV); break;
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
2975 case PIX_FMT_YUV420P16LE:
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
2976 case PIX_FMT_YUV422P16LE:
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
2977 case PIX_FMT_YUV444P16LE: c->hcscale_internal = RENAME(LEToUV); break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2978 }
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2979 if (c->chrSrcHSubSample) {
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2980 switch(srcFormat) {
29299
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2981 case PIX_FMT_RGB48BE:
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2982 case PIX_FMT_RGB48LE: c->hcscale_internal = rgb48ToUV_half; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2983 case PIX_FMT_RGB32 :
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
2984 case PIX_FMT_RGB32_1: c->hcscale_internal = bgr32ToUV_half; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2985 case PIX_FMT_BGR24 : c->hcscale_internal = RENAME(bgr24ToUV_half); break;
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
2986 case PIX_FMT_BGR565 : c->hcscale_internal = bgr16ToUV_half; break;
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
2987 case PIX_FMT_BGR555 : c->hcscale_internal = bgr15ToUV_half; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2988 case PIX_FMT_BGR32 :
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
2989 case PIX_FMT_BGR32_1: c->hcscale_internal = rgb32ToUV_half; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2990 case PIX_FMT_RGB24 : c->hcscale_internal = RENAME(rgb24ToUV_half); break;
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
2991 case PIX_FMT_RGB565 : c->hcscale_internal = rgb16ToUV_half; break;
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
2992 case PIX_FMT_RGB555 : c->hcscale_internal = rgb15ToUV_half; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2993 }
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2994 } else {
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2995 switch(srcFormat) {
29299
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2996 case PIX_FMT_RGB48BE:
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
2997 case PIX_FMT_RGB48LE: c->hcscale_internal = rgb48ToUV; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
2998 case PIX_FMT_RGB32 :
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
2999 case PIX_FMT_RGB32_1: c->hcscale_internal = bgr32ToUV; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3000 case PIX_FMT_BGR24 : c->hcscale_internal = RENAME(bgr24ToUV); break;
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3001 case PIX_FMT_BGR565 : c->hcscale_internal = bgr16ToUV; break;
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3002 case PIX_FMT_BGR555 : c->hcscale_internal = bgr15ToUV; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3003 case PIX_FMT_BGR32 :
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3004 case PIX_FMT_BGR32_1: c->hcscale_internal = rgb32ToUV; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3005 case PIX_FMT_RGB24 : c->hcscale_internal = RENAME(rgb24ToUV); break;
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3006 case PIX_FMT_RGB565 : c->hcscale_internal = rgb16ToUV; break;
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3007 case PIX_FMT_RGB555 : c->hcscale_internal = rgb15ToUV; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3008 }
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3009 }
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3010
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3011 c->hyscale_internal = NULL;
29139
cd5d58b02153 Do not use abgrToA for both luma and alpha channel in hyscale.
sdrik
parents: 29105
diff changeset
3012 c->hascale_internal = NULL;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3013 switch (srcFormat) {
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3014 case PIX_FMT_YUYV422 :
29608
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
3015 case PIX_FMT_YUV420P16BE:
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
3016 case PIX_FMT_YUV422P16BE:
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
3017 case PIX_FMT_YUV444P16BE:
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3018 case PIX_FMT_GRAY16BE : c->hyscale_internal = RENAME(yuy2ToY); break;
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3019 case PIX_FMT_UYVY422 :
29608
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
3020 case PIX_FMT_YUV420P16LE:
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
3021 case PIX_FMT_YUV422P16LE:
ff34398b14b1 Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().
ramiro
parents: 29482
diff changeset
3022 case PIX_FMT_YUV444P16LE:
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3023 case PIX_FMT_GRAY16LE : c->hyscale_internal = RENAME(uyvyToY); break;
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3024 case PIX_FMT_BGR24 : c->hyscale_internal = RENAME(bgr24ToY); break;
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3025 case PIX_FMT_BGR565 : c->hyscale_internal = bgr16ToY; break;
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3026 case PIX_FMT_BGR555 : c->hyscale_internal = bgr15ToY; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3027 case PIX_FMT_RGB24 : c->hyscale_internal = RENAME(rgb24ToY); break;
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3028 case PIX_FMT_RGB565 : c->hyscale_internal = rgb16ToY; break;
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3029 case PIX_FMT_RGB555 : c->hyscale_internal = rgb15ToY; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3030 case PIX_FMT_RGB8 :
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3031 case PIX_FMT_BGR8 :
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3032 case PIX_FMT_PAL8 :
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3033 case PIX_FMT_BGR4_BYTE:
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3034 case PIX_FMT_RGB4_BYTE: c->hyscale_internal = palToY; break;
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3035 case PIX_FMT_MONOBLACK: c->hyscale_internal = monoblack2Y; break;
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3036 case PIX_FMT_MONOWHITE: c->hyscale_internal = monowhite2Y; break;
29139
cd5d58b02153 Do not use abgrToA for both luma and alpha channel in hyscale.
sdrik
parents: 29105
diff changeset
3037 case PIX_FMT_RGB32 :
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3038 case PIX_FMT_RGB32_1: c->hyscale_internal = bgr32ToY; break;
29139
cd5d58b02153 Do not use abgrToA for both luma and alpha channel in hyscale.
sdrik
parents: 29105
diff changeset
3039 case PIX_FMT_BGR32 :
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3040 case PIX_FMT_BGR32_1: c->hyscale_internal = rgb32ToY; break;
29299
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
3041 case PIX_FMT_RGB48BE:
24954ec81529 Partial (low bits ignored, no direct transcoding into other RGB formats) support
kostya
parents: 29278
diff changeset
3042 case PIX_FMT_RGB48LE: c->hyscale_internal = rgb48ToY; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3043 }
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3044 if (c->alpPixBuf) {
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3045 switch (srcFormat) {
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3046 case PIX_FMT_RGB32 :
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3047 case PIX_FMT_RGB32_1:
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3048 case PIX_FMT_BGR32 :
29278
fdf257026cf0 Move colorspace conversion functions implemented in pure C from template
kostya
parents: 29200
diff changeset
3049 case PIX_FMT_BGR32_1: c->hascale_internal = abgrToA; break;
29105
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3050 }
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3051 }
9502a8895e77 swscale: Use function pointers for swScale functions.
ramiro
parents: 29103
diff changeset
3052 }