annotate postproc/rgb2rgb_template.c @ 17586:65b39a32a7c4

Fix big-endian color permutation problems. patch by Alan Curry, pacman_at_TheWorld_dot_com
author diego
date Sat, 11 Feb 2006 13:35:46 +0000
parents e91f944f6ed9
children 6a6db6b74735
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
1 /*
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
2 *
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
3 * rgb2rgb.c, Software RGB to RGB convertor
2732
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
4 * pluralize by Software PAL8 to RGB convertor
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
5 * Software YUV to YUV convertor
ae79207a3055 Move yuv2rgb to postprocess
nick
parents: 2725
diff changeset
6 * Software YUV to RGB convertor
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
7 * Written by Nick Kurshev.
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
8 * palette & yuv & runtime cpu stuff by Michael (michaelni@gmx.at) (under GPL)
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
9 * lot of big-endian byteorder fixes by Alex Beregszaszi
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
10 */
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
11
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
12 #include <stddef.h>
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
13 #include <inttypes.h> /* for __WORDSIZE */
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
14
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
15 #ifndef __WORDSIZE
7421
0684cad9b204 use detected WORDSIZE instead of warning, when inttypes.h doesn't define __WORDSIZE
arpi
parents: 6608
diff changeset
16 // #warning You have misconfigured system and probably will lose performance!
0684cad9b204 use detected WORDSIZE instead of warning, when inttypes.h doesn't define __WORDSIZE
arpi
parents: 6608
diff changeset
17 #define __WORDSIZE MP_WORDSIZE
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
18 #endif
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
19
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
20 #undef PREFETCH
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
21 #undef MOVNTQ
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
22 #undef EMMS
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
23 #undef SFENCE
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
24 #undef MMREG_SIZE
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
25 #undef PREFETCHW
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
26 #undef PAVGB
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
27
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
28 #ifdef HAVE_SSE2
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
29 #define MMREG_SIZE 16
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
30 #else
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
31 #define MMREG_SIZE 8
2535
b44113f46c96 cant compile on non x86 bugfix
michael
parents: 2517
diff changeset
32 #endif
2513
nick
parents: 2512
diff changeset
33
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
34 #ifdef HAVE_3DNOW
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
35 #define PREFETCH "prefetch"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
36 #define PREFETCHW "prefetchw"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
37 #define PAVGB "pavgusb"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
38 #elif defined ( HAVE_MMX2 )
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
39 #define PREFETCH "prefetchnta"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
40 #define PREFETCHW "prefetcht0"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
41 #define PAVGB "pavgb"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
42 #else
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
43 #define PREFETCH "/nop"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
44 #define PREFETCHW "/nop"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
45 #endif
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
46
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
47 #ifdef HAVE_3DNOW
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
48 /* On K6 femms is faster of emms. On K7 femms is directly mapped on emms. */
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
49 #define EMMS "femms"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
50 #else
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
51 #define EMMS "emms"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
52 #endif
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
53
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
54 #ifdef HAVE_MMX2
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
55 #define MOVNTQ "movntq"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
56 #define SFENCE "sfence"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
57 #else
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
58 #define MOVNTQ "movq"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
59 #define SFENCE "/nop"
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
60 #endif
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
61
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
62 static inline void RENAME(rgb24to32)(const uint8_t *src,uint8_t *dst,long src_size)
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
63 {
2508
94f9825a3736 Prev ver could work only on x86
nick
parents: 2506
diff changeset
64 uint8_t *dest = dst;
2677
794dec2fae64 using const modifier
nick
parents: 2564
diff changeset
65 const uint8_t *s = src;
794dec2fae64 using const modifier
nick
parents: 2564
diff changeset
66 const uint8_t *end;
2510
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
67 #ifdef HAVE_MMX
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
68 const uint8_t *mm_end;
2510
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
69 #endif
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
70 end = s + src_size;
2510
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
71 #ifdef HAVE_MMX
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
72 __asm __volatile(PREFETCH" %0"::"m"(*s):"memory");
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
73 mm_end = end - 23;
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
74 __asm __volatile("movq %0, %%mm7"::"m"(mask32):"memory");
2510
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
75 while(s < mm_end)
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
76 {
2511
6db23dd30242 mmx, mmx2, 3dnow optimized 24to32
nick
parents: 2510
diff changeset
77 __asm __volatile(
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
78 PREFETCH" 32%1\n\t"
2510
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
79 "movd %1, %%mm0\n\t"
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
80 "punpckldq 3%1, %%mm0\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
81 "movd 6%1, %%mm1\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
82 "punpckldq 9%1, %%mm1\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
83 "movd 12%1, %%mm2\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
84 "punpckldq 15%1, %%mm2\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
85 "movd 18%1, %%mm3\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
86 "punpckldq 21%1, %%mm3\n\t"
2510
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
87 "pand %%mm7, %%mm0\n\t"
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
88 "pand %%mm7, %%mm1\n\t"
2510
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
89 "pand %%mm7, %%mm2\n\t"
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
90 "pand %%mm7, %%mm3\n\t"
2511
6db23dd30242 mmx, mmx2, 3dnow optimized 24to32
nick
parents: 2510
diff changeset
91 MOVNTQ" %%mm0, %0\n\t"
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
92 MOVNTQ" %%mm1, 8%0\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
93 MOVNTQ" %%mm2, 16%0\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
94 MOVNTQ" %%mm3, 24%0"
2510
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
95 :"=m"(*dest)
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
96 :"m"(*s)
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
97 :"memory");
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
98 dest += 32;
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
99 s += 24;
2510
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
100 }
2513
nick
parents: 2512
diff changeset
101 __asm __volatile(SFENCE:::"memory");
2511
6db23dd30242 mmx, mmx2, 3dnow optimized 24to32
nick
parents: 2510
diff changeset
102 __asm __volatile(EMMS:::"memory");
2510
42e1ae2c8f5f mmx optimized 24to32
nick
parents: 2508
diff changeset
103 #endif
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
104 while(s < end)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
105 {
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
106 #ifdef WORDS_BIGENDIAN
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
107 /* RGB24 (= R,G,B) -> RGB32 (= A,B,G,R) */
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
108 *dest++ = 0;
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
109 *dest++ = s[2];
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
110 *dest++ = s[1];
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
111 *dest++ = s[0];
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
112 s+=3;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
113 #else
2508
94f9825a3736 Prev ver could work only on x86
nick
parents: 2506
diff changeset
114 *dest++ = *s++;
94f9825a3736 Prev ver could work only on x86
nick
parents: 2506
diff changeset
115 *dest++ = *s++;
94f9825a3736 Prev ver could work only on x86
nick
parents: 2506
diff changeset
116 *dest++ = *s++;
94f9825a3736 Prev ver could work only on x86
nick
parents: 2506
diff changeset
117 *dest++ = 0;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
118 #endif
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
119 }
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents:
diff changeset
120 }
2505
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
121
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
122 static inline void RENAME(rgb32to24)(const uint8_t *src,uint8_t *dst,long src_size)
2505
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
123 {
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
124 uint8_t *dest = dst;
2677
794dec2fae64 using const modifier
nick
parents: 2564
diff changeset
125 const uint8_t *s = src;
794dec2fae64 using const modifier
nick
parents: 2564
diff changeset
126 const uint8_t *end;
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
127 #ifdef HAVE_MMX
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
128 const uint8_t *mm_end;
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
129 #endif
2505
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
130 end = s + src_size;
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
131 #ifdef HAVE_MMX
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
132 __asm __volatile(PREFETCH" %0"::"m"(*s):"memory");
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
133 mm_end = end - 31;
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
134 while(s < mm_end)
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
135 {
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
136 __asm __volatile(
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
137 PREFETCH" 32%1\n\t"
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
138 "movq %1, %%mm0\n\t"
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
139 "movq 8%1, %%mm1\n\t"
2746
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
140 "movq 16%1, %%mm4\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
141 "movq 24%1, %%mm5\n\t"
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
142 "movq %%mm0, %%mm2\n\t"
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
143 "movq %%mm1, %%mm3\n\t"
2746
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
144 "movq %%mm4, %%mm6\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
145 "movq %%mm5, %%mm7\n\t"
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
146 "psrlq $8, %%mm2\n\t"
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
147 "psrlq $8, %%mm3\n\t"
2746
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
148 "psrlq $8, %%mm6\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
149 "psrlq $8, %%mm7\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
150 "pand %2, %%mm0\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
151 "pand %2, %%mm1\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
152 "pand %2, %%mm4\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
153 "pand %2, %%mm5\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
154 "pand %3, %%mm2\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
155 "pand %3, %%mm3\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
156 "pand %3, %%mm6\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
157 "pand %3, %%mm7\n\t"
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
158 "por %%mm2, %%mm0\n\t"
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
159 "por %%mm3, %%mm1\n\t"
2746
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
160 "por %%mm6, %%mm4\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
161 "por %%mm7, %%mm5\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
162
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
163 "movq %%mm1, %%mm2\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
164 "movq %%mm4, %%mm3\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
165 "psllq $48, %%mm2\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
166 "psllq $32, %%mm3\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
167 "pand %4, %%mm2\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
168 "pand %5, %%mm3\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
169 "por %%mm2, %%mm0\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
170 "psrlq $16, %%mm1\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
171 "psrlq $32, %%mm4\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
172 "psllq $16, %%mm5\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
173 "por %%mm3, %%mm1\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
174 "pand %6, %%mm5\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
175 "por %%mm5, %%mm4\n\t"
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
176
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
177 MOVNTQ" %%mm0, %0\n\t"
2746
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
178 MOVNTQ" %%mm1, 8%0\n\t"
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
179 MOVNTQ" %%mm4, 16%0"
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
180 :"=m"(*dest)
2746
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
181 :"m"(*s),"m"(mask24l),
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
182 "m"(mask24h),"m"(mask24hh),"m"(mask24hhh),"m"(mask24hhhh)
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
183 :"memory");
2746
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
184 dest += 24;
dece635a28e3 Minor speedup of rgb32to24. (performance is not successful)
nick
parents: 2741
diff changeset
185 s += 32;
2517
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
186 }
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
187 __asm __volatile(SFENCE:::"memory");
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
188 __asm __volatile(EMMS:::"memory");
3d507ef1e3ed 32to24: MMX, MMX2, 3DNOW optimization
nick
parents: 2516
diff changeset
189 #endif
2505
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
190 while(s < end)
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
191 {
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
192 #ifdef WORDS_BIGENDIAN
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
193 /* RGB32 (= A,B,G,R) -> RGB24 (= R,G,B) */
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
194 s++;
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
195 dest[2] = *s++;
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
196 dest[1] = *s++;
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
197 dest[0] = *s++;
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
198 dest += 3;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
199 #else
2505
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
200 *dest++ = *s++;
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
201 *dest++ = *s++;
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
202 *dest++ = *s++;
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
203 s++;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
204 #endif
2505
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
205 }
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
206 }
2506
501752469c39 vo_vesa: more rgb2rgb support
nick
parents: 2505
diff changeset
207
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
208 /*
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
209 Original by Strepto/Astral
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
210 ported to gcc & bugfixed : A'rpi
2564
3d04a0991dce cosmetic
nick
parents: 2538
diff changeset
211 MMX2, 3DNOW optimization by Nick Kurshev
2698
22652c028692 faster 15to16 bit rgb (the mmx routine is limited by memory speed so there is no difference ): but the c routine is faster
michael
parents: 2697
diff changeset
212 32bit c version, and and&add trick by Michael Niedermayer
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
213 */
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
214 static inline void RENAME(rgb15to16)(const uint8_t *src,uint8_t *dst,long src_size)
2506
501752469c39 vo_vesa: more rgb2rgb support
nick
parents: 2505
diff changeset
215 {
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
216 register const uint8_t* s=src;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
217 register uint8_t* d=dst;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
218 register const uint8_t *end;
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
219 const uint8_t *mm_end;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
220 end = s + src_size;
2506
501752469c39 vo_vesa: more rgb2rgb support
nick
parents: 2505
diff changeset
221 #ifdef HAVE_MMX
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
222 __asm __volatile(PREFETCH" %0"::"m"(*s));
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
223 __asm __volatile("movq %0, %%mm4"::"m"(mask15s));
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
224 mm_end = end - 15;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
225 while(s<mm_end)
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
226 {
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
227 __asm __volatile(
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
228 PREFETCH" 32%1\n\t"
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
229 "movq %1, %%mm0\n\t"
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
230 "movq 8%1, %%mm2\n\t"
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
231 "movq %%mm0, %%mm1\n\t"
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
232 "movq %%mm2, %%mm3\n\t"
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
233 "pand %%mm4, %%mm0\n\t"
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
234 "pand %%mm4, %%mm2\n\t"
2698
22652c028692 faster 15to16 bit rgb (the mmx routine is limited by memory speed so there is no difference ): but the c routine is faster
michael
parents: 2697
diff changeset
235 "paddw %%mm1, %%mm0\n\t"
22652c028692 faster 15to16 bit rgb (the mmx routine is limited by memory speed so there is no difference ): but the c routine is faster
michael
parents: 2697
diff changeset
236 "paddw %%mm3, %%mm2\n\t"
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
237 MOVNTQ" %%mm0, %0\n\t"
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
238 MOVNTQ" %%mm2, 8%0"
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
239 :"=m"(*d)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
240 :"m"(*s)
2698
22652c028692 faster 15to16 bit rgb (the mmx routine is limited by memory speed so there is no difference ): but the c routine is faster
michael
parents: 2697
diff changeset
241 );
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
242 d+=16;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
243 s+=16;
2506
501752469c39 vo_vesa: more rgb2rgb support
nick
parents: 2505
diff changeset
244 }
2538
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
245 __asm __volatile(SFENCE:::"memory");
71320898b333 Finish mmx2, 3dnow optimiz. 15to16 should be tested. Better fix of can't compile
nick
parents: 2535
diff changeset
246 __asm __volatile(EMMS:::"memory");
2698
22652c028692 faster 15to16 bit rgb (the mmx routine is limited by memory speed so there is no difference ): but the c routine is faster
michael
parents: 2697
diff changeset
247 #endif
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
248 mm_end = end - 3;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
249 while(s < mm_end)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
250 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
251 register unsigned x= *((uint32_t *)s);
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
252 *((uint32_t *)d) = (x&0x7FFF7FFF) + (x&0x7FE07FE0);
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
253 d+=4;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
254 s+=4;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
255 }
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
256 if(s < end)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
257 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
258 register unsigned short x= *((uint16_t *)s);
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
259 *((uint16_t *)d) = (x&0x7FFF) + (x&0x7FE0);
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
260 }
2506
501752469c39 vo_vesa: more rgb2rgb support
nick
parents: 2505
diff changeset
261 }
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
262
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
263 static inline void RENAME(rgb16to15)(const uint8_t *src,uint8_t *dst,long src_size)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
264 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
265 register const uint8_t* s=src;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
266 register uint8_t* d=dst;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
267 register const uint8_t *end;
6608
da27a1bc1763 fixing memory overwrite bugs in the new converters
michael
parents: 6606
diff changeset
268 const uint8_t *mm_end;
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
269 end = s + src_size;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
270 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
271 __asm __volatile(PREFETCH" %0"::"m"(*s));
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
272 __asm __volatile("movq %0, %%mm7"::"m"(mask15rg));
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
273 __asm __volatile("movq %0, %%mm6"::"m"(mask15b));
6608
da27a1bc1763 fixing memory overwrite bugs in the new converters
michael
parents: 6606
diff changeset
274 mm_end = end - 15;
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
275 while(s<mm_end)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
276 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
277 __asm __volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
278 PREFETCH" 32%1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
279 "movq %1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
280 "movq 8%1, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
281 "movq %%mm0, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
282 "movq %%mm2, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
283 "psrlq $1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
284 "psrlq $1, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
285 "pand %%mm7, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
286 "pand %%mm7, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
287 "pand %%mm6, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
288 "pand %%mm6, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
289 "por %%mm1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
290 "por %%mm3, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
291 MOVNTQ" %%mm0, %0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
292 MOVNTQ" %%mm2, 8%0"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
293 :"=m"(*d)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
294 :"m"(*s)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
295 );
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
296 d+=16;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
297 s+=16;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
298 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
299 __asm __volatile(SFENCE:::"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
300 __asm __volatile(EMMS:::"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
301 #endif
6608
da27a1bc1763 fixing memory overwrite bugs in the new converters
michael
parents: 6606
diff changeset
302 mm_end = end - 3;
da27a1bc1763 fixing memory overwrite bugs in the new converters
michael
parents: 6606
diff changeset
303 while(s < mm_end)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
304 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
305 register uint32_t x= *((uint32_t *)s);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
306 *((uint32_t *)d) = ((x>>1)&0x7FE07FE0) | (x&0x001F001F);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
307 s+=4;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
308 d+=4;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
309 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
310 if(s < end)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
311 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
312 register uint16_t x= *((uint16_t *)s);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
313 *((uint16_t *)d) = ((x>>1)&0x7FE0) | (x&0x001F);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
314 s+=2;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
315 d+=2;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
316 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
317 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
318
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
319 static inline void RENAME(rgb32to16)(const uint8_t *src, uint8_t *dst, long src_size)
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
320 {
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
321 const uint8_t *s = src;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
322 const uint8_t *end;
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
323 #ifdef HAVE_MMX
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
324 const uint8_t *mm_end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
325 #endif
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
326 uint16_t *d = (uint16_t *)dst;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
327 end = s + src_size;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
328 #ifdef HAVE_MMX
9454
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
329 mm_end = end - 15;
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
330 #if 1 //is faster only if multiplies are reasonable fast (FIXME figure out on which cpus this is faster, on Athlon its slightly faster)
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
331 asm volatile(
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
332 "movq %3, %%mm5 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
333 "movq %4, %%mm6 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
334 "movq %5, %%mm7 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
335 ".balign 16 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
336 "1: \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
337 PREFETCH" 32(%1) \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
338 "movd (%1), %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
339 "movd 4(%1), %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
340 "punpckldq 8(%1), %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
341 "punpckldq 12(%1), %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
342 "movq %%mm0, %%mm1 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
343 "movq %%mm3, %%mm4 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
344 "pand %%mm6, %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
345 "pand %%mm6, %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
346 "pmaddwd %%mm7, %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
347 "pmaddwd %%mm7, %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
348 "pand %%mm5, %%mm1 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
349 "pand %%mm5, %%mm4 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
350 "por %%mm1, %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
351 "por %%mm4, %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
352 "psrld $5, %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
353 "pslld $11, %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
354 "por %%mm3, %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
355 MOVNTQ" %%mm0, (%0) \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
356 "add $16, %1 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
357 "add $8, %0 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
358 "cmp %2, %1 \n\t"
9454
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
359 " jb 1b \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
360 : "+r" (d), "+r"(s)
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
361 : "r" (mm_end), "m" (mask3216g), "m" (mask3216br), "m" (mul3216)
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
362 );
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
363 #else
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
364 __asm __volatile(PREFETCH" %0"::"m"(*src):"memory");
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
365 __asm __volatile(
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
366 "movq %0, %%mm7\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
367 "movq %1, %%mm6\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
368 ::"m"(red_16mask),"m"(green_16mask));
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
369 while(s < mm_end)
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
370 {
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
371 __asm __volatile(
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
372 PREFETCH" 32%1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
373 "movd %1, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
374 "movd 4%1, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
375 "punpckldq 8%1, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
376 "punpckldq 12%1, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
377 "movq %%mm0, %%mm1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
378 "movq %%mm0, %%mm2\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
379 "movq %%mm3, %%mm4\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
380 "movq %%mm3, %%mm5\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
381 "psrlq $3, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
382 "psrlq $3, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
383 "pand %2, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
384 "pand %2, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
385 "psrlq $5, %%mm1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
386 "psrlq $5, %%mm4\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
387 "pand %%mm6, %%mm1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
388 "pand %%mm6, %%mm4\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
389 "psrlq $8, %%mm2\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
390 "psrlq $8, %%mm5\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
391 "pand %%mm7, %%mm2\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
392 "pand %%mm7, %%mm5\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
393 "por %%mm1, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
394 "por %%mm4, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
395 "por %%mm2, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
396 "por %%mm5, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
397 "psllq $16, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
398 "por %%mm3, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
399 MOVNTQ" %%mm0, %0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
400 :"=m"(*d):"m"(*s),"m"(blue_16mask):"memory");
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
401 d += 4;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
402 s += 16;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
403 }
9454
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
404 #endif
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
405 __asm __volatile(SFENCE:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
406 __asm __volatile(EMMS:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
407 #endif
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
408 while(s < end)
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
409 {
14982
49dd10a86b23 Fixes rgb32to16 conversion for I think all platforms since the int8
diego
parents: 13720
diff changeset
410 register int rgb = *(uint32_t*)s; s += 4;
49dd10a86b23 Fixes rgb32to16 conversion for I think all platforms since the int8
diego
parents: 13720
diff changeset
411 *d++ = ((rgb&0xFF)>>3) + ((rgb&0xFC00)>>5) + ((rgb&0xF80000)>>8);
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
412 }
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
413 }
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
414
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
415 static inline void RENAME(rgb32tobgr16)(const uint8_t *src, uint8_t *dst, long src_size)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
416 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
417 const uint8_t *s = src;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
418 const uint8_t *end;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
419 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
420 const uint8_t *mm_end;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
421 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
422 uint16_t *d = (uint16_t *)dst;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
423 end = s + src_size;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
424 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
425 __asm __volatile(PREFETCH" %0"::"m"(*src):"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
426 __asm __volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
427 "movq %0, %%mm7\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
428 "movq %1, %%mm6\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
429 ::"m"(red_16mask),"m"(green_16mask));
6608
da27a1bc1763 fixing memory overwrite bugs in the new converters
michael
parents: 6606
diff changeset
430 mm_end = end - 15;
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
431 while(s < mm_end)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
432 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
433 __asm __volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
434 PREFETCH" 32%1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
435 "movd %1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
436 "movd 4%1, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
437 "punpckldq 8%1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
438 "punpckldq 12%1, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
439 "movq %%mm0, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
440 "movq %%mm0, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
441 "movq %%mm3, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
442 "movq %%mm3, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
443 "psllq $8, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
444 "psllq $8, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
445 "pand %%mm7, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
446 "pand %%mm7, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
447 "psrlq $5, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
448 "psrlq $5, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
449 "pand %%mm6, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
450 "pand %%mm6, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
451 "psrlq $19, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
452 "psrlq $19, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
453 "pand %2, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
454 "pand %2, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
455 "por %%mm1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
456 "por %%mm4, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
457 "por %%mm2, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
458 "por %%mm5, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
459 "psllq $16, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
460 "por %%mm3, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
461 MOVNTQ" %%mm0, %0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
462 :"=m"(*d):"m"(*s),"m"(blue_16mask):"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
463 d += 4;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
464 s += 16;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
465 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
466 __asm __volatile(SFENCE:::"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
467 __asm __volatile(EMMS:::"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
468 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
469 while(s < end)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
470 {
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
471 // FIXME on bigendian
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
472 /* Looks bigendian-OK to me. --Pac. */
12385
b5c106b694e4 this isn't actually stupid, but it's not valid C and gcc 3.5 rejects it as such
rfelker
parents: 11072
diff changeset
473 const int src= *s; s += 4;
9430
4cd88c2a44bf simpler & faster
michael
parents: 9394
diff changeset
474 *d++ = ((src&0xF8)<<8) + ((src&0xFC00)>>5) + ((src&0xF80000)>>19);
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
475 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
476 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
477
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
478 static inline void RENAME(rgb32to15)(const uint8_t *src, uint8_t *dst, long src_size)
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
479 {
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
480 const uint8_t *s = src;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
481 const uint8_t *end;
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
482 #ifdef HAVE_MMX
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
483 const uint8_t *mm_end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
484 #endif
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
485 uint16_t *d = (uint16_t *)dst;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
486 end = s + src_size;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
487 #ifdef HAVE_MMX
9454
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
488 mm_end = end - 15;
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
489 #if 1 //is faster only if multiplies are reasonable fast (FIXME figure out on which cpus this is faster, on Athlon its slightly faster)
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
490 asm volatile(
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
491 "movq %3, %%mm5 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
492 "movq %4, %%mm6 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
493 "movq %5, %%mm7 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
494 ".balign 16 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
495 "1: \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
496 PREFETCH" 32(%1) \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
497 "movd (%1), %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
498 "movd 4(%1), %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
499 "punpckldq 8(%1), %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
500 "punpckldq 12(%1), %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
501 "movq %%mm0, %%mm1 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
502 "movq %%mm3, %%mm4 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
503 "pand %%mm6, %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
504 "pand %%mm6, %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
505 "pmaddwd %%mm7, %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
506 "pmaddwd %%mm7, %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
507 "pand %%mm5, %%mm1 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
508 "pand %%mm5, %%mm4 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
509 "por %%mm1, %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
510 "por %%mm4, %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
511 "psrld $6, %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
512 "pslld $10, %%mm3 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
513 "por %%mm3, %%mm0 \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
514 MOVNTQ" %%mm0, (%0) \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
515 "add $16, %1 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
516 "add $8, %0 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
517 "cmp %2, %1 \n\t"
9454
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
518 " jb 1b \n\t"
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
519 : "+r" (d), "+r"(s)
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
520 : "r" (mm_end), "m" (mask3215g), "m" (mask3216br), "m" (mul3215)
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
521 );
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
522 #else
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
523 __asm __volatile(PREFETCH" %0"::"m"(*src):"memory");
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
524 __asm __volatile(
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
525 "movq %0, %%mm7\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
526 "movq %1, %%mm6\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
527 ::"m"(red_15mask),"m"(green_15mask));
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
528 while(s < mm_end)
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
529 {
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
530 __asm __volatile(
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
531 PREFETCH" 32%1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
532 "movd %1, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
533 "movd 4%1, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
534 "punpckldq 8%1, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
535 "punpckldq 12%1, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
536 "movq %%mm0, %%mm1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
537 "movq %%mm0, %%mm2\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
538 "movq %%mm3, %%mm4\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
539 "movq %%mm3, %%mm5\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
540 "psrlq $3, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
541 "psrlq $3, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
542 "pand %2, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
543 "pand %2, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
544 "psrlq $6, %%mm1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
545 "psrlq $6, %%mm4\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
546 "pand %%mm6, %%mm1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
547 "pand %%mm6, %%mm4\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
548 "psrlq $9, %%mm2\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
549 "psrlq $9, %%mm5\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
550 "pand %%mm7, %%mm2\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
551 "pand %%mm7, %%mm5\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
552 "por %%mm1, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
553 "por %%mm4, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
554 "por %%mm2, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
555 "por %%mm5, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
556 "psllq $16, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
557 "por %%mm3, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
558 MOVNTQ" %%mm0, %0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
559 :"=m"(*d):"m"(*s),"m"(blue_15mask):"memory");
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
560 d += 4;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
561 s += 16;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
562 }
9454
50ef22bcc0c3 optimize
michael
parents: 9430
diff changeset
563 #endif
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
564 __asm __volatile(SFENCE:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
565 __asm __volatile(EMMS:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
566 #endif
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
567 while(s < end)
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
568 {
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
569 // FIXME on bigendian
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
570 /* Looks bigendian-OK to me. --Pac. */
12385
b5c106b694e4 this isn't actually stupid, but it's not valid C and gcc 3.5 rejects it as such
rfelker
parents: 11072
diff changeset
571 const int src= *s; s += 4;
9430
4cd88c2a44bf simpler & faster
michael
parents: 9394
diff changeset
572 *d++ = ((src&0xFF)>>3) + ((src&0xF800)>>6) + ((src&0xF80000)>>9);
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
573 }
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
574 }
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
575
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
576 static inline void RENAME(rgb32tobgr15)(const uint8_t *src, uint8_t *dst, long src_size)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
577 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
578 const uint8_t *s = src;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
579 const uint8_t *end;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
580 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
581 const uint8_t *mm_end;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
582 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
583 uint16_t *d = (uint16_t *)dst;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
584 end = s + src_size;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
585 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
586 __asm __volatile(PREFETCH" %0"::"m"(*src):"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
587 __asm __volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
588 "movq %0, %%mm7\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
589 "movq %1, %%mm6\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
590 ::"m"(red_15mask),"m"(green_15mask));
6608
da27a1bc1763 fixing memory overwrite bugs in the new converters
michael
parents: 6606
diff changeset
591 mm_end = end - 15;
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
592 while(s < mm_end)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
593 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
594 __asm __volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
595 PREFETCH" 32%1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
596 "movd %1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
597 "movd 4%1, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
598 "punpckldq 8%1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
599 "punpckldq 12%1, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
600 "movq %%mm0, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
601 "movq %%mm0, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
602 "movq %%mm3, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
603 "movq %%mm3, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
604 "psllq $7, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
605 "psllq $7, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
606 "pand %%mm7, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
607 "pand %%mm7, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
608 "psrlq $6, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
609 "psrlq $6, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
610 "pand %%mm6, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
611 "pand %%mm6, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
612 "psrlq $19, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
613 "psrlq $19, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
614 "pand %2, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
615 "pand %2, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
616 "por %%mm1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
617 "por %%mm4, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
618 "por %%mm2, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
619 "por %%mm5, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
620 "psllq $16, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
621 "por %%mm3, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
622 MOVNTQ" %%mm0, %0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
623 :"=m"(*d):"m"(*s),"m"(blue_15mask):"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
624 d += 4;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
625 s += 16;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
626 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
627 __asm __volatile(SFENCE:::"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
628 __asm __volatile(EMMS:::"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
629 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
630 while(s < end)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
631 {
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
632 // FIXME on bigendian
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
633 /* Looks bigendian-OK to me. --Pac. */
12385
b5c106b694e4 this isn't actually stupid, but it's not valid C and gcc 3.5 rejects it as such
rfelker
parents: 11072
diff changeset
634 const int src= *s; s += 4;
9430
4cd88c2a44bf simpler & faster
michael
parents: 9394
diff changeset
635 *d++ = ((src&0xF8)<<7) + ((src&0xF800)>>6) + ((src&0xF80000)>>19);
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
636 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
637 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
638
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
639 static inline void RENAME(rgb24to16)(const uint8_t *src, uint8_t *dst, long src_size)
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
640 {
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
641 const uint8_t *s = src;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
642 const uint8_t *end;
2740
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
643 #ifdef HAVE_MMX
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
644 const uint8_t *mm_end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
645 #endif
2719
fafa73d6d80c Fixed rgb32(24)to16 stuff, rgb32(24)to15 is still broken
nick
parents: 2718
diff changeset
646 uint16_t *d = (uint16_t *)dst;
2740
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
647 end = s + src_size;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
648 #ifdef HAVE_MMX
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
649 __asm __volatile(PREFETCH" %0"::"m"(*src):"memory");
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
650 __asm __volatile(
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
651 "movq %0, %%mm7\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
652 "movq %1, %%mm6\n\t"
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
653 ::"m"(red_16mask),"m"(green_16mask));
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
654 mm_end = end - 11;
2740
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
655 while(s < mm_end)
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
656 {
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
657 __asm __volatile(
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
658 PREFETCH" 32%1\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
659 "movd %1, %%mm0\n\t"
2740
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
660 "movd 3%1, %%mm3\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
661 "punpckldq 6%1, %%mm0\n\t"
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
662 "punpckldq 9%1, %%mm3\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
663 "movq %%mm0, %%mm1\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
664 "movq %%mm0, %%mm2\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
665 "movq %%mm3, %%mm4\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
666 "movq %%mm3, %%mm5\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
667 "psrlq $3, %%mm0\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
668 "psrlq $3, %%mm3\n\t"
2740
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
669 "pand %2, %%mm0\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
670 "pand %2, %%mm3\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
671 "psrlq $5, %%mm1\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
672 "psrlq $5, %%mm4\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
673 "pand %%mm6, %%mm1\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
674 "pand %%mm6, %%mm4\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
675 "psrlq $8, %%mm2\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
676 "psrlq $8, %%mm5\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
677 "pand %%mm7, %%mm2\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
678 "pand %%mm7, %%mm5\n\t"
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
679 "por %%mm1, %%mm0\n\t"
2740
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
680 "por %%mm4, %%mm3\n\t"
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
681 "por %%mm2, %%mm0\n\t"
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
682 "por %%mm5, %%mm3\n\t"
2740
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
683 "psllq $16, %%mm3\n\t"
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
684 "por %%mm3, %%mm0\n\t"
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
685 MOVNTQ" %%mm0, %0\n\t"
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
686 :"=m"(*d):"m"(*s),"m"(blue_16mask):"memory");
2740
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
687 d += 4;
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
688 s += 12;
2738
dfa63a7db294 rgb24to32 now is faster
nick
parents: 2732
diff changeset
689 }
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
690 __asm __volatile(SFENCE:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
691 __asm __volatile(EMMS:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
692 #endif
2740
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
693 while(s < end)
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
694 {
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
695 const int b= *s++;
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
696 const int g= *s++;
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
697 const int r= *s++;
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
698 *d++ = (b>>3) | ((g&0xFC)<<3) | ((r&0xF8)<<8);
1583214489a2 optimized rgb24to16 stuff
nick
parents: 2738
diff changeset
699 }
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
700 }
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
701
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
702 static inline void RENAME(rgb24tobgr16)(const uint8_t *src, uint8_t *dst, long src_size)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
703 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
704 const uint8_t *s = src;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
705 const uint8_t *end;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
706 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
707 const uint8_t *mm_end;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
708 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
709 uint16_t *d = (uint16_t *)dst;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
710 end = s + src_size;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
711 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
712 __asm __volatile(PREFETCH" %0"::"m"(*src):"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
713 __asm __volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
714 "movq %0, %%mm7\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
715 "movq %1, %%mm6\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
716 ::"m"(red_16mask),"m"(green_16mask));
6608
da27a1bc1763 fixing memory overwrite bugs in the new converters
michael
parents: 6606
diff changeset
717 mm_end = end - 15;
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
718 while(s < mm_end)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
719 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
720 __asm __volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
721 PREFETCH" 32%1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
722 "movd %1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
723 "movd 3%1, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
724 "punpckldq 6%1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
725 "punpckldq 9%1, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
726 "movq %%mm0, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
727 "movq %%mm0, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
728 "movq %%mm3, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
729 "movq %%mm3, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
730 "psllq $8, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
731 "psllq $8, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
732 "pand %%mm7, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
733 "pand %%mm7, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
734 "psrlq $5, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
735 "psrlq $5, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
736 "pand %%mm6, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
737 "pand %%mm6, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
738 "psrlq $19, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
739 "psrlq $19, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
740 "pand %2, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
741 "pand %2, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
742 "por %%mm1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
743 "por %%mm4, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
744 "por %%mm2, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
745 "por %%mm5, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
746 "psllq $16, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
747 "por %%mm3, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
748 MOVNTQ" %%mm0, %0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
749 :"=m"(*d):"m"(*s),"m"(blue_16mask):"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
750 d += 4;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
751 s += 12;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
752 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
753 __asm __volatile(SFENCE:::"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
754 __asm __volatile(EMMS:::"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
755 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
756 while(s < end)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
757 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
758 const int r= *s++;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
759 const int g= *s++;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
760 const int b= *s++;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
761 *d++ = (b>>3) | ((g&0xFC)<<3) | ((r&0xF8)<<8);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
762 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
763 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
764
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
765 static inline void RENAME(rgb24to15)(const uint8_t *src, uint8_t *dst, long src_size)
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
766 {
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
767 const uint8_t *s = src;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
768 const uint8_t *end;
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
769 #ifdef HAVE_MMX
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
770 const uint8_t *mm_end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
771 #endif
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
772 uint16_t *d = (uint16_t *)dst;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
773 end = s + src_size;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
774 #ifdef HAVE_MMX
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
775 __asm __volatile(PREFETCH" %0"::"m"(*src):"memory");
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
776 __asm __volatile(
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
777 "movq %0, %%mm7\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
778 "movq %1, %%mm6\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
779 ::"m"(red_15mask),"m"(green_15mask));
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
780 mm_end = end - 11;
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
781 while(s < mm_end)
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
782 {
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
783 __asm __volatile(
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
784 PREFETCH" 32%1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
785 "movd %1, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
786 "movd 3%1, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
787 "punpckldq 6%1, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
788 "punpckldq 9%1, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
789 "movq %%mm0, %%mm1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
790 "movq %%mm0, %%mm2\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
791 "movq %%mm3, %%mm4\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
792 "movq %%mm3, %%mm5\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
793 "psrlq $3, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
794 "psrlq $3, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
795 "pand %2, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
796 "pand %2, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
797 "psrlq $6, %%mm1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
798 "psrlq $6, %%mm4\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
799 "pand %%mm6, %%mm1\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
800 "pand %%mm6, %%mm4\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
801 "psrlq $9, %%mm2\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
802 "psrlq $9, %%mm5\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
803 "pand %%mm7, %%mm2\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
804 "pand %%mm7, %%mm5\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
805 "por %%mm1, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
806 "por %%mm4, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
807 "por %%mm2, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
808 "por %%mm5, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
809 "psllq $16, %%mm3\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
810 "por %%mm3, %%mm0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
811 MOVNTQ" %%mm0, %0\n\t"
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
812 :"=m"(*d):"m"(*s),"m"(blue_15mask):"memory");
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
813 d += 4;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
814 s += 12;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
815 }
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
816 __asm __volatile(SFENCE:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
817 __asm __volatile(EMMS:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
818 #endif
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
819 while(s < end)
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
820 {
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
821 const int b= *s++;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
822 const int g= *s++;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
823 const int r= *s++;
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
824 *d++ = (b>>3) | ((g&0xF8)<<2) | ((r&0xF8)<<7);
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
825 }
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
826 }
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
827
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
828 static inline void RENAME(rgb24tobgr15)(const uint8_t *src, uint8_t *dst, long src_size)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
829 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
830 const uint8_t *s = src;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
831 const uint8_t *end;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
832 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
833 const uint8_t *mm_end;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
834 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
835 uint16_t *d = (uint16_t *)dst;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
836 end = s + src_size;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
837 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
838 __asm __volatile(PREFETCH" %0"::"m"(*src):"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
839 __asm __volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
840 "movq %0, %%mm7\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
841 "movq %1, %%mm6\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
842 ::"m"(red_15mask),"m"(green_15mask));
6608
da27a1bc1763 fixing memory overwrite bugs in the new converters
michael
parents: 6606
diff changeset
843 mm_end = end - 15;
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
844 while(s < mm_end)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
845 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
846 __asm __volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
847 PREFETCH" 32%1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
848 "movd %1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
849 "movd 3%1, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
850 "punpckldq 6%1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
851 "punpckldq 9%1, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
852 "movq %%mm0, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
853 "movq %%mm0, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
854 "movq %%mm3, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
855 "movq %%mm3, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
856 "psllq $7, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
857 "psllq $7, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
858 "pand %%mm7, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
859 "pand %%mm7, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
860 "psrlq $6, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
861 "psrlq $6, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
862 "pand %%mm6, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
863 "pand %%mm6, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
864 "psrlq $19, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
865 "psrlq $19, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
866 "pand %2, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
867 "pand %2, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
868 "por %%mm1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
869 "por %%mm4, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
870 "por %%mm2, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
871 "por %%mm5, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
872 "psllq $16, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
873 "por %%mm3, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
874 MOVNTQ" %%mm0, %0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
875 :"=m"(*d):"m"(*s),"m"(blue_15mask):"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
876 d += 4;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
877 s += 12;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
878 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
879 __asm __volatile(SFENCE:::"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
880 __asm __volatile(EMMS:::"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
881 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
882 while(s < end)
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
883 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
884 const int r= *s++;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
885 const int g= *s++;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
886 const int b= *s++;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
887 *d++ = (b>>3) | ((g&0xF8)<<2) | ((r&0xF8)<<7);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
888 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
889 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
890
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
891 /*
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
892 I use here less accurate approximation by simply
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
893 left-shifting the input
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
894 value and filling the low order bits with
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
895 zeroes. This method improves png's
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
896 compression but this scheme cannot reproduce white exactly, since it does not
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
897 generate an all-ones maximum value; the net effect is to darken the
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
898 image slightly.
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
899
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
900 The better method should be "left bit replication":
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
901
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
902 4 3 2 1 0
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
903 ---------
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
904 1 1 0 1 1
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
905
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
906 7 6 5 4 3 2 1 0
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
907 ----------------
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
908 1 1 0 1 1 1 1 0
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
909 |=======| |===|
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
910 | Leftmost Bits Repeated to Fill Open Bits
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
911 |
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
912 Original Bits
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
913 */
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
914 static inline void RENAME(rgb15to24)(const uint8_t *src, uint8_t *dst, long src_size)
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
915 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
916 const uint16_t *end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
917 #ifdef HAVE_MMX
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
918 const uint16_t *mm_end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
919 #endif
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
920 uint8_t *d = (uint8_t *)dst;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
921 const uint16_t *s = (uint16_t *)src;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
922 end = s + src_size/2;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
923 #ifdef HAVE_MMX
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
924 __asm __volatile(PREFETCH" %0"::"m"(*s):"memory");
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
925 mm_end = end - 7;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
926 while(s < mm_end)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
927 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
928 __asm __volatile(
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
929 PREFETCH" 32%1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
930 "movq %1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
931 "movq %1, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
932 "movq %1, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
933 "pand %2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
934 "pand %3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
935 "pand %4, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
936 "psllq $3, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
937 "psrlq $2, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
938 "psrlq $7, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
939 "movq %%mm0, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
940 "movq %%mm1, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
941 "movq %%mm2, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
942 "punpcklwd %5, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
943 "punpcklwd %5, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
944 "punpcklwd %5, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
945 "punpckhwd %5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
946 "punpckhwd %5, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
947 "punpckhwd %5, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
948 "psllq $8, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
949 "psllq $16, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
950 "por %%mm1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
951 "por %%mm2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
952 "psllq $8, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
953 "psllq $16, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
954 "por %%mm4, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
955 "por %%mm5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
956
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
957 "movq %%mm0, %%mm6\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
958 "movq %%mm3, %%mm7\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
959
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
960 "movq 8%1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
961 "movq 8%1, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
962 "movq 8%1, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
963 "pand %2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
964 "pand %3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
965 "pand %4, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
966 "psllq $3, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
967 "psrlq $2, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
968 "psrlq $7, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
969 "movq %%mm0, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
970 "movq %%mm1, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
971 "movq %%mm2, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
972 "punpcklwd %5, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
973 "punpcklwd %5, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
974 "punpcklwd %5, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
975 "punpckhwd %5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
976 "punpckhwd %5, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
977 "punpckhwd %5, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
978 "psllq $8, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
979 "psllq $16, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
980 "por %%mm1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
981 "por %%mm2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
982 "psllq $8, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
983 "psllq $16, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
984 "por %%mm4, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
985 "por %%mm5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
986
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
987 :"=m"(*d)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
988 :"m"(*s),"m"(mask15b),"m"(mask15g),"m"(mask15r), "m"(mmx_null)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
989 :"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
990 /* Borrowed 32 to 24 */
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
991 __asm __volatile(
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
992 "movq %%mm0, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
993 "movq %%mm3, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
994 "movq %%mm6, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
995 "movq %%mm7, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
996
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
997 "movq %%mm4, %%mm6\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
998 "movq %%mm5, %%mm7\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
999 "movq %%mm0, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1000 "movq %%mm1, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1001
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1002 "psrlq $8, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1003 "psrlq $8, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1004 "psrlq $8, %%mm6\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1005 "psrlq $8, %%mm7\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1006 "pand %2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1007 "pand %2, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1008 "pand %2, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1009 "pand %2, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1010 "pand %3, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1011 "pand %3, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1012 "pand %3, %%mm6\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1013 "pand %3, %%mm7\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1014 "por %%mm2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1015 "por %%mm3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1016 "por %%mm6, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1017 "por %%mm7, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1018
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1019 "movq %%mm1, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1020 "movq %%mm4, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1021 "psllq $48, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1022 "psllq $32, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1023 "pand %4, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1024 "pand %5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1025 "por %%mm2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1026 "psrlq $16, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1027 "psrlq $32, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1028 "psllq $16, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1029 "por %%mm3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1030 "pand %6, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1031 "por %%mm5, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1032
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1033 MOVNTQ" %%mm0, %0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1034 MOVNTQ" %%mm1, 8%0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1035 MOVNTQ" %%mm4, 16%0"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1036
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1037 :"=m"(*d)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1038 :"m"(*s),"m"(mask24l),"m"(mask24h),"m"(mask24hh),"m"(mask24hhh),"m"(mask24hhhh)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1039 :"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1040 d += 24;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1041 s += 8;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1042 }
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
1043 __asm __volatile(SFENCE:::"memory");
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
1044 __asm __volatile(EMMS:::"memory");
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1045 #endif
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1046 while(s < end)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1047 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1048 register uint16_t bgr;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1049 bgr = *s++;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1050 *d++ = (bgr&0x1F)<<3;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1051 *d++ = (bgr&0x3E0)>>2;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1052 *d++ = (bgr&0x7C00)>>7;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1053 }
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1054 }
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1055
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1056 static inline void RENAME(rgb16to24)(const uint8_t *src, uint8_t *dst, long src_size)
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1057 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1058 const uint16_t *end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1059 #ifdef HAVE_MMX
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1060 const uint16_t *mm_end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1061 #endif
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1062 uint8_t *d = (uint8_t *)dst;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1063 const uint16_t *s = (const uint16_t *)src;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1064 end = s + src_size/2;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1065 #ifdef HAVE_MMX
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1066 __asm __volatile(PREFETCH" %0"::"m"(*s):"memory");
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
1067 mm_end = end - 7;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1068 while(s < mm_end)
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
1069 {
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1070 __asm __volatile(
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1071 PREFETCH" 32%1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1072 "movq %1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1073 "movq %1, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1074 "movq %1, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1075 "pand %2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1076 "pand %3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1077 "pand %4, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1078 "psllq $3, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1079 "psrlq $3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1080 "psrlq $8, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1081 "movq %%mm0, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1082 "movq %%mm1, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1083 "movq %%mm2, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1084 "punpcklwd %5, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1085 "punpcklwd %5, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1086 "punpcklwd %5, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1087 "punpckhwd %5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1088 "punpckhwd %5, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1089 "punpckhwd %5, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1090 "psllq $8, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1091 "psllq $16, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1092 "por %%mm1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1093 "por %%mm2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1094 "psllq $8, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1095 "psllq $16, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1096 "por %%mm4, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1097 "por %%mm5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1098
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1099 "movq %%mm0, %%mm6\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1100 "movq %%mm3, %%mm7\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1101
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1102 "movq 8%1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1103 "movq 8%1, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1104 "movq 8%1, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1105 "pand %2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1106 "pand %3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1107 "pand %4, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1108 "psllq $3, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1109 "psrlq $3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1110 "psrlq $8, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1111 "movq %%mm0, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1112 "movq %%mm1, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1113 "movq %%mm2, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1114 "punpcklwd %5, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1115 "punpcklwd %5, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1116 "punpcklwd %5, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1117 "punpckhwd %5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1118 "punpckhwd %5, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1119 "punpckhwd %5, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1120 "psllq $8, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1121 "psllq $16, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1122 "por %%mm1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1123 "por %%mm2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1124 "psllq $8, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1125 "psllq $16, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1126 "por %%mm4, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1127 "por %%mm5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1128 :"=m"(*d)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1129 :"m"(*s),"m"(mask16b),"m"(mask16g),"m"(mask16r),"m"(mmx_null)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1130 :"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1131 /* Borrowed 32 to 24 */
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1132 __asm __volatile(
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1133 "movq %%mm0, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1134 "movq %%mm3, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1135 "movq %%mm6, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1136 "movq %%mm7, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1137
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1138 "movq %%mm4, %%mm6\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1139 "movq %%mm5, %%mm7\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1140 "movq %%mm0, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1141 "movq %%mm1, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1142
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1143 "psrlq $8, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1144 "psrlq $8, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1145 "psrlq $8, %%mm6\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1146 "psrlq $8, %%mm7\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1147 "pand %2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1148 "pand %2, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1149 "pand %2, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1150 "pand %2, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1151 "pand %3, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1152 "pand %3, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1153 "pand %3, %%mm6\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1154 "pand %3, %%mm7\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1155 "por %%mm2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1156 "por %%mm3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1157 "por %%mm6, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1158 "por %%mm7, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1159
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1160 "movq %%mm1, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1161 "movq %%mm4, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1162 "psllq $48, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1163 "psllq $32, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1164 "pand %4, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1165 "pand %5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1166 "por %%mm2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1167 "psrlq $16, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1168 "psrlq $32, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1169 "psllq $16, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1170 "por %%mm3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1171 "pand %6, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1172 "por %%mm5, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1173
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1174 MOVNTQ" %%mm0, %0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1175 MOVNTQ" %%mm1, 8%0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1176 MOVNTQ" %%mm4, 16%0"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1177
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1178 :"=m"(*d)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1179 :"m"(*s),"m"(mask24l),"m"(mask24h),"m"(mask24hh),"m"(mask24hhh),"m"(mask24hhhh)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1180 :"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1181 d += 24;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1182 s += 8;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1183 }
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1184 __asm __volatile(SFENCE:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1185 __asm __volatile(EMMS:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1186 #endif
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1187 while(s < end)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1188 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1189 register uint16_t bgr;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1190 bgr = *s++;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1191 *d++ = (bgr&0x1F)<<3;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1192 *d++ = (bgr&0x7E0)>>3;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1193 *d++ = (bgr&0xF800)>>8;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1194 }
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1195 }
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
1196
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1197 static inline void RENAME(rgb15to32)(const uint8_t *src, uint8_t *dst, long src_size)
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1198 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1199 const uint16_t *end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1200 #ifdef HAVE_MMX
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1201 const uint16_t *mm_end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1202 #endif
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1203 uint8_t *d = (uint8_t *)dst;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1204 const uint16_t *s = (const uint16_t *)src;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1205 end = s + src_size/2;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1206 #ifdef HAVE_MMX
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1207 __asm __volatile(PREFETCH" %0"::"m"(*s):"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1208 __asm __volatile("pxor %%mm7,%%mm7\n\t":::"memory");
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
1209 mm_end = end - 3;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1210 while(s < mm_end)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1211 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1212 __asm __volatile(
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1213 PREFETCH" 32%1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1214 "movq %1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1215 "movq %1, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1216 "movq %1, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1217 "pand %2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1218 "pand %3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1219 "pand %4, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1220 "psllq $3, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1221 "psrlq $2, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1222 "psrlq $7, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1223 "movq %%mm0, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1224 "movq %%mm1, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1225 "movq %%mm2, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1226 "punpcklwd %%mm7, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1227 "punpcklwd %%mm7, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1228 "punpcklwd %%mm7, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1229 "punpckhwd %%mm7, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1230 "punpckhwd %%mm7, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1231 "punpckhwd %%mm7, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1232 "psllq $8, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1233 "psllq $16, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1234 "por %%mm1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1235 "por %%mm2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1236 "psllq $8, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1237 "psllq $16, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1238 "por %%mm4, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1239 "por %%mm5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1240 MOVNTQ" %%mm0, %0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1241 MOVNTQ" %%mm3, 8%0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1242 :"=m"(*d)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1243 :"m"(*s),"m"(mask15b),"m"(mask15g),"m"(mask15r)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1244 :"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1245 d += 16;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1246 s += 4;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1247 }
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1248 __asm __volatile(SFENCE:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1249 __asm __volatile(EMMS:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1250 #endif
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1251 while(s < end)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1252 {
9430
4cd88c2a44bf simpler & faster
michael
parents: 9394
diff changeset
1253 #if 0 //slightly slower on athlon
4cd88c2a44bf simpler & faster
michael
parents: 9394
diff changeset
1254 int bgr= *s++;
4cd88c2a44bf simpler & faster
michael
parents: 9394
diff changeset
1255 *((uint32_t*)d)++ = ((bgr&0x1F)<<3) + ((bgr&0x3E0)<<6) + ((bgr&0x7C00)<<9);
4cd88c2a44bf simpler & faster
michael
parents: 9394
diff changeset
1256 #else
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1257 register uint16_t bgr;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1258 bgr = *s++;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1259 #ifdef WORDS_BIGENDIAN
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1260 *d++ = 0;
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
1261 *d++ = (bgr&0x7C00)>>7;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1262 *d++ = (bgr&0x3E0)>>2;
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
1263 *d++ = (bgr&0x1F)<<3;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1264 #else
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1265 *d++ = (bgr&0x1F)<<3;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1266 *d++ = (bgr&0x3E0)>>2;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1267 *d++ = (bgr&0x7C00)>>7;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1268 *d++ = 0;
9430
4cd88c2a44bf simpler & faster
michael
parents: 9394
diff changeset
1269 #endif
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1270
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1271 #endif
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
1272 }
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1273 }
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1274
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1275 static inline void RENAME(rgb16to32)(const uint8_t *src, uint8_t *dst, long src_size)
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1276 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1277 const uint16_t *end;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1278 #ifdef HAVE_MMX
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1279 const uint16_t *mm_end;
2741
b8a692c59b64 MMX2, 3DNOW, MMX optimized rgb32(24)to16(15) stuff
nick
parents: 2740
diff changeset
1280 #endif
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1281 uint8_t *d = (uint8_t *)dst;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1282 const uint16_t *s = (uint16_t *)src;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1283 end = s + src_size/2;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1284 #ifdef HAVE_MMX
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1285 __asm __volatile(PREFETCH" %0"::"m"(*s):"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1286 __asm __volatile("pxor %%mm7,%%mm7\n\t":::"memory");
6605
5ddfba86d5a4 fixing memory overwrite bugs again ...
michael
parents: 6582
diff changeset
1287 mm_end = end - 3;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1288 while(s < mm_end)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1289 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1290 __asm __volatile(
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1291 PREFETCH" 32%1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1292 "movq %1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1293 "movq %1, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1294 "movq %1, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1295 "pand %2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1296 "pand %3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1297 "pand %4, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1298 "psllq $3, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1299 "psrlq $3, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1300 "psrlq $8, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1301 "movq %%mm0, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1302 "movq %%mm1, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1303 "movq %%mm2, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1304 "punpcklwd %%mm7, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1305 "punpcklwd %%mm7, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1306 "punpcklwd %%mm7, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1307 "punpckhwd %%mm7, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1308 "punpckhwd %%mm7, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1309 "punpckhwd %%mm7, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1310 "psllq $8, %%mm1\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1311 "psllq $16, %%mm2\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1312 "por %%mm1, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1313 "por %%mm2, %%mm0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1314 "psllq $8, %%mm4\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1315 "psllq $16, %%mm5\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1316 "por %%mm4, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1317 "por %%mm5, %%mm3\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1318 MOVNTQ" %%mm0, %0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1319 MOVNTQ" %%mm3, 8%0\n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1320 :"=m"(*d)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1321 :"m"(*s),"m"(mask16b),"m"(mask16g),"m"(mask16r)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1322 :"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1323 d += 16;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1324 s += 4;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1325 }
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1326 __asm __volatile(SFENCE:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1327 __asm __volatile(EMMS:::"memory");
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1328 #endif
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1329 while(s < end)
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1330 {
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1331 register uint16_t bgr;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1332 bgr = *s++;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1333 #ifdef WORDS_BIGENDIAN
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1334 *d++ = 0;
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
1335 *d++ = (bgr&0xF800)>>8;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1336 *d++ = (bgr&0x7E0)>>3;
17586
65b39a32a7c4 Fix big-endian color permutation problems.
diego
parents: 16739
diff changeset
1337 *d++ = (bgr&0x1F)<<3;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1338 #else
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1339 *d++ = (bgr&0x1F)<<3;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1340 *d++ = (bgr&0x7E0)>>3;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1341 *d++ = (bgr&0xF800)>>8;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1342 *d++ = 0;
13423
7f5ea5da1765 lot of bigendian fixes
alex
parents: 12993
diff changeset
1343 #endif
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1344 }
2718
9c5e64493742 Well - old algorithms and new stuff rgb24to16(15)
nick
parents: 2711
diff changeset
1345 }
2694
2924350d92ed bgr32to16, bgr32to15 (needed for palette stuff)
michael
parents: 2677
diff changeset
1346
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1347 static inline void RENAME(rgb32tobgr32)(const uint8_t *src, uint8_t *dst, long src_size)
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1348 {
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1349 #ifdef HAVE_MMX
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1350 /* TODO: unroll this loop */
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1351 asm volatile (
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1352 "xor %%"REG_a", %%"REG_a" \n\t"
2800
7847d6b7ad3d .balign or we¡­ll align by 64kb on some architectures
michael
parents: 2799
diff changeset
1353 ".balign 16 \n\t"
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1354 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1355 PREFETCH" 32(%0, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1356 "movq (%0, %%"REG_a"), %%mm0 \n\t"
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1357 "movq %%mm0, %%mm1 \n\t"
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1358 "movq %%mm0, %%mm2 \n\t"
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1359 "pslld $16, %%mm0 \n\t"
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1360 "psrld $16, %%mm1 \n\t"
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1361 "pand "MANGLE(mask32r)", %%mm0 \n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1362 "pand "MANGLE(mask32g)", %%mm2 \n\t"
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1363 "pand "MANGLE(mask32b)", %%mm1 \n\t"
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1364 "por %%mm0, %%mm2 \n\t"
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1365 "por %%mm1, %%mm2 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1366 MOVNTQ" %%mm2, (%1, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1367 "add $8, %%"REG_a" \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1368 "cmp %2, %%"REG_a" \n\t"
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1369 " jb 1b \n\t"
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1370 :: "r" (src), "r"(dst), "r" (src_size-7)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1371 : "%"REG_a
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1372 );
2766
michael
parents: 2755
diff changeset
1373
michael
parents: 2755
diff changeset
1374 __asm __volatile(SFENCE:::"memory");
michael
parents: 2755
diff changeset
1375 __asm __volatile(EMMS:::"memory");
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1376 #else
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1377 unsigned i;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1378 unsigned num_pixels = src_size >> 2;
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1379 for(i=0; i<num_pixels; i++)
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1380 {
9988
a32fb6812221 bigendian fix by (Samuel Kleiner <kleiner at cd dot chalmers dot se>)
michael
parents: 9987
diff changeset
1381 #ifdef WORDS_BIGENDIAN
a32fb6812221 bigendian fix by (Samuel Kleiner <kleiner at cd dot chalmers dot se>)
michael
parents: 9987
diff changeset
1382 dst[4*i + 1] = src[4*i + 3];
a32fb6812221 bigendian fix by (Samuel Kleiner <kleiner at cd dot chalmers dot se>)
michael
parents: 9987
diff changeset
1383 dst[4*i + 2] = src[4*i + 2];
a32fb6812221 bigendian fix by (Samuel Kleiner <kleiner at cd dot chalmers dot se>)
michael
parents: 9987
diff changeset
1384 dst[4*i + 3] = src[4*i + 1];
a32fb6812221 bigendian fix by (Samuel Kleiner <kleiner at cd dot chalmers dot se>)
michael
parents: 9987
diff changeset
1385 #else
a32fb6812221 bigendian fix by (Samuel Kleiner <kleiner at cd dot chalmers dot se>)
michael
parents: 9987
diff changeset
1386 dst[4*i + 0] = src[4*i + 2];
a32fb6812221 bigendian fix by (Samuel Kleiner <kleiner at cd dot chalmers dot se>)
michael
parents: 9987
diff changeset
1387 dst[4*i + 1] = src[4*i + 1];
a32fb6812221 bigendian fix by (Samuel Kleiner <kleiner at cd dot chalmers dot se>)
michael
parents: 9987
diff changeset
1388 dst[4*i + 2] = src[4*i + 0];
a32fb6812221 bigendian fix by (Samuel Kleiner <kleiner at cd dot chalmers dot se>)
michael
parents: 9987
diff changeset
1389 #endif
2755
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1390 }
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1391 #endif
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1392 }
2f93f4351765 rgb32tobgr32 / bgr32torgb32
michael
parents: 2746
diff changeset
1393
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1394 static inline void RENAME(rgb24tobgr24)(const uint8_t *src, uint8_t *dst, long src_size)
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1395 {
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1396 unsigned i;
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1397 #ifdef HAVE_MMX
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1398 long mmx_size= 23 - src_size;
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1399 asm volatile (
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1400 "movq "MANGLE(mask24r)", %%mm5 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1401 "movq "MANGLE(mask24g)", %%mm6 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1402 "movq "MANGLE(mask24b)", %%mm7 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1403 ".balign 16 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1404 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1405 PREFETCH" 32(%1, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1406 "movq (%1, %%"REG_a"), %%mm0 \n\t" // BGR BGR BG
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1407 "movq (%1, %%"REG_a"), %%mm1 \n\t" // BGR BGR BG
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1408 "movq 2(%1, %%"REG_a"), %%mm2 \n\t" // R BGR BGR B
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1409 "psllq $16, %%mm0 \n\t" // 00 BGR BGR
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1410 "pand %%mm5, %%mm0 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1411 "pand %%mm6, %%mm1 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1412 "pand %%mm7, %%mm2 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1413 "por %%mm0, %%mm1 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1414 "por %%mm2, %%mm1 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1415 "movq 6(%1, %%"REG_a"), %%mm0 \n\t" // BGR BGR BG
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1416 MOVNTQ" %%mm1, (%2, %%"REG_a")\n\t" // RGB RGB RG
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1417 "movq 8(%1, %%"REG_a"), %%mm1 \n\t" // R BGR BGR B
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1418 "movq 10(%1, %%"REG_a"), %%mm2 \n\t" // GR BGR BGR
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1419 "pand %%mm7, %%mm0 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1420 "pand %%mm5, %%mm1 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1421 "pand %%mm6, %%mm2 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1422 "por %%mm0, %%mm1 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1423 "por %%mm2, %%mm1 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1424 "movq 14(%1, %%"REG_a"), %%mm0 \n\t" // R BGR BGR B
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1425 MOVNTQ" %%mm1, 8(%2, %%"REG_a")\n\t" // B RGB RGB R
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1426 "movq 16(%1, %%"REG_a"), %%mm1 \n\t" // GR BGR BGR
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1427 "movq 18(%1, %%"REG_a"), %%mm2 \n\t" // BGR BGR BG
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1428 "pand %%mm6, %%mm0 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1429 "pand %%mm7, %%mm1 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1430 "pand %%mm5, %%mm2 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1431 "por %%mm0, %%mm1 \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1432 "por %%mm2, %%mm1 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1433 MOVNTQ" %%mm1, 16(%2, %%"REG_a")\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1434 "add $24, %%"REG_a" \n\t"
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1435 " js 1b \n\t"
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1436 : "+a" (mmx_size)
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1437 : "r" (src-mmx_size), "r"(dst-mmx_size)
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1438 );
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1439
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1440 __asm __volatile(SFENCE:::"memory");
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1441 __asm __volatile(EMMS:::"memory");
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1442
6096
f38c7228a094 fixing end overwrite bugs (some at least)
michael
parents: 5961
diff changeset
1443 if(mmx_size==23) return; //finihsed, was multiple of 8
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1444
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1445 src+= src_size;
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1446 dst+= src_size;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1447 src_size= 23-mmx_size;
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1448 src-= src_size;
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1449 dst-= src_size;
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1450 #endif
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1451 for(i=0; i<src_size; i+=3)
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1452 {
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1453 register uint8_t x;
5582
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1454 x = src[i + 2];
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1455 dst[i + 1] = src[i + 1];
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1456 dst[i + 2] = src[i + 0];
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1457 dst[i + 0] = x;
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1458 }
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1459 }
21bd4b32abb4 rgb24->bgr24
michael
parents: 5337
diff changeset
1460
5588
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1461 static inline void RENAME(yuvPlanartoyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1462 long width, long height,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1463 long lumStride, long chromStride, long dstStride, long vertLumPerChroma)
2701
9b47bc409083 yv12 <-> yuy2 in C
michael
parents: 2698
diff changeset
1464 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1465 long y;
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1466 const long chromWidth= width>>1;
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1467 for(y=0; y<height; y++)
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1468 {
2702
440312d953a8 yv12toyuy2 in MMX
michael
parents: 2701
diff changeset
1469 #ifdef HAVE_MMX
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1470 //FIXME handle 2 lines a once (fewer prefetch, reuse some chrom, but very likely limited by mem anyway)
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1471 asm volatile(
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1472 "xor %%"REG_a", %%"REG_a" \n\t"
2800
7847d6b7ad3d .balign or we¡­ll align by 64kb on some architectures
michael
parents: 2799
diff changeset
1473 ".balign 16 \n\t"
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1474 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1475 PREFETCH" 32(%1, %%"REG_a", 2) \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1476 PREFETCH" 32(%2, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1477 PREFETCH" 32(%3, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1478 "movq (%2, %%"REG_a"), %%mm0 \n\t" // U(0)
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1479 "movq %%mm0, %%mm2 \n\t" // U(0)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1480 "movq (%3, %%"REG_a"), %%mm1 \n\t" // V(0)
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1481 "punpcklbw %%mm1, %%mm0 \n\t" // UVUV UVUV(0)
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1482 "punpckhbw %%mm1, %%mm2 \n\t" // UVUV UVUV(8)
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1483
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1484 "movq (%1, %%"REG_a",2), %%mm3 \n\t" // Y(0)
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1485 "movq 8(%1, %%"REG_a",2), %%mm5 \n\t" // Y(8)
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1486 "movq %%mm3, %%mm4 \n\t" // Y(0)
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1487 "movq %%mm5, %%mm6 \n\t" // Y(8)
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1488 "punpcklbw %%mm0, %%mm3 \n\t" // YUYV YUYV(0)
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1489 "punpckhbw %%mm0, %%mm4 \n\t" // YUYV YUYV(4)
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1490 "punpcklbw %%mm2, %%mm5 \n\t" // YUYV YUYV(8)
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1491 "punpckhbw %%mm2, %%mm6 \n\t" // YUYV YUYV(12)
2702
440312d953a8 yv12toyuy2 in MMX
michael
parents: 2701
diff changeset
1492
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1493 MOVNTQ" %%mm3, (%0, %%"REG_a", 4)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1494 MOVNTQ" %%mm4, 8(%0, %%"REG_a", 4)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1495 MOVNTQ" %%mm5, 16(%0, %%"REG_a", 4)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1496 MOVNTQ" %%mm6, 24(%0, %%"REG_a", 4)\n\t"
2702
440312d953a8 yv12toyuy2 in MMX
michael
parents: 2701
diff changeset
1497
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1498 "add $8, %%"REG_a" \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1499 "cmp %4, %%"REG_a" \n\t"
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1500 " jb 1b \n\t"
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1501 ::"r"(dst), "r"(ysrc), "r"(usrc), "r"(vsrc), "g" (chromWidth)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1502 : "%"REG_a
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1503 );
2702
440312d953a8 yv12toyuy2 in MMX
michael
parents: 2701
diff changeset
1504 #else
9393
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1505
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1506 #if defined ARCH_ALPHA && defined HAVE_MVI
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1507 #define pl2yuy2(n) \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1508 y1 = yc[n]; \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1509 y2 = yc2[n]; \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1510 u = uc[n]; \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1511 v = vc[n]; \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1512 asm("unpkbw %1, %0" : "=r"(y1) : "r"(y1)); \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1513 asm("unpkbw %1, %0" : "=r"(y2) : "r"(y2)); \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1514 asm("unpkbl %1, %0" : "=r"(u) : "r"(u)); \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1515 asm("unpkbl %1, %0" : "=r"(v) : "r"(v)); \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1516 yuv1 = (u << 8) + (v << 24); \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1517 yuv2 = yuv1 + y2; \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1518 yuv1 += y1; \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1519 qdst[n] = yuv1; \
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1520 qdst2[n] = yuv2;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1521
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1522 int i;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1523 uint64_t *qdst = (uint64_t *) dst;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1524 uint64_t *qdst2 = (uint64_t *) (dst + dstStride);
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1525 const uint32_t *yc = (uint32_t *) ysrc;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1526 const uint32_t *yc2 = (uint32_t *) (ysrc + lumStride);
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1527 const uint16_t *uc = (uint16_t*) usrc, *vc = (uint16_t*) vsrc;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1528 for(i = 0; i < chromWidth; i += 8){
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1529 uint64_t y1, y2, yuv1, yuv2;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1530 uint64_t u, v;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1531 /* Prefetch */
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1532 asm("ldq $31,64(%0)" :: "r"(yc));
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1533 asm("ldq $31,64(%0)" :: "r"(yc2));
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1534 asm("ldq $31,64(%0)" :: "r"(uc));
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1535 asm("ldq $31,64(%0)" :: "r"(vc));
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1536
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1537 pl2yuy2(0);
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1538 pl2yuy2(1);
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1539 pl2yuy2(2);
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1540 pl2yuy2(3);
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1541
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1542 yc += 4;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1543 yc2 += 4;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1544 uc += 4;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1545 vc += 4;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1546 qdst += 4;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1547 qdst2 += 4;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1548 }
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1549 y++;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1550 ysrc += lumStride;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1551 dst += dstStride;
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1552
5f9c97070b56 yv12 -> yuy2 converter in alpha asm (from mplayerxp)
michael
parents: 9392
diff changeset
1553 #elif __WORDSIZE >= 64
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1554 int i;
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1555 uint64_t *ldst = (uint64_t *) dst;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1556 const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1557 for(i = 0; i < chromWidth; i += 2){
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1558 uint64_t k, l;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1559 k = yc[0] + (uc[0] << 8) +
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1560 (yc[1] << 16) + (vc[0] << 24);
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1561 l = yc[2] + (uc[1] << 8) +
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1562 (yc[3] << 16) + (vc[1] << 24);
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1563 *ldst++ = k + (l << 32);
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1564 yc += 4;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1565 uc += 2;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1566 vc += 2;
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1567 }
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1568
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1569 #else
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1570 int i, *idst = (int32_t *) dst;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1571 const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1572 for(i = 0; i < chromWidth; i++){
12395
b969547bb0b1 bigendian fix by (Romain Dolbeau <dolbeau at irisa dot fr>)
michael
parents: 12385
diff changeset
1573 #ifdef WORDS_BIGENDIAN
b969547bb0b1 bigendian fix by (Romain Dolbeau <dolbeau at irisa dot fr>)
michael
parents: 12385
diff changeset
1574 *idst++ = (yc[0] << 24)+ (uc[0] << 16) +
b969547bb0b1 bigendian fix by (Romain Dolbeau <dolbeau at irisa dot fr>)
michael
parents: 12385
diff changeset
1575 (yc[1] << 8) + (vc[0] << 0);
b969547bb0b1 bigendian fix by (Romain Dolbeau <dolbeau at irisa dot fr>)
michael
parents: 12385
diff changeset
1576 #else
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1577 *idst++ = yc[0] + (uc[0] << 8) +
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1578 (yc[1] << 16) + (vc[0] << 24);
12395
b969547bb0b1 bigendian fix by (Romain Dolbeau <dolbeau at irisa dot fr>)
michael
parents: 12385
diff changeset
1579 #endif
6492
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1580 yc += 2;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1581 uc++;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1582 vc++;
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1583 }
e7635c03910f sync with mplayer xp
arpi
parents: 6484
diff changeset
1584 #endif
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1585 #endif
5588
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1586 if((y&(vertLumPerChroma-1))==(vertLumPerChroma-1) )
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1587 {
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1588 usrc += chromStride;
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1589 vsrc += chromStride;
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1590 }
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1591 ysrc += lumStride;
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1592 dst += dstStride;
2701
9b47bc409083 yv12 <-> yuy2 in C
michael
parents: 2698
diff changeset
1593 }
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1594 #ifdef HAVE_MMX
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1595 asm( EMMS" \n\t"
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1596 SFENCE" \n\t"
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1597 :::"memory");
2702
440312d953a8 yv12toyuy2 in MMX
michael
parents: 2701
diff changeset
1598 #endif
2701
9b47bc409083 yv12 <-> yuy2 in C
michael
parents: 2698
diff changeset
1599 }
9b47bc409083 yv12 <-> yuy2 in C
michael
parents: 2698
diff changeset
1600
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1601 /**
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1602 *
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1603 * height should be a multiple of 2 and width should be a multiple of 16 (if this is a
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1604 * problem for anyone then tell me, and ill fix it)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1605 */
5588
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1606 static inline void RENAME(yv12toyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1607 long width, long height,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1608 long lumStride, long chromStride, long dstStride)
5588
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1609 {
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1610 //FIXME interpolate chroma
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1611 RENAME(yuvPlanartoyuy2)(ysrc, usrc, vsrc, dst, width, height, lumStride, chromStride, dstStride, 2);
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1612 }
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1613
11068
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1614 static inline void RENAME(yuvPlanartouyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1615 long width, long height,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1616 long lumStride, long chromStride, long dstStride, long vertLumPerChroma)
11068
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1617 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1618 long y;
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1619 const long chromWidth= width>>1;
11068
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1620 for(y=0; y<height; y++)
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1621 {
11072
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1622 #ifdef HAVE_MMX
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1623 //FIXME handle 2 lines a once (fewer prefetch, reuse some chrom, but very likely limited by mem anyway)
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1624 asm volatile(
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1625 "xor %%"REG_a", %%"REG_a" \n\t"
11072
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1626 ".balign 16 \n\t"
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1627 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1628 PREFETCH" 32(%1, %%"REG_a", 2) \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1629 PREFETCH" 32(%2, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1630 PREFETCH" 32(%3, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1631 "movq (%2, %%"REG_a"), %%mm0 \n\t" // U(0)
11072
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1632 "movq %%mm0, %%mm2 \n\t" // U(0)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1633 "movq (%3, %%"REG_a"), %%mm1 \n\t" // V(0)
11072
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1634 "punpcklbw %%mm1, %%mm0 \n\t" // UVUV UVUV(0)
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1635 "punpckhbw %%mm1, %%mm2 \n\t" // UVUV UVUV(8)
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1636
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1637 "movq (%1, %%"REG_a",2), %%mm3 \n\t" // Y(0)
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1638 "movq 8(%1, %%"REG_a",2), %%mm5 \n\t" // Y(8)
11072
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1639 "movq %%mm0, %%mm4 \n\t" // Y(0)
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1640 "movq %%mm2, %%mm6 \n\t" // Y(8)
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1641 "punpcklbw %%mm3, %%mm0 \n\t" // YUYV YUYV(0)
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1642 "punpckhbw %%mm3, %%mm4 \n\t" // YUYV YUYV(4)
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1643 "punpcklbw %%mm5, %%mm2 \n\t" // YUYV YUYV(8)
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1644 "punpckhbw %%mm5, %%mm6 \n\t" // YUYV YUYV(12)
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1645
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1646 MOVNTQ" %%mm0, (%0, %%"REG_a", 4)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1647 MOVNTQ" %%mm4, 8(%0, %%"REG_a", 4)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1648 MOVNTQ" %%mm2, 16(%0, %%"REG_a", 4)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1649 MOVNTQ" %%mm6, 24(%0, %%"REG_a", 4)\n\t"
11072
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1650
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1651 "add $8, %%"REG_a" \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1652 "cmp %4, %%"REG_a" \n\t"
11072
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1653 " jb 1b \n\t"
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1654 ::"r"(dst), "r"(ysrc), "r"(usrc), "r"(vsrc), "g" (chromWidth)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1655 : "%"REG_a
11072
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1656 );
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1657 #else
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1658 //FIXME adapt the alpha asm code from yv12->yuy2
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1659
11068
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1660 #if __WORDSIZE >= 64
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1661 int i;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1662 uint64_t *ldst = (uint64_t *) dst;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1663 const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1664 for(i = 0; i < chromWidth; i += 2){
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1665 uint64_t k, l;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1666 k = uc[0] + (yc[0] << 8) +
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1667 (vc[0] << 16) + (yc[1] << 24);
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1668 l = uc[1] + (yc[2] << 8) +
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1669 (vc[1] << 16) + (yc[3] << 24);
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1670 *ldst++ = k + (l << 32);
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1671 yc += 4;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1672 uc += 2;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1673 vc += 2;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1674 }
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1675
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1676 #else
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1677 int i, *idst = (int32_t *) dst;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1678 const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1679 for(i = 0; i < chromWidth; i++){
12395
b969547bb0b1 bigendian fix by (Romain Dolbeau <dolbeau at irisa dot fr>)
michael
parents: 12385
diff changeset
1680 #ifdef WORDS_BIGENDIAN
b969547bb0b1 bigendian fix by (Romain Dolbeau <dolbeau at irisa dot fr>)
michael
parents: 12385
diff changeset
1681 *idst++ = (uc[0] << 24)+ (yc[0] << 16) +
b969547bb0b1 bigendian fix by (Romain Dolbeau <dolbeau at irisa dot fr>)
michael
parents: 12385
diff changeset
1682 (vc[0] << 8) + (yc[1] << 0);
b969547bb0b1 bigendian fix by (Romain Dolbeau <dolbeau at irisa dot fr>)
michael
parents: 12385
diff changeset
1683 #else
11068
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1684 *idst++ = uc[0] + (yc[0] << 8) +
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1685 (vc[0] << 16) + (yc[1] << 24);
12395
b969547bb0b1 bigendian fix by (Romain Dolbeau <dolbeau at irisa dot fr>)
michael
parents: 12385
diff changeset
1686 #endif
11068
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1687 yc += 2;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1688 uc++;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1689 vc++;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1690 }
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1691 #endif
11072
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1692 #endif
11068
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1693 if((y&(vertLumPerChroma-1))==(vertLumPerChroma-1) )
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1694 {
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1695 usrc += chromStride;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1696 vsrc += chromStride;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1697 }
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1698 ysrc += lumStride;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1699 dst += dstStride;
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1700 }
11072
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1701 #ifdef HAVE_MMX
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1702 asm( EMMS" \n\t"
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1703 SFENCE" \n\t"
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1704 :::"memory");
3254b413ef1c yv12->uyvy MMX
michael
parents: 11068
diff changeset
1705 #endif
11068
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1706 }
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1707
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1708 /**
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1709 *
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1710 * height should be a multiple of 2 and width should be a multiple of 16 (if this is a
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1711 * problem for anyone then tell me, and ill fix it)
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1712 */
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1713 static inline void RENAME(yv12touyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1714 long width, long height,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1715 long lumStride, long chromStride, long dstStride)
11068
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1716 {
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1717 //FIXME interpolate chroma
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1718 RENAME(yuvPlanartouyvy)(ysrc, usrc, vsrc, dst, width, height, lumStride, chromStride, dstStride, 2);
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1719 }
f33f908ae085 uyvy output support in swscaler
alex
parents: 9988
diff changeset
1720
5588
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1721 /**
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1722 *
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1723 * width should be a multiple of 16
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1724 */
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1725 static inline void RENAME(yuv422ptoyuy2)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1726 long width, long height,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1727 long lumStride, long chromStride, long dstStride)
5588
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1728 {
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1729 RENAME(yuvPlanartoyuy2)(ysrc, usrc, vsrc, dst, width, height, lumStride, chromStride, dstStride, 1);
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1730 }
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1731
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1732 /**
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1733 *
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1734 * height should be a multiple of 2 and width should be a multiple of 16 (if this is a
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1735 * problem for anyone then tell me, and ill fix it)
f0fa3373f616 yuv422p -> yuy2 (untested)
michael
parents: 5582
diff changeset
1736 */
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
1737 static inline void RENAME(yuy2toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1738 long width, long height,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1739 long lumStride, long chromStride, long srcStride)
2701
9b47bc409083 yv12 <-> yuy2 in C
michael
parents: 2698
diff changeset
1740 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1741 long y;
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1742 const long chromWidth= width>>1;
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1743 for(y=0; y<height; y+=2)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1744 {
2704
b4c6699d3893 yuy2toyv12 in MMX
michael
parents: 2702
diff changeset
1745 #ifdef HAVE_MMX
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1746 asm volatile(
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1747 "xor %%"REG_a", %%"REG_a" \n\t"
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1748 "pcmpeqw %%mm7, %%mm7 \n\t"
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1749 "psrlw $8, %%mm7 \n\t" // FF,00,FF,00...
2800
7847d6b7ad3d .balign or we¡­ll align by 64kb on some architectures
michael
parents: 2799
diff changeset
1750 ".balign 16 \n\t"
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1751 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1752 PREFETCH" 64(%0, %%"REG_a", 4) \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1753 "movq (%0, %%"REG_a", 4), %%mm0 \n\t" // YUYV YUYV(0)
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1754 "movq 8(%0, %%"REG_a", 4), %%mm1\n\t" // YUYV YUYV(4)
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1755 "movq %%mm0, %%mm2 \n\t" // YUYV YUYV(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1756 "movq %%mm1, %%mm3 \n\t" // YUYV YUYV(4)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1757 "psrlw $8, %%mm0 \n\t" // U0V0 U0V0(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1758 "psrlw $8, %%mm1 \n\t" // U0V0 U0V0(4)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1759 "pand %%mm7, %%mm2 \n\t" // Y0Y0 Y0Y0(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1760 "pand %%mm7, %%mm3 \n\t" // Y0Y0 Y0Y0(4)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1761 "packuswb %%mm1, %%mm0 \n\t" // UVUV UVUV(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1762 "packuswb %%mm3, %%mm2 \n\t" // YYYY YYYY(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1763
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1764 MOVNTQ" %%mm2, (%1, %%"REG_a", 2)\n\t"
2704
b4c6699d3893 yuy2toyv12 in MMX
michael
parents: 2702
diff changeset
1765
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1766 "movq 16(%0, %%"REG_a", 4), %%mm1\n\t" // YUYV YUYV(8)
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1767 "movq 24(%0, %%"REG_a", 4), %%mm2\n\t" // YUYV YUYV(12)
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1768 "movq %%mm1, %%mm3 \n\t" // YUYV YUYV(8)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1769 "movq %%mm2, %%mm4 \n\t" // YUYV YUYV(12)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1770 "psrlw $8, %%mm1 \n\t" // U0V0 U0V0(8)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1771 "psrlw $8, %%mm2 \n\t" // U0V0 U0V0(12)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1772 "pand %%mm7, %%mm3 \n\t" // Y0Y0 Y0Y0(8)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1773 "pand %%mm7, %%mm4 \n\t" // Y0Y0 Y0Y0(12)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1774 "packuswb %%mm2, %%mm1 \n\t" // UVUV UVUV(8)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1775 "packuswb %%mm4, %%mm3 \n\t" // YYYY YYYY(8)
2704
b4c6699d3893 yuy2toyv12 in MMX
michael
parents: 2702
diff changeset
1776
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1777 MOVNTQ" %%mm3, 8(%1, %%"REG_a", 2)\n\t"
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1778
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1779 "movq %%mm0, %%mm2 \n\t" // UVUV UVUV(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1780 "movq %%mm1, %%mm3 \n\t" // UVUV UVUV(8)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1781 "psrlw $8, %%mm0 \n\t" // V0V0 V0V0(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1782 "psrlw $8, %%mm1 \n\t" // V0V0 V0V0(8)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1783 "pand %%mm7, %%mm2 \n\t" // U0U0 U0U0(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1784 "pand %%mm7, %%mm3 \n\t" // U0U0 U0U0(8)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1785 "packuswb %%mm1, %%mm0 \n\t" // VVVV VVVV(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1786 "packuswb %%mm3, %%mm2 \n\t" // UUUU UUUU(0)
2704
b4c6699d3893 yuy2toyv12 in MMX
michael
parents: 2702
diff changeset
1787
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1788 MOVNTQ" %%mm0, (%3, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1789 MOVNTQ" %%mm2, (%2, %%"REG_a") \n\t"
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1790
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1791 "add $8, %%"REG_a" \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1792 "cmp %4, %%"REG_a" \n\t"
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1793 " jb 1b \n\t"
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1794 ::"r"(src), "r"(ydst), "r"(udst), "r"(vdst), "g" (chromWidth)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1795 : "memory", "%"REG_a
2725
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
1796 );
2704
b4c6699d3893 yuy2toyv12 in MMX
michael
parents: 2702
diff changeset
1797
2806
cbb62e07bc0e yuy2toyv12 bugfix
michael
parents: 2801
diff changeset
1798 ydst += lumStride;
cbb62e07bc0e yuy2toyv12 bugfix
michael
parents: 2801
diff changeset
1799 src += srcStride;
cbb62e07bc0e yuy2toyv12 bugfix
michael
parents: 2801
diff changeset
1800
2725
5bba527c9a4c unsigned stuff
michael
parents: 2724
diff changeset
1801 asm volatile(
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1802 "xor %%"REG_a", %%"REG_a" \n\t"
2800
7847d6b7ad3d .balign or we¡­ll align by 64kb on some architectures
michael
parents: 2799
diff changeset
1803 ".balign 16 \n\t"
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1804 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1805 PREFETCH" 64(%0, %%"REG_a", 4) \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1806 "movq (%0, %%"REG_a", 4), %%mm0 \n\t" // YUYV YUYV(0)
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1807 "movq 8(%0, %%"REG_a", 4), %%mm1\n\t" // YUYV YUYV(4)
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1808 "movq 16(%0, %%"REG_a", 4), %%mm2\n\t" // YUYV YUYV(8)
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1809 "movq 24(%0, %%"REG_a", 4), %%mm3\n\t" // YUYV YUYV(12)
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1810 "pand %%mm7, %%mm0 \n\t" // Y0Y0 Y0Y0(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1811 "pand %%mm7, %%mm1 \n\t" // Y0Y0 Y0Y0(4)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1812 "pand %%mm7, %%mm2 \n\t" // Y0Y0 Y0Y0(8)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1813 "pand %%mm7, %%mm3 \n\t" // Y0Y0 Y0Y0(12)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1814 "packuswb %%mm1, %%mm0 \n\t" // YYYY YYYY(0)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1815 "packuswb %%mm3, %%mm2 \n\t" // YYYY YYYY(8)
2704
b4c6699d3893 yuy2toyv12 in MMX
michael
parents: 2702
diff changeset
1816
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1817 MOVNTQ" %%mm0, (%1, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1818 MOVNTQ" %%mm2, 8(%1, %%"REG_a", 2)\n\t"
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1819
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1820 "add $8, %%"REG_a" \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1821 "cmp %4, %%"REG_a" \n\t"
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1822 " jb 1b \n\t"
2704
b4c6699d3893 yuy2toyv12 in MMX
michael
parents: 2702
diff changeset
1823
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1824 ::"r"(src), "r"(ydst), "r"(udst), "r"(vdst), "g" (chromWidth)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1825 : "memory", "%"REG_a
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1826 );
2704
b4c6699d3893 yuy2toyv12 in MMX
michael
parents: 2702
diff changeset
1827 #else
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1828 long i;
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1829 for(i=0; i<chromWidth; i++)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1830 {
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1831 ydst[2*i+0] = src[4*i+0];
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1832 udst[i] = src[4*i+1];
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1833 ydst[2*i+1] = src[4*i+2];
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1834 vdst[i] = src[4*i+3];
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1835 }
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1836 ydst += lumStride;
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1837 src += srcStride;
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1838
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1839 for(i=0; i<chromWidth; i++)
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1840 {
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1841 ydst[2*i+0] = src[4*i+0];
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1842 ydst[2*i+1] = src[4*i+2];
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1843 }
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1844 #endif
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1845 udst += chromStride;
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1846 vdst += chromStride;
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1847 ydst += lumStride;
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1848 src += srcStride;
2701
9b47bc409083 yv12 <-> yuy2 in C
michael
parents: 2698
diff changeset
1849 }
2724
c08b7af26782 yuy2toyv12 fixed and speedup
michael
parents: 2723
diff changeset
1850 #ifdef HAVE_MMX
2847
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1851 asm volatile( EMMS" \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1852 SFENCE" \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1853 :::"memory");
2704
b4c6699d3893 yuy2toyv12 in MMX
michael
parents: 2702
diff changeset
1854 #endif
2723
22aba8af94af fixed yv12toyuy2
michael
parents: 2720
diff changeset
1855 }
2801
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
1856
6484
c5cf988c6d6f pre-yvu9toyv12 converter, only grayscale Y-plane coping :)
alex
parents: 6096
diff changeset
1857 static inline void RENAME(yvu9toyv12)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc,
c5cf988c6d6f pre-yvu9toyv12 converter, only grayscale Y-plane coping :)
alex
parents: 6096
diff changeset
1858 uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1859 long width, long height, long lumStride, long chromStride)
6484
c5cf988c6d6f pre-yvu9toyv12 converter, only grayscale Y-plane coping :)
alex
parents: 6096
diff changeset
1860 {
c5cf988c6d6f pre-yvu9toyv12 converter, only grayscale Y-plane coping :)
alex
parents: 6096
diff changeset
1861 /* Y Plane */
c5cf988c6d6f pre-yvu9toyv12 converter, only grayscale Y-plane coping :)
alex
parents: 6096
diff changeset
1862 memcpy(ydst, ysrc, width*height);
c5cf988c6d6f pre-yvu9toyv12 converter, only grayscale Y-plane coping :)
alex
parents: 6096
diff changeset
1863
c5cf988c6d6f pre-yvu9toyv12 converter, only grayscale Y-plane coping :)
alex
parents: 6096
diff changeset
1864 /* XXX: implement upscaling for U,V */
c5cf988c6d6f pre-yvu9toyv12 converter, only grayscale Y-plane coping :)
alex
parents: 6096
diff changeset
1865 }
c5cf988c6d6f pre-yvu9toyv12 converter, only grayscale Y-plane coping :)
alex
parents: 6096
diff changeset
1866
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1867 static inline void RENAME(planar2x)(const uint8_t *src, uint8_t *dst, long srcWidth, long srcHeight, long srcStride, long dstStride)
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1868 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1869 long x,y;
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1870
9256
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1871 dst[0]= src[0];
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1872
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1873 // first line
9256
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1874 for(x=0; x<srcWidth-1; x++){
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1875 dst[2*x+1]= (3*src[x] + src[x+1])>>2;
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1876 dst[2*x+2]= ( src[x] + 3*src[x+1])>>2;
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1877 }
9256
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1878 dst[2*srcWidth-1]= src[srcWidth-1];
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1879
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1880 dst+= dstStride;
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1881
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1882 for(y=1; y<srcHeight; y++){
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1883 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1884 const long mmxSize= srcWidth&~15;
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1885 asm volatile(
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1886 "mov %4, %%"REG_a" \n\t"
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1887 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1888 "movq (%0, %%"REG_a"), %%mm0 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1889 "movq (%1, %%"REG_a"), %%mm1 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1890 "movq 1(%0, %%"REG_a"), %%mm2 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1891 "movq 1(%1, %%"REG_a"), %%mm3 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1892 "movq -1(%0, %%"REG_a"), %%mm4 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1893 "movq -1(%1, %%"REG_a"), %%mm5 \n\t"
9256
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1894 PAVGB" %%mm0, %%mm5 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1895 PAVGB" %%mm0, %%mm3 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1896 PAVGB" %%mm0, %%mm5 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1897 PAVGB" %%mm0, %%mm3 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1898 PAVGB" %%mm1, %%mm4 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1899 PAVGB" %%mm1, %%mm2 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1900 PAVGB" %%mm1, %%mm4 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1901 PAVGB" %%mm1, %%mm2 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1902 "movq %%mm5, %%mm7 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1903 "movq %%mm4, %%mm6 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1904 "punpcklbw %%mm3, %%mm5 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1905 "punpckhbw %%mm3, %%mm7 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1906 "punpcklbw %%mm2, %%mm4 \n\t"
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1907 "punpckhbw %%mm2, %%mm6 \n\t"
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1908 #if 1
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1909 MOVNTQ" %%mm5, (%2, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1910 MOVNTQ" %%mm7, 8(%2, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1911 MOVNTQ" %%mm4, (%3, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1912 MOVNTQ" %%mm6, 8(%3, %%"REG_a", 2)\n\t"
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1913 #else
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1914 "movq %%mm5, (%2, %%"REG_a", 2) \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1915 "movq %%mm7, 8(%2, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1916 "movq %%mm4, (%3, %%"REG_a", 2) \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1917 "movq %%mm6, 8(%3, %%"REG_a", 2)\n\t"
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1918 #endif
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1919 "add $8, %%"REG_a" \n\t"
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1920 " js 1b \n\t"
9256
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1921 :: "r" (src + mmxSize ), "r" (src + srcStride + mmxSize ),
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1922 "r" (dst + mmxSize*2), "r" (dst + dstStride + mmxSize*2),
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1923 "g" (-mmxSize)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
1924 : "%"REG_a
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1925
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1926 );
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1927 #else
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1928 const long mmxSize=1;
9256
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1929 #endif
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1930 dst[0 ]= (3*src[0] + src[srcStride])>>2;
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1931 dst[dstStride]= ( src[0] + 3*src[srcStride])>>2;
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1932
9256
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1933 for(x=mmxSize-1; x<srcWidth-1; x++){
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1934 dst[2*x +1]= (3*src[x+0] + src[x+srcStride+1])>>2;
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1935 dst[2*x+dstStride+2]= ( src[x+0] + 3*src[x+srcStride+1])>>2;
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1936 dst[2*x+dstStride+1]= ( src[x+1] + 3*src[x+srcStride ])>>2;
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1937 dst[2*x +2]= (3*src[x+1] + src[x+srcStride ])>>2;
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1938 }
9256
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1939 dst[srcWidth*2 -1 ]= (3*src[srcWidth-1] + src[srcWidth-1 + srcStride])>>2;
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1940 dst[srcWidth*2 -1 + dstStride]= ( src[srcWidth-1] + 3*src[srcWidth-1 + srcStride])>>2;
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1941
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1942 dst+=dstStride*2;
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1943 src+=srcStride;
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1944 }
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1945
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1946 // last line
9256
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1947 #if 1
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1948 dst[0]= src[0];
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1949
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1950 for(x=0; x<srcWidth-1; x++){
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1951 dst[2*x+1]= (3*src[x] + src[x+1])>>2;
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1952 dst[2*x+2]= ( src[x] + 3*src[x+1])>>2;
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1953 }
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1954 dst[2*srcWidth-1]= src[srcWidth-1];
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1955 #else
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1956 for(x=0; x<srcWidth; x++){
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1957 dst[2*x+0]=
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1958 dst[2*x+1]= src[x];
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1959 }
9256
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1960 #endif
93e8d1655797 yuv9 -> yv12 bugfixes
michael
parents: 7891
diff changeset
1961
6582
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1962 #ifdef HAVE_MMX
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1963 asm volatile( EMMS" \n\t"
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1964 SFENCE" \n\t"
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1965 :::"memory");
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1966 #endif
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1967 }
f98313dcd428 yvu9 -> yv12 unscaled converter with linear chroma scaling
michael
parents: 6492
diff changeset
1968
2801
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
1969 /**
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
1970 *
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
1971 * height should be a multiple of 2 and width should be a multiple of 16 (if this is a
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
1972 * problem for anyone then tell me, and ill fix it)
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
1973 * chrominance data is only taken from every secound line others are ignored FIXME write HQ version
2801
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
1974 */
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
1975 static inline void RENAME(uyvytoyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1976 long width, long height,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1977 long lumStride, long chromStride, long srcStride)
2801
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
1978 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1979 long y;
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
1980 const long chromWidth= width>>1;
2801
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
1981 for(y=0; y<height; y+=2)
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
1982 {
2847
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1983 #ifdef HAVE_MMX
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1984 asm volatile(
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1985 "xorl %%eax, %%eax \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1986 "pcmpeqw %%mm7, %%mm7 \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1987 "psrlw $8, %%mm7 \n\t" // FF,00,FF,00...
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1988 ".balign 16 \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1989 "1: \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1990 PREFETCH" 64(%0, %%eax, 4) \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1991 "movq (%0, %%eax, 4), %%mm0 \n\t" // UYVY UYVY(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1992 "movq 8(%0, %%eax, 4), %%mm1 \n\t" // UYVY UYVY(4)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1993 "movq %%mm0, %%mm2 \n\t" // UYVY UYVY(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1994 "movq %%mm1, %%mm3 \n\t" // UYVY UYVY(4)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1995 "pand %%mm7, %%mm0 \n\t" // U0V0 U0V0(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1996 "pand %%mm7, %%mm1 \n\t" // U0V0 U0V0(4)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1997 "psrlw $8, %%mm2 \n\t" // Y0Y0 Y0Y0(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1998 "psrlw $8, %%mm3 \n\t" // Y0Y0 Y0Y0(4)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
1999 "packuswb %%mm1, %%mm0 \n\t" // UVUV UVUV(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2000 "packuswb %%mm3, %%mm2 \n\t" // YYYY YYYY(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2001
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2002 MOVNTQ" %%mm2, (%1, %%eax, 2) \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2003
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2004 "movq 16(%0, %%eax, 4), %%mm1 \n\t" // UYVY UYVY(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2005 "movq 24(%0, %%eax, 4), %%mm2 \n\t" // UYVY UYVY(12)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2006 "movq %%mm1, %%mm3 \n\t" // UYVY UYVY(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2007 "movq %%mm2, %%mm4 \n\t" // UYVY UYVY(12)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2008 "pand %%mm7, %%mm1 \n\t" // U0V0 U0V0(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2009 "pand %%mm7, %%mm2 \n\t" // U0V0 U0V0(12)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2010 "psrlw $8, %%mm3 \n\t" // Y0Y0 Y0Y0(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2011 "psrlw $8, %%mm4 \n\t" // Y0Y0 Y0Y0(12)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2012 "packuswb %%mm2, %%mm1 \n\t" // UVUV UVUV(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2013 "packuswb %%mm4, %%mm3 \n\t" // YYYY YYYY(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2014
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2015 MOVNTQ" %%mm3, 8(%1, %%eax, 2) \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2016
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2017 "movq %%mm0, %%mm2 \n\t" // UVUV UVUV(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2018 "movq %%mm1, %%mm3 \n\t" // UVUV UVUV(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2019 "psrlw $8, %%mm0 \n\t" // V0V0 V0V0(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2020 "psrlw $8, %%mm1 \n\t" // V0V0 V0V0(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2021 "pand %%mm7, %%mm2 \n\t" // U0U0 U0U0(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2022 "pand %%mm7, %%mm3 \n\t" // U0U0 U0U0(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2023 "packuswb %%mm1, %%mm0 \n\t" // VVVV VVVV(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2024 "packuswb %%mm3, %%mm2 \n\t" // UUUU UUUU(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2025
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2026 MOVNTQ" %%mm0, (%3, %%eax) \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2027 MOVNTQ" %%mm2, (%2, %%eax) \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2028
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2029 "addl $8, %%eax \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2030 "cmpl %4, %%eax \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2031 " jb 1b \n\t"
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2032 ::"r"(src), "r"(ydst), "r"(udst), "r"(vdst), "g" (chromWidth)
2847
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2033 : "memory", "%eax"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2034 );
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2035
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2036 ydst += lumStride;
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2037 src += srcStride;
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2038
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2039 asm volatile(
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2040 "xorl %%eax, %%eax \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2041 ".balign 16 \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2042 "1: \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2043 PREFETCH" 64(%0, %%eax, 4) \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2044 "movq (%0, %%eax, 4), %%mm0 \n\t" // YUYV YUYV(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2045 "movq 8(%0, %%eax, 4), %%mm1 \n\t" // YUYV YUYV(4)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2046 "movq 16(%0, %%eax, 4), %%mm2 \n\t" // YUYV YUYV(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2047 "movq 24(%0, %%eax, 4), %%mm3 \n\t" // YUYV YUYV(12)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2048 "psrlw $8, %%mm0 \n\t" // Y0Y0 Y0Y0(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2049 "psrlw $8, %%mm1 \n\t" // Y0Y0 Y0Y0(4)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2050 "psrlw $8, %%mm2 \n\t" // Y0Y0 Y0Y0(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2051 "psrlw $8, %%mm3 \n\t" // Y0Y0 Y0Y0(12)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2052 "packuswb %%mm1, %%mm0 \n\t" // YYYY YYYY(0)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2053 "packuswb %%mm3, %%mm2 \n\t" // YYYY YYYY(8)
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2054
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2055 MOVNTQ" %%mm0, (%1, %%eax, 2) \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2056 MOVNTQ" %%mm2, 8(%1, %%eax, 2) \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2057
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2058 "addl $8, %%eax \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2059 "cmpl %4, %%eax \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2060 " jb 1b \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2061
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2062 ::"r"(src), "r"(ydst), "r"(udst), "r"(vdst), "g" (chromWidth)
2847
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2063 : "memory", "%eax"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2064 );
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2065 #else
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2066 long i;
2801
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2067 for(i=0; i<chromWidth; i++)
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2068 {
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2069 udst[i] = src[4*i+0];
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2070 ydst[2*i+0] = src[4*i+1];
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2071 vdst[i] = src[4*i+2];
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2072 ydst[2*i+1] = src[4*i+3];
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2073 }
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2074 ydst += lumStride;
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2075 src += srcStride;
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2076
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2077 for(i=0; i<chromWidth; i++)
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2078 {
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2079 ydst[2*i+0] = src[4*i+1];
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2080 ydst[2*i+1] = src[4*i+3];
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2081 }
2847
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2082 #endif
2801
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2083 udst += chromStride;
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2084 vdst += chromStride;
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2085 ydst += lumStride;
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2086 src += srcStride;
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2087 }
2847
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2088 #ifdef HAVE_MMX
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2089 asm volatile( EMMS" \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2090 SFENCE" \n\t"
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2091 :::"memory");
1d92268eb8fc uyvytoyv12 in MMX (untested)
michael
parents: 2806
diff changeset
2092 #endif
2801
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2093 }
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2094
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2095 /**
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2096 *
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2097 * height should be a multiple of 2 and width should be a multiple of 2 (if this is a
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2098 * problem for anyone then tell me, and ill fix it)
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2099 * chrominance data is only taken from every secound line others are ignored in the C version FIXME write HQ version
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2100 */
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2101 static inline void RENAME(rgb24toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2102 long width, long height,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2103 long lumStride, long chromStride, long srcStride)
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2104 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2105 long y;
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2106 const long chromWidth= width>>1;
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2107 #ifdef HAVE_MMX
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2108 for(y=0; y<height-2; y+=2)
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2109 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2110 long i;
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2111 for(i=0; i<2; i++)
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2112 {
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2113 asm volatile(
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2114 "mov %2, %%"REG_a" \n\t"
4923
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2115 "movq "MANGLE(bgr2YCoeff)", %%mm6 \n\t"
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2116 "movq "MANGLE(w1111)", %%mm5 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2117 "pxor %%mm7, %%mm7 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2118 "lea (%%"REG_a", %%"REG_a", 2), %%"REG_b"\n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2119 ".balign 16 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2120 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2121 PREFETCH" 64(%0, %%"REG_b") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2122 "movd (%0, %%"REG_b"), %%mm0 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2123 "movd 3(%0, %%"REG_b"), %%mm1 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2124 "punpcklbw %%mm7, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2125 "punpcklbw %%mm7, %%mm1 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2126 "movd 6(%0, %%"REG_b"), %%mm2 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2127 "movd 9(%0, %%"REG_b"), %%mm3 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2128 "punpcklbw %%mm7, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2129 "punpcklbw %%mm7, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2130 "pmaddwd %%mm6, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2131 "pmaddwd %%mm6, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2132 "pmaddwd %%mm6, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2133 "pmaddwd %%mm6, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2134 #ifndef FAST_BGR2YV12
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2135 "psrad $8, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2136 "psrad $8, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2137 "psrad $8, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2138 "psrad $8, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2139 #endif
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2140 "packssdw %%mm1, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2141 "packssdw %%mm3, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2142 "pmaddwd %%mm5, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2143 "pmaddwd %%mm5, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2144 "packssdw %%mm2, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2145 "psraw $7, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2146
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2147 "movd 12(%0, %%"REG_b"), %%mm4 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2148 "movd 15(%0, %%"REG_b"), %%mm1 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2149 "punpcklbw %%mm7, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2150 "punpcklbw %%mm7, %%mm1 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2151 "movd 18(%0, %%"REG_b"), %%mm2 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2152 "movd 21(%0, %%"REG_b"), %%mm3 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2153 "punpcklbw %%mm7, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2154 "punpcklbw %%mm7, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2155 "pmaddwd %%mm6, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2156 "pmaddwd %%mm6, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2157 "pmaddwd %%mm6, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2158 "pmaddwd %%mm6, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2159 #ifndef FAST_BGR2YV12
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2160 "psrad $8, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2161 "psrad $8, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2162 "psrad $8, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2163 "psrad $8, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2164 #endif
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2165 "packssdw %%mm1, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2166 "packssdw %%mm3, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2167 "pmaddwd %%mm5, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2168 "pmaddwd %%mm5, %%mm2 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2169 "add $24, %%"REG_b" \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2170 "packssdw %%mm2, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2171 "psraw $7, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2172
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2173 "packuswb %%mm4, %%mm0 \n\t"
4923
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2174 "paddusb "MANGLE(bgr2YOffset)", %%mm0 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2175
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2176 MOVNTQ" %%mm0, (%1, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2177 "add $8, %%"REG_a" \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2178 " js 1b \n\t"
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2179 : : "r" (src+width*3), "r" (ydst+width), "g" (-width)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2180 : "%"REG_a, "%"REG_b
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2181 );
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2182 ydst += lumStride;
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2183 src += srcStride;
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2184 }
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2185 src -= srcStride*2;
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2186 asm volatile(
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2187 "mov %4, %%"REG_a" \n\t"
4923
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2188 "movq "MANGLE(w1111)", %%mm5 \n\t"
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2189 "movq "MANGLE(bgr2UCoeff)", %%mm6 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2190 "pxor %%mm7, %%mm7 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2191 "lea (%%"REG_a", %%"REG_a", 2), %%"REG_b"\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2192 "add %%"REG_b", %%"REG_b" \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2193 ".balign 16 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2194 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2195 PREFETCH" 64(%0, %%"REG_b") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2196 PREFETCH" 64(%1, %%"REG_b") \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2197 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2198 "movq (%0, %%"REG_b"), %%mm0 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2199 "movq (%1, %%"REG_b"), %%mm1 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2200 "movq 6(%0, %%"REG_b"), %%mm2 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2201 "movq 6(%1, %%"REG_b"), %%mm3 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2202 PAVGB" %%mm1, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2203 PAVGB" %%mm3, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2204 "movq %%mm0, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2205 "movq %%mm2, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2206 "psrlq $24, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2207 "psrlq $24, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2208 PAVGB" %%mm1, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2209 PAVGB" %%mm3, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2210 "punpcklbw %%mm7, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2211 "punpcklbw %%mm7, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2212 #else
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2213 "movd (%0, %%"REG_b"), %%mm0 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2214 "movd (%1, %%"REG_b"), %%mm1 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2215 "movd 3(%0, %%"REG_b"), %%mm2 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2216 "movd 3(%1, %%"REG_b"), %%mm3 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2217 "punpcklbw %%mm7, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2218 "punpcklbw %%mm7, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2219 "punpcklbw %%mm7, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2220 "punpcklbw %%mm7, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2221 "paddw %%mm1, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2222 "paddw %%mm3, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2223 "paddw %%mm2, %%mm0 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2224 "movd 6(%0, %%"REG_b"), %%mm4 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2225 "movd 6(%1, %%"REG_b"), %%mm1 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2226 "movd 9(%0, %%"REG_b"), %%mm2 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2227 "movd 9(%1, %%"REG_b"), %%mm3 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2228 "punpcklbw %%mm7, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2229 "punpcklbw %%mm7, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2230 "punpcklbw %%mm7, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2231 "punpcklbw %%mm7, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2232 "paddw %%mm1, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2233 "paddw %%mm3, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2234 "paddw %%mm4, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2235 "psrlw $2, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2236 "psrlw $2, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2237 #endif
4923
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2238 "movq "MANGLE(bgr2VCoeff)", %%mm1 \n\t"
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2239 "movq "MANGLE(bgr2VCoeff)", %%mm3 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2240
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2241 "pmaddwd %%mm0, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2242 "pmaddwd %%mm2, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2243 "pmaddwd %%mm6, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2244 "pmaddwd %%mm6, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2245 #ifndef FAST_BGR2YV12
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2246 "psrad $8, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2247 "psrad $8, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2248 "psrad $8, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2249 "psrad $8, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2250 #endif
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2251 "packssdw %%mm2, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2252 "packssdw %%mm3, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2253 "pmaddwd %%mm5, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2254 "pmaddwd %%mm5, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2255 "packssdw %%mm1, %%mm0 \n\t" // V1 V0 U1 U0
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2256 "psraw $7, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2257
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2258 #if defined (HAVE_MMX2) || defined (HAVE_3DNOW)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2259 "movq 12(%0, %%"REG_b"), %%mm4 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2260 "movq 12(%1, %%"REG_b"), %%mm1 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2261 "movq 18(%0, %%"REG_b"), %%mm2 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2262 "movq 18(%1, %%"REG_b"), %%mm3 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2263 PAVGB" %%mm1, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2264 PAVGB" %%mm3, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2265 "movq %%mm4, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2266 "movq %%mm2, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2267 "psrlq $24, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2268 "psrlq $24, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2269 PAVGB" %%mm1, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2270 PAVGB" %%mm3, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2271 "punpcklbw %%mm7, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2272 "punpcklbw %%mm7, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2273 #else
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2274 "movd 12(%0, %%"REG_b"), %%mm4 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2275 "movd 12(%1, %%"REG_b"), %%mm1 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2276 "movd 15(%0, %%"REG_b"), %%mm2 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2277 "movd 15(%1, %%"REG_b"), %%mm3 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2278 "punpcklbw %%mm7, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2279 "punpcklbw %%mm7, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2280 "punpcklbw %%mm7, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2281 "punpcklbw %%mm7, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2282 "paddw %%mm1, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2283 "paddw %%mm3, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2284 "paddw %%mm2, %%mm4 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2285 "movd 18(%0, %%"REG_b"), %%mm5 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2286 "movd 18(%1, %%"REG_b"), %%mm1 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2287 "movd 21(%0, %%"REG_b"), %%mm2 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2288 "movd 21(%1, %%"REG_b"), %%mm3 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2289 "punpcklbw %%mm7, %%mm5 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2290 "punpcklbw %%mm7, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2291 "punpcklbw %%mm7, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2292 "punpcklbw %%mm7, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2293 "paddw %%mm1, %%mm5 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2294 "paddw %%mm3, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2295 "paddw %%mm5, %%mm2 \n\t"
4923
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2296 "movq "MANGLE(w1111)", %%mm5 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2297 "psrlw $2, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2298 "psrlw $2, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2299 #endif
4923
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2300 "movq "MANGLE(bgr2VCoeff)", %%mm1 \n\t"
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2301 "movq "MANGLE(bgr2VCoeff)", %%mm3 \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2302
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2303 "pmaddwd %%mm4, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2304 "pmaddwd %%mm2, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2305 "pmaddwd %%mm6, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2306 "pmaddwd %%mm6, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2307 #ifndef FAST_BGR2YV12
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2308 "psrad $8, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2309 "psrad $8, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2310 "psrad $8, %%mm2 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2311 "psrad $8, %%mm3 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2312 #endif
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2313 "packssdw %%mm2, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2314 "packssdw %%mm3, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2315 "pmaddwd %%mm5, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2316 "pmaddwd %%mm5, %%mm1 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2317 "add $24, %%"REG_b" \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2318 "packssdw %%mm1, %%mm4 \n\t" // V3 V2 U3 U2
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2319 "psraw $7, %%mm4 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2320
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2321 "movq %%mm0, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2322 "punpckldq %%mm4, %%mm0 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2323 "punpckhdq %%mm4, %%mm1 \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2324 "packsswb %%mm1, %%mm0 \n\t"
4923
3cc0f4938be1 add mangling
atmos4
parents: 4622
diff changeset
2325 "paddb "MANGLE(bgr2UVOffset)", %%mm0 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2326 "movd %%mm0, (%2, %%"REG_a") \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2327 "punpckhdq %%mm0, %%mm0 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2328 "movd %%mm0, (%3, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2329 "add $4, %%"REG_a" \n\t"
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2330 " js 1b \n\t"
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2331 : : "r" (src+chromWidth*6), "r" (src+srcStride+chromWidth*6), "r" (udst+chromWidth), "r" (vdst+chromWidth), "g" (-chromWidth)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2332 : "%"REG_a, "%"REG_b
4622
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2333 );
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2334
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2335 udst += chromStride;
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2336 vdst += chromStride;
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2337 src += srcStride*2;
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2338 }
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2339
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2340 asm volatile( EMMS" \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2341 SFENCE" \n\t"
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2342 :::"memory");
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2343 #else
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2344 y=0;
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2345 #endif
e3a9fae516e4 rgb24toyv12 in MMX (untested)
michael
parents: 3633
diff changeset
2346 for(; y<height; y+=2)
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2347 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2348 long i;
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2349 for(i=0; i<chromWidth; i++)
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2350 {
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2351 unsigned int b= src[6*i+0];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2352 unsigned int g= src[6*i+1];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2353 unsigned int r= src[6*i+2];
2801
318c240363c7 uyvy->uv12 added
arpi
parents: 2800
diff changeset
2354
3633
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 3132
diff changeset
2355 unsigned int Y = ((RY*r + GY*g + BY*b)>>RGB2YUV_SHIFT) + 16;
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 3132
diff changeset
2356 unsigned int V = ((RV*r + GV*g + BV*b)>>RGB2YUV_SHIFT) + 128;
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 3132
diff changeset
2357 unsigned int U = ((RU*r + GU*g + BU*b)>>RGB2YUV_SHIFT) + 128;
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2358
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2359 udst[i] = U;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2360 vdst[i] = V;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2361 ydst[2*i] = Y;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2362
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2363 b= src[6*i+3];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2364 g= src[6*i+4];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2365 r= src[6*i+5];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2366
3633
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 3132
diff changeset
2367 Y = ((RY*r + GY*g + BY*b)>>RGB2YUV_SHIFT) + 16;
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2368 ydst[2*i+1] = Y;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2369 }
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2370 ydst += lumStride;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2371 src += srcStride;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2372
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2373 for(i=0; i<chromWidth; i++)
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2374 {
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2375 unsigned int b= src[6*i+0];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2376 unsigned int g= src[6*i+1];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2377 unsigned int r= src[6*i+2];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2378
3633
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 3132
diff changeset
2379 unsigned int Y = ((RY*r + GY*g + BY*b)>>RGB2YUV_SHIFT) + 16;
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2380
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2381 ydst[2*i] = Y;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2382
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2383 b= src[6*i+3];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2384 g= src[6*i+4];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2385 r= src[6*i+5];
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2386
3633
e81bfc0826b1 rgb24toyv12 bugfix
michael
parents: 3132
diff changeset
2387 Y = ((RY*r + GY*g + BY*b)>>RGB2YUV_SHIFT) + 16;
3132
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2388 ydst[2*i+1] = Y;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2389 }
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2390 udst += chromStride;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2391 vdst += chromStride;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2392 ydst += lumStride;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2393 src += srcStride;
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2394 }
ab67556586fa runtime cpu detection
michael
parents: 2847
diff changeset
2395 }
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2396
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2397 void RENAME(interleaveBytes)(uint8_t *src1, uint8_t *src2, uint8_t *dest,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2398 long width, long height, long src1Stride,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2399 long src2Stride, long dstStride){
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2400 long h;
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2401
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2402 for(h=0; h < height; h++)
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2403 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2404 long w;
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2405
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2406 #ifdef HAVE_MMX
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2407 #ifdef HAVE_SSE2
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2408 asm(
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2409 "xor %%"REG_a", %%"REG_a" \n\t"
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2410 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2411 PREFETCH" 64(%1, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2412 PREFETCH" 64(%2, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2413 "movdqa (%1, %%"REG_a"), %%xmm0 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2414 "movdqa (%1, %%"REG_a"), %%xmm1 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2415 "movdqa (%2, %%"REG_a"), %%xmm2 \n\t"
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2416 "punpcklbw %%xmm2, %%xmm0 \n\t"
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2417 "punpckhbw %%xmm2, %%xmm1 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2418 "movntdq %%xmm0, (%0, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2419 "movntdq %%xmm1, 16(%0, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2420 "add $16, %%"REG_a" \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2421 "cmp %3, %%"REG_a" \n\t"
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2422 " jb 1b \n\t"
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2423 ::"r"(dest), "r"(src1), "r"(src2), "r" (width-15)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2424 : "memory", "%"REG_a""
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2425 );
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2426 #else
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2427 asm(
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2428 "xor %%"REG_a", %%"REG_a" \n\t"
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2429 "1: \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2430 PREFETCH" 64(%1, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2431 PREFETCH" 64(%2, %%"REG_a") \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2432 "movq (%1, %%"REG_a"), %%mm0 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2433 "movq 8(%1, %%"REG_a"), %%mm2 \n\t"
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2434 "movq %%mm0, %%mm1 \n\t"
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2435 "movq %%mm2, %%mm3 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2436 "movq (%2, %%"REG_a"), %%mm4 \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2437 "movq 8(%2, %%"REG_a"), %%mm5 \n\t"
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2438 "punpcklbw %%mm4, %%mm0 \n\t"
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2439 "punpckhbw %%mm4, %%mm1 \n\t"
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2440 "punpcklbw %%mm5, %%mm2 \n\t"
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2441 "punpckhbw %%mm5, %%mm3 \n\t"
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2442 MOVNTQ" %%mm0, (%0, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2443 MOVNTQ" %%mm1, 8(%0, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2444 MOVNTQ" %%mm2, 16(%0, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2445 MOVNTQ" %%mm3, 24(%0, %%"REG_a", 2)\n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2446 "add $16, %%"REG_a" \n\t"
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2447 "cmp %3, %%"REG_a" \n\t"
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2448 " jb 1b \n\t"
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2449 ::"r"(dest), "r"(src1), "r"(src2), "r" (width-15)
13720
821f464b4d90 adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64
aurel
parents: 13423
diff changeset
2450 : "memory", "%"REG_a
5337
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2451 );
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2452 #endif
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2453 for(w= (width&(~15)); w < width; w++)
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2454 {
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2455 dest[2*w+0] = src1[w];
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2456 dest[2*w+1] = src2[w];
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2457 }
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2458 #else
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2459 for(w=0; w < width; w++)
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2460 {
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2461 dest[2*w+0] = src1[w];
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2462 dest[2*w+1] = src2[w];
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2463 }
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2464 #endif
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2465 dest += dstStride;
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2466 src1 += src1Stride;
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2467 src2 += src2Stride;
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2468 }
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2469 #ifdef HAVE_MMX
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2470 asm(
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2471 EMMS" \n\t"
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2472 SFENCE" \n\t"
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2473 ::: "memory"
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2474 );
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2475 #endif
0bd1c35aa42c byte interleaving for mga
michael
parents: 4923
diff changeset
2476 }
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2477
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2478 static inline void RENAME(vu9_to_vu12)(const uint8_t *src1, const uint8_t *src2,
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2479 uint8_t *dst1, uint8_t *dst2,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2480 long width, long height,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2481 long srcStride1, long srcStride2,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2482 long dstStride1, long dstStride2)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2483 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2484 long y,x,w,h;
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2485 w=width/2; h=height/2;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2486 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2487 asm volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2488 PREFETCH" %0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2489 PREFETCH" %1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2490 ::"m"(*(src1+srcStride1)),"m"(*(src2+srcStride2)):"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2491 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2492 for(y=0;y<h;y++){
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2493 const uint8_t* s1=src1+srcStride1*(y>>1);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2494 uint8_t* d=dst1+dstStride1*y;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2495 x=0;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2496 #ifdef HAVE_MMX
9392
7bbe4bce6293 cleanup (unsigned stride -> int stride)
michael
parents: 9256
diff changeset
2497 for(;x<w-31;x+=32)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2498 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2499 asm volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2500 PREFETCH" 32%1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2501 "movq %1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2502 "movq 8%1, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2503 "movq 16%1, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2504 "movq 24%1, %%mm6\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2505 "movq %%mm0, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2506 "movq %%mm2, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2507 "movq %%mm4, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2508 "movq %%mm6, %%mm7\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2509 "punpcklbw %%mm0, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2510 "punpckhbw %%mm1, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2511 "punpcklbw %%mm2, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2512 "punpckhbw %%mm3, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2513 "punpcklbw %%mm4, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2514 "punpckhbw %%mm5, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2515 "punpcklbw %%mm6, %%mm6\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2516 "punpckhbw %%mm7, %%mm7\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2517 MOVNTQ" %%mm0, %0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2518 MOVNTQ" %%mm1, 8%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2519 MOVNTQ" %%mm2, 16%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2520 MOVNTQ" %%mm3, 24%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2521 MOVNTQ" %%mm4, 32%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2522 MOVNTQ" %%mm5, 40%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2523 MOVNTQ" %%mm6, 48%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2524 MOVNTQ" %%mm7, 56%0"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2525 :"=m"(d[2*x])
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2526 :"m"(s1[x])
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2527 :"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2528 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2529 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2530 for(;x<w;x++) d[2*x]=d[2*x+1]=s1[x];
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2531 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2532 for(y=0;y<h;y++){
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2533 const uint8_t* s2=src2+srcStride2*(y>>1);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2534 uint8_t* d=dst2+dstStride2*y;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2535 x=0;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2536 #ifdef HAVE_MMX
9392
7bbe4bce6293 cleanup (unsigned stride -> int stride)
michael
parents: 9256
diff changeset
2537 for(;x<w-31;x+=32)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2538 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2539 asm volatile(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2540 PREFETCH" 32%1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2541 "movq %1, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2542 "movq 8%1, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2543 "movq 16%1, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2544 "movq 24%1, %%mm6\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2545 "movq %%mm0, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2546 "movq %%mm2, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2547 "movq %%mm4, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2548 "movq %%mm6, %%mm7\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2549 "punpcklbw %%mm0, %%mm0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2550 "punpckhbw %%mm1, %%mm1\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2551 "punpcklbw %%mm2, %%mm2\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2552 "punpckhbw %%mm3, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2553 "punpcklbw %%mm4, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2554 "punpckhbw %%mm5, %%mm5\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2555 "punpcklbw %%mm6, %%mm6\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2556 "punpckhbw %%mm7, %%mm7\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2557 MOVNTQ" %%mm0, %0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2558 MOVNTQ" %%mm1, 8%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2559 MOVNTQ" %%mm2, 16%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2560 MOVNTQ" %%mm3, 24%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2561 MOVNTQ" %%mm4, 32%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2562 MOVNTQ" %%mm5, 40%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2563 MOVNTQ" %%mm6, 48%0\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2564 MOVNTQ" %%mm7, 56%0"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2565 :"=m"(d[2*x])
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2566 :"m"(s2[x])
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2567 :"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2568 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2569 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2570 for(;x<w;x++) d[2*x]=d[2*x+1]=s2[x];
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2571 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2572 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2573 asm(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2574 EMMS" \n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2575 SFENCE" \n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2576 ::: "memory"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2577 );
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2578 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2579 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2580
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2581 static inline void RENAME(yvu9_to_yuy2)(const uint8_t *src1, const uint8_t *src2, const uint8_t *src3,
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2582 uint8_t *dst,
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2583 long width, long height,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2584 long srcStride1, long srcStride2,
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2585 long srcStride3, long dstStride)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2586 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2587 long y,x,w,h;
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2588 w=width/2; h=height;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2589 for(y=0;y<h;y++){
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2590 const uint8_t* yp=src1+srcStride1*y;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2591 const uint8_t* up=src2+srcStride2*(y>>2);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2592 const uint8_t* vp=src3+srcStride3*(y>>2);
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2593 uint8_t* d=dst+dstStride*y;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2594 x=0;
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2595 #ifdef HAVE_MMX
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2596 for(;x<w-7;x+=8)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2597 {
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2598 asm volatile(
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2599 PREFETCH" 32(%1, %0)\n\t"
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2600 PREFETCH" 32(%2, %0)\n\t"
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2601 PREFETCH" 32(%3, %0)\n\t"
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2602 "movq (%1, %0, 4), %%mm0\n\t" /* Y0Y1Y2Y3Y4Y5Y6Y7 */
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2603 "movq (%2, %0), %%mm1\n\t" /* U0U1U2U3U4U5U6U7 */
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2604 "movq (%3, %0), %%mm2\n\t" /* V0V1V2V3V4V5V6V7 */
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2605 "movq %%mm0, %%mm3\n\t" /* Y0Y1Y2Y3Y4Y5Y6Y7 */
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2606 "movq %%mm1, %%mm4\n\t" /* U0U1U2U3U4U5U6U7 */
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2607 "movq %%mm2, %%mm5\n\t" /* V0V1V2V3V4V5V6V7 */
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2608 "punpcklbw %%mm1, %%mm1\n\t" /* U0U0 U1U1 U2U2 U3U3 */
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2609 "punpcklbw %%mm2, %%mm2\n\t" /* V0V0 V1V1 V2V2 V3V3 */
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2610 "punpckhbw %%mm4, %%mm4\n\t" /* U4U4 U5U5 U6U6 U7U7 */
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2611 "punpckhbw %%mm5, %%mm5\n\t" /* V4V4 V5V5 V6V6 V7V7 */
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2612
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2613 "movq %%mm1, %%mm6\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2614 "punpcklbw %%mm2, %%mm1\n\t" /* U0V0 U0V0 U1V1 U1V1*/
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2615 "punpcklbw %%mm1, %%mm0\n\t" /* Y0U0 Y1V0 Y2U0 Y3V0*/
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2616 "punpckhbw %%mm1, %%mm3\n\t" /* Y4U1 Y5V1 Y6U1 Y7V1*/
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2617 MOVNTQ" %%mm0, (%4, %0, 8)\n\t"
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2618 MOVNTQ" %%mm3, 8(%4, %0, 8)\n\t"
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2619
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2620 "punpckhbw %%mm2, %%mm6\n\t" /* U2V2 U2V2 U3V3 U3V3*/
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2621 "movq 8(%1, %0, 4), %%mm0\n\t"
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2622 "movq %%mm0, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2623 "punpcklbw %%mm6, %%mm0\n\t" /* Y U2 Y V2 Y U2 Y V2*/
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2624 "punpckhbw %%mm6, %%mm3\n\t" /* Y U3 Y V3 Y U3 Y V3*/
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2625 MOVNTQ" %%mm0, 16(%4, %0, 8)\n\t"
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2626 MOVNTQ" %%mm3, 24(%4, %0, 8)\n\t"
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2627
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2628 "movq %%mm4, %%mm6\n\t"
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2629 "movq 16(%1, %0, 4), %%mm0\n\t"
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2630 "movq %%mm0, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2631 "punpcklbw %%mm5, %%mm4\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2632 "punpcklbw %%mm4, %%mm0\n\t" /* Y U4 Y V4 Y U4 Y V4*/
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2633 "punpckhbw %%mm4, %%mm3\n\t" /* Y U5 Y V5 Y U5 Y V5*/
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2634 MOVNTQ" %%mm0, 32(%4, %0, 8)\n\t"
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2635 MOVNTQ" %%mm3, 40(%4, %0, 8)\n\t"
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2636
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2637 "punpckhbw %%mm5, %%mm6\n\t"
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2638 "movq 24(%1, %0, 4), %%mm0\n\t"
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2639 "movq %%mm0, %%mm3\n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2640 "punpcklbw %%mm6, %%mm0\n\t" /* Y U6 Y V6 Y U6 Y V6*/
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2641 "punpckhbw %%mm6, %%mm3\n\t" /* Y U7 Y V7 Y U7 Y V7*/
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2642 MOVNTQ" %%mm0, 48(%4, %0, 8)\n\t"
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2643 MOVNTQ" %%mm3, 56(%4, %0, 8)\n\t"
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2644
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2645 : "+r" (x)
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2646 : "r"(yp), "r" (up), "r"(vp), "r"(d)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2647 :"memory");
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2648 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2649 #endif
9394
b58dcfbbca5a -fPIC compileable
michael
parents: 9393
diff changeset
2650 for(; x<w; x++)
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2651 {
16739
e91f944f6ed9 Change unsigned->signed and int->long, this fits the asm code better on 64
reimar
parents: 14982
diff changeset
2652 const long x2= x<<2;
6606
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2653 d[8*x+0]=yp[x2];
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2654 d[8*x+1]=up[x];
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2655 d[8*x+2]=yp[x2+1];
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2656 d[8*x+3]=vp[x];
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2657 d[8*x+4]=yp[x2+2];
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2658 d[8*x+5]=up[x];
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2659 d[8*x+6]=yp[x2+3];
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2660 d[8*x+7]=vp[x];
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2661 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2662 }
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2663 #ifdef HAVE_MMX
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2664 asm(
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2665 EMMS" \n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2666 SFENCE" \n\t"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2667 ::: "memory"
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2668 );
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2669 #endif
50b5d8367318 merging changes from mplayerxp (rgb2rgb*.{c,h} only)
michael
parents: 6605
diff changeset
2670 }