annotate postproc/rgb2rgb_template.c @ 9987:988c2ffc5bc1

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