Mercurial > libavcodec.hg
annotate sh4/qpel.c @ 4293:728364bcf30c libavcodec
Improve option description.
author | diego |
---|---|
date | Mon, 11 Dec 2006 10:51:42 +0000 |
parents | e880555ad2c6 |
children | 6c66ddbb054f |
rev | line source |
---|---|
2967 | 1 /* |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
2 * This is optimized for sh, which have post increment addressing (*p++). |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
3 * Some CPU may be index (p[n]) faster than post increment (*p++). |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
4 * |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
5 * copyright (c) 2001-2003 BERO <bero@geocities.co.jp> |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
6 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
7 * This file is part of FFmpeg. |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
8 * |
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
9 * FFmpeg is free software; you can redistribute it and/or |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
10 * modify it under the terms of the GNU Lesser General Public |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
11 * License as published by the Free Software Foundation; either |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
12 * version 2.1 of the License, or (at your option) any later version. |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
13 * |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
14 * FFmpeg is distributed in the hope that it will be useful, |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
17 * Lesser General Public License for more details. |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
18 * |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
19 * You should have received a copy of the GNU Lesser General Public |
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3699
diff
changeset
|
20 * License along with FFmpeg; if not, write to the Free Software |
3699
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
c537a97eec66
Add official LGPL license headers to the files that were missing them.
diego
parents:
2979
diff
changeset
|
22 */ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
23 |
2979 | 24 #define LD(adr) *(uint32_t*)(adr) |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
25 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
26 #define PIXOP2(OPNAME, OP) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
27 /*static inline void OPNAME ## _no_rnd_pixels8_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
28 {\ |
2979 | 29 do {\ |
30 OP(LP(dst ),no_rnd_avg32(LD32(src1 ),LD32(src2 )) ); \ | |
31 OP(LP(dst+4),no_rnd_avg32(LD32(src1+4),LD32(src2+4)) ); \ | |
32 src1+=src_stride1; \ | |
33 src2+=src_stride2; \ | |
34 dst+=dst_stride; \ | |
35 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
36 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
37 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
38 static inline void OPNAME ## _pixels8_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
39 {\ |
2979 | 40 do {\ |
41 OP(LP(dst ),rnd_avg32(LD32(src1 ),LD32(src2 )) ); \ | |
42 OP(LP(dst+4),rnd_avg32(LD32(src1+4),LD32(src2+4)) ); \ | |
43 src1+=src_stride1; \ | |
44 src2+=src_stride2; \ | |
45 dst+=dst_stride; \ | |
46 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
47 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
48 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
49 static inline void OPNAME ## _pixels4_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
50 {\ |
2979 | 51 do {\ |
52 OP(LP(dst ),rnd_avg32(LD32(src1 ),LD32(src2 )) ); \ | |
53 src1+=src_stride1; \ | |
54 src2+=src_stride2; \ | |
55 dst+=dst_stride; \ | |
56 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
57 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
58 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
59 static inline void OPNAME ## _no_rnd_pixels16_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
60 {\ |
2979 | 61 do {\ |
62 OP(LP(dst ),no_rnd_avg32(LD32(src1 ),LD32(src2 )) ); \ | |
63 OP(LP(dst+4),no_rnd_avg32(LD32(src1+4),LD32(src2+4)) ); \ | |
64 OP(LP(dst+8),no_rnd_avg32(LD32(src1+8),LD32(src2+8)) ); \ | |
65 OP(LP(dst+12),no_rnd_avg32(LD32(src1+12),LD32(src2+12)) ); \ | |
66 src1+=src_stride1; \ | |
67 src2+=src_stride2; \ | |
68 dst+=dst_stride; \ | |
69 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
70 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
71 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
72 static inline void OPNAME ## _pixels16_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
73 {\ |
2979 | 74 do {\ |
75 OP(LP(dst ),rnd_avg32(LD32(src1 ),LD32(src2 )) ); \ | |
76 OP(LP(dst+4),rnd_avg32(LD32(src1+4),LD32(src2+4)) ); \ | |
77 OP(LP(dst+8),rnd_avg32(LD32(src1+8),LD32(src2+8)) ); \ | |
78 OP(LP(dst+12),rnd_avg32(LD32(src1+12),LD32(src2+12)) ); \ | |
79 src1+=src_stride1; \ | |
80 src2+=src_stride2; \ | |
81 dst+=dst_stride; \ | |
82 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
83 }*/\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
84 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
85 static inline void OPNAME ## _pixels4_l2_aligned(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
86 {\ |
2979 | 87 do {\ |
88 OP(LP(dst ),rnd_avg32(LP(src1 ),LP(src2 )) ); \ | |
89 src1+=src_stride1; \ | |
90 src2+=src_stride2; \ | |
91 dst+=dst_stride; \ | |
92 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
93 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
94 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
95 static inline void OPNAME ## _pixels4_l2_aligned2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
96 {\ |
2979 | 97 do {\ |
98 OP(LP(dst ),rnd_avg32(LD32(src1 ),LP(src2 )) ); \ | |
99 src1+=src_stride1; \ | |
100 src2+=src_stride2; \ | |
101 dst+=dst_stride; \ | |
102 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
103 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
104 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
105 static inline void OPNAME ## _no_rnd_pixels16_l2_aligned2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
106 {\ |
2979 | 107 do {\ |
108 OP(LP(dst ),no_rnd_avg32(LD32(src1 ),LP(src2 )) ); \ | |
109 OP(LP(dst+4),no_rnd_avg32(LD32(src1+4),LP(src2+4)) ); \ | |
110 OP(LP(dst+8),no_rnd_avg32(LD32(src1+8),LP(src2+8)) ); \ | |
111 OP(LP(dst+12),no_rnd_avg32(LD32(src1+12),LP(src2+12)) ); \ | |
112 src1+=src_stride1; \ | |
113 src2+=src_stride2; \ | |
114 dst+=dst_stride; \ | |
115 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
116 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
117 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
118 static inline void OPNAME ## _pixels16_l2_aligned2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
119 {\ |
2979 | 120 do {\ |
121 OP(LP(dst ),rnd_avg32(LD32(src1 ),LP(src2 )) ); \ | |
122 OP(LP(dst+4),rnd_avg32(LD32(src1+4),LP(src2+4)) ); \ | |
123 OP(LP(dst+8),rnd_avg32(LD32(src1+8),LP(src2+8)) ); \ | |
124 OP(LP(dst+12),rnd_avg32(LD32(src1+12),LP(src2+12)) ); \ | |
125 src1+=src_stride1; \ | |
126 src2+=src_stride2; \ | |
127 dst+=dst_stride; \ | |
128 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
129 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
130 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
131 static inline void OPNAME ## _no_rnd_pixels8_l2_aligned2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
132 {\ |
2979 | 133 do { /* onlye src2 aligned */\ |
134 OP(LP(dst ),no_rnd_avg32(LD32(src1 ),LP(src2 )) ); \ | |
135 OP(LP(dst+4),no_rnd_avg32(LD32(src1+4),LP(src2+4)) ); \ | |
136 src1+=src_stride1; \ | |
137 src2+=src_stride2; \ | |
138 dst+=dst_stride; \ | |
139 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
140 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
141 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
142 static inline void OPNAME ## _pixels8_l2_aligned2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
143 {\ |
2979 | 144 do {\ |
145 OP(LP(dst ),rnd_avg32(LD32(src1 ),LP(src2 )) ); \ | |
146 OP(LP(dst+4),rnd_avg32(LD32(src1+4),LP(src2+4)) ); \ | |
147 src1+=src_stride1; \ | |
148 src2+=src_stride2; \ | |
149 dst+=dst_stride; \ | |
150 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
151 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
152 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
153 static inline void OPNAME ## _no_rnd_pixels8_l2_aligned(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
154 {\ |
2979 | 155 do {\ |
156 OP(LP(dst ),no_rnd_avg32(LP(src1 ),LP(src2 )) ); \ | |
157 OP(LP(dst+4),no_rnd_avg32(LP(src1+4),LP(src2+4)) ); \ | |
158 src1+=src_stride1; \ | |
159 src2+=src_stride2; \ | |
160 dst+=dst_stride; \ | |
161 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
162 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
163 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
164 static inline void OPNAME ## _pixels8_l2_aligned(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
165 {\ |
2979 | 166 do {\ |
167 OP(LP(dst ),rnd_avg32(LP(src1 ),LP(src2 )) ); \ | |
168 OP(LP(dst+4),rnd_avg32(LP(src1+4),LP(src2+4)) ); \ | |
169 src1+=src_stride1; \ | |
170 src2+=src_stride2; \ | |
171 dst+=dst_stride; \ | |
172 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
173 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
174 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
175 static inline void OPNAME ## _no_rnd_pixels16_l2_aligned(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
176 {\ |
2979 | 177 do {\ |
178 OP(LP(dst ),no_rnd_avg32(LP(src1 ),LP(src2 )) ); \ | |
179 OP(LP(dst+4),no_rnd_avg32(LP(src1+4),LP(src2+4)) ); \ | |
180 OP(LP(dst+8),no_rnd_avg32(LP(src1+8),LP(src2+8)) ); \ | |
181 OP(LP(dst+12),no_rnd_avg32(LP(src1+12),LP(src2+12)) ); \ | |
182 src1+=src_stride1; \ | |
183 src2+=src_stride2; \ | |
184 dst+=dst_stride; \ | |
185 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
186 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
187 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
188 static inline void OPNAME ## _pixels16_l2_aligned(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
189 {\ |
2979 | 190 do {\ |
191 OP(LP(dst ),rnd_avg32(LP(src1 ),LP(src2 )) ); \ | |
192 OP(LP(dst+4),rnd_avg32(LP(src1+4),LP(src2+4)) ); \ | |
193 OP(LP(dst+8),rnd_avg32(LP(src1+8),LP(src2+8)) ); \ | |
194 OP(LP(dst+12),rnd_avg32(LP(src1+12),LP(src2+12)) ); \ | |
195 src1+=src_stride1; \ | |
196 src2+=src_stride2; \ | |
197 dst+=dst_stride; \ | |
198 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
199 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
200 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
201 static inline void OPNAME ## _no_rnd_pixels16_l2_aligned1(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
202 { OPNAME ## _no_rnd_pixels16_l2_aligned2(dst,src2,src1,dst_stride,src_stride2,src_stride1,h); } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
203 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
204 static inline void OPNAME ## _pixels16_l2_aligned1(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
205 { OPNAME ## _pixels16_l2_aligned2(dst,src2,src1,dst_stride,src_stride2,src_stride1,h); } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
206 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
207 static inline void OPNAME ## _no_rnd_pixels8_l2_aligned1(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
208 { OPNAME ## _no_rnd_pixels8_l2_aligned2(dst,src2,src1,dst_stride,src_stride2,src_stride1,h); } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
209 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
210 static inline void OPNAME ## _pixels8_l2_aligned1(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, int src_stride1, int src_stride2, int h) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
211 { OPNAME ## _pixels8_l2_aligned2(dst,src2,src1,dst_stride,src_stride2,src_stride1,h); } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
212 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
213 static inline void OPNAME ## _pixels8_l4_aligned(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 214 do { \ |
215 uint32_t a0,a1,a2,a3; \ | |
216 UNPACK(a0,a1,LP(src1),LP(src2)); \ | |
217 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
218 OP(LP(dst),rnd_PACK(a0,a1,a2,a3)); \ | |
219 UNPACK(a0,a1,LP(src1+4),LP(src2+4)); \ | |
220 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
221 OP(LP(dst+4),rnd_PACK(a0,a1,a2,a3)); \ | |
222 src1+=src_stride1;\ | |
223 src2+=src_stride2;\ | |
224 src3+=src_stride3;\ | |
225 src4+=src_stride4;\ | |
226 dst+=dst_stride;\ | |
227 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
228 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
229 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
230 static inline void OPNAME ## _no_rnd_pixels8_l4_aligned(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 231 do { \ |
232 uint32_t a0,a1,a2,a3; \ | |
233 UNPACK(a0,a1,LP(src1),LP(src2)); \ | |
234 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
235 OP(LP(dst),no_rnd_PACK(a0,a1,a2,a3)); \ | |
236 UNPACK(a0,a1,LP(src1+4),LP(src2+4)); \ | |
237 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
238 OP(LP(dst+4),no_rnd_PACK(a0,a1,a2,a3)); \ | |
239 src1+=src_stride1;\ | |
240 src2+=src_stride2;\ | |
241 src3+=src_stride3;\ | |
242 src4+=src_stride4;\ | |
243 dst+=dst_stride;\ | |
244 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
245 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
246 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
247 static inline void OPNAME ## _pixels8_l4_aligned0(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 248 do { \ |
249 uint32_t a0,a1,a2,a3; /* src1 only not aligned */\ | |
250 UNPACK(a0,a1,LD32(src1),LP(src2)); \ | |
251 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
252 OP(LP(dst),rnd_PACK(a0,a1,a2,a3)); \ | |
253 UNPACK(a0,a1,LD32(src1+4),LP(src2+4)); \ | |
254 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
255 OP(LP(dst+4),rnd_PACK(a0,a1,a2,a3)); \ | |
256 src1+=src_stride1;\ | |
257 src2+=src_stride2;\ | |
258 src3+=src_stride3;\ | |
259 src4+=src_stride4;\ | |
260 dst+=dst_stride;\ | |
261 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
262 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
263 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
264 static inline void OPNAME ## _no_rnd_pixels8_l4_aligned0(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 265 do { \ |
266 uint32_t a0,a1,a2,a3; \ | |
267 UNPACK(a0,a1,LD32(src1),LP(src2)); \ | |
268 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
269 OP(LP(dst),no_rnd_PACK(a0,a1,a2,a3)); \ | |
270 UNPACK(a0,a1,LD32(src1+4),LP(src2+4)); \ | |
271 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
272 OP(LP(dst+4),no_rnd_PACK(a0,a1,a2,a3)); \ | |
273 src1+=src_stride1;\ | |
274 src2+=src_stride2;\ | |
275 src3+=src_stride3;\ | |
276 src4+=src_stride4;\ | |
277 dst+=dst_stride;\ | |
278 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
279 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
280 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
281 static inline void OPNAME ## _pixels16_l4_aligned(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 282 do { \ |
283 uint32_t a0,a1,a2,a3; \ | |
284 UNPACK(a0,a1,LP(src1),LP(src2)); \ | |
285 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
286 OP(LP(dst),rnd_PACK(a0,a1,a2,a3)); \ | |
287 UNPACK(a0,a1,LP(src1+4),LP(src2+4)); \ | |
288 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
289 OP(LP(dst+8),rnd_PACK(a0,a1,a2,a3)); \ | |
290 UNPACK(a0,a1,LP(src1+8),LP(src2+8)); \ | |
291 UNPACK(a2,a3,LP(src3+8),LP(src4+8)); \ | |
292 OP(LP(dst+8),rnd_PACK(a0,a1,a2,a3)); \ | |
293 UNPACK(a0,a1,LP(src1+12),LP(src2+12)); \ | |
294 UNPACK(a2,a3,LP(src3+12),LP(src4+12)); \ | |
295 OP(LP(dst+12),rnd_PACK(a0,a1,a2,a3)); \ | |
296 src1+=src_stride1;\ | |
297 src2+=src_stride2;\ | |
298 src3+=src_stride3;\ | |
299 src4+=src_stride4;\ | |
300 dst+=dst_stride;\ | |
301 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
302 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
303 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
304 static inline void OPNAME ## _no_rnd_pixels16_l4_aligned(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 305 do { \ |
306 uint32_t a0,a1,a2,a3; \ | |
307 UNPACK(a0,a1,LP(src1),LP(src2)); \ | |
308 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
309 OP(LP(dst),no_rnd_PACK(a0,a1,a2,a3)); \ | |
310 UNPACK(a0,a1,LP(src1+4),LP(src2+4)); \ | |
311 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
312 OP(LP(dst+4),no_rnd_PACK(a0,a1,a2,a3)); \ | |
313 UNPACK(a0,a1,LP(src1+8),LP(src2+8)); \ | |
314 UNPACK(a2,a3,LP(src3+8),LP(src4+8)); \ | |
315 OP(LP(dst+8),no_rnd_PACK(a0,a1,a2,a3)); \ | |
316 UNPACK(a0,a1,LP(src1+12),LP(src2+12)); \ | |
317 UNPACK(a2,a3,LP(src3+12),LP(src4+12)); \ | |
318 OP(LP(dst+12),no_rnd_PACK(a0,a1,a2,a3)); \ | |
319 src1+=src_stride1;\ | |
320 src2+=src_stride2;\ | |
321 src3+=src_stride3;\ | |
322 src4+=src_stride4;\ | |
323 dst+=dst_stride;\ | |
324 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
325 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
326 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
327 static inline void OPNAME ## _pixels16_l4_aligned0(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 328 do { /* src1 is unaligned */\ |
329 uint32_t a0,a1,a2,a3; \ | |
330 UNPACK(a0,a1,LD32(src1),LP(src2)); \ | |
331 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
332 OP(LP(dst),rnd_PACK(a0,a1,a2,a3)); \ | |
333 UNPACK(a0,a1,LD32(src1+4),LP(src2+4)); \ | |
334 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
335 OP(LP(dst+8),rnd_PACK(a0,a1,a2,a3)); \ | |
336 UNPACK(a0,a1,LD32(src1+8),LP(src2+8)); \ | |
337 UNPACK(a2,a3,LP(src3+8),LP(src4+8)); \ | |
338 OP(LP(dst+8),rnd_PACK(a0,a1,a2,a3)); \ | |
339 UNPACK(a0,a1,LD32(src1+12),LP(src2+12)); \ | |
340 UNPACK(a2,a3,LP(src3+12),LP(src4+12)); \ | |
341 OP(LP(dst+12),rnd_PACK(a0,a1,a2,a3)); \ | |
342 src1+=src_stride1;\ | |
343 src2+=src_stride2;\ | |
344 src3+=src_stride3;\ | |
345 src4+=src_stride4;\ | |
346 dst+=dst_stride;\ | |
347 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
348 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
349 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
350 static inline void OPNAME ## _no_rnd_pixels16_l4_aligned0(uint8_t *dst, const uint8_t *src1, uint8_t *src2, uint8_t *src3, uint8_t *src4,int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\ |
2979 | 351 do { \ |
352 uint32_t a0,a1,a2,a3; \ | |
353 UNPACK(a0,a1,LD32(src1),LP(src2)); \ | |
354 UNPACK(a2,a3,LP(src3),LP(src4)); \ | |
355 OP(LP(dst),no_rnd_PACK(a0,a1,a2,a3)); \ | |
356 UNPACK(a0,a1,LD32(src1+4),LP(src2+4)); \ | |
357 UNPACK(a2,a3,LP(src3+4),LP(src4+4)); \ | |
358 OP(LP(dst+4),no_rnd_PACK(a0,a1,a2,a3)); \ | |
359 UNPACK(a0,a1,LD32(src1+8),LP(src2+8)); \ | |
360 UNPACK(a2,a3,LP(src3+8),LP(src4+8)); \ | |
361 OP(LP(dst+8),no_rnd_PACK(a0,a1,a2,a3)); \ | |
362 UNPACK(a0,a1,LD32(src1+12),LP(src2+12)); \ | |
363 UNPACK(a2,a3,LP(src3+12),LP(src4+12)); \ | |
364 OP(LP(dst+12),no_rnd_PACK(a0,a1,a2,a3)); \ | |
365 src1+=src_stride1;\ | |
366 src2+=src_stride2;\ | |
367 src3+=src_stride3;\ | |
368 src4+=src_stride4;\ | |
369 dst+=dst_stride;\ | |
370 } while(--h); \ | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
371 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
372 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
373 |
1264 | 374 #define op_avg(a, b) a = rnd_avg32(a,b) |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
375 #define op_put(a, b) a = b |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
376 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
377 PIXOP2(avg, op_avg) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
378 PIXOP2(put, op_put) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
379 #undef op_avg |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
380 #undef op_put |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
381 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
382 #define avg2(a,b) ((a+b+1)>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
383 #define avg4(a,b,c,d) ((a+b+c+d+2)>>2) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
384 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
385 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
386 static void gmc1_c(uint8_t *dst, uint8_t *src, int stride, int h, int x16, int y16, int rounder) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
387 { |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
388 const int A=(16-x16)*(16-y16); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
389 const int B=( x16)*(16-y16); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
390 const int C=(16-x16)*( y16); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
391 const int D=( x16)*( y16); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
392 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
393 do { |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
394 int t0,t1,t2,t3; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
395 uint8_t *s0 = src; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
396 uint8_t *s1 = src+stride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
397 t0 = *s0++; t2 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
398 t1 = *s0++; t3 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
399 dst[0]= (A*t0 + B*t1 + C*t2 + D*t3 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
400 t0 = *s0++; t2 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
401 dst[1]= (A*t1 + B*t0 + C*t3 + D*t2 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
402 t1 = *s0++; t3 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
403 dst[2]= (A*t0 + B*t1 + C*t2 + D*t3 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
404 t0 = *s0++; t2 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
405 dst[3]= (A*t1 + B*t0 + C*t3 + D*t2 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
406 t1 = *s0++; t3 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
407 dst[4]= (A*t0 + B*t1 + C*t2 + D*t3 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
408 t0 = *s0++; t2 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
409 dst[5]= (A*t1 + B*t0 + C*t3 + D*t2 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
410 t1 = *s0++; t3 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
411 dst[6]= (A*t0 + B*t1 + C*t2 + D*t3 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
412 t0 = *s0++; t2 = *s1++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
413 dst[7]= (A*t1 + B*t0 + C*t3 + D*t2 + rounder)>>8; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
414 dst+= stride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
415 src+= stride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
416 }while(--h); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
417 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
418 |
2967 | 419 static void gmc_c(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy, |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
420 int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
421 { |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
422 int y, vx, vy; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
423 const int s= 1<<shift; |
2967 | 424 |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
425 width--; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
426 height--; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
427 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
428 for(y=0; y<h; y++){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
429 int x; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
430 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
431 vx= ox; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
432 vy= oy; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
433 for(x=0; x<8; x++){ //XXX FIXME optimize |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
434 int src_x, src_y, frac_x, frac_y, index; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
435 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
436 src_x= vx>>16; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
437 src_y= vy>>16; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
438 frac_x= src_x&(s-1); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
439 frac_y= src_y&(s-1); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
440 src_x>>=shift; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
441 src_y>>=shift; |
2967 | 442 |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
443 if((unsigned)src_x < width){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
444 if((unsigned)src_y < height){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
445 index= src_x + src_y*stride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
446 dst[y*stride + x]= ( ( src[index ]*(s-frac_x) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
447 + src[index +1]* frac_x )*(s-frac_y) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
448 + ( src[index+stride ]*(s-frac_x) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
449 + src[index+stride+1]* frac_x )* frac_y |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
450 + r)>>(shift*2); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
451 }else{ |
2967 | 452 index= src_x + clip(src_y, 0, height)*stride; |
453 dst[y*stride + x]= ( ( src[index ]*(s-frac_x) | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
454 + src[index +1]* frac_x )*s |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
455 + r)>>(shift*2); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
456 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
457 }else{ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
458 if((unsigned)src_y < height){ |
2967 | 459 index= clip(src_x, 0, width) + src_y*stride; |
460 dst[y*stride + x]= ( ( src[index ]*(s-frac_y) | |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
461 + src[index+stride ]* frac_y )*s |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
462 + r)>>(shift*2); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
463 }else{ |
2967 | 464 index= clip(src_x, 0, width) + clip(src_y, 0, height)*stride; |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
465 dst[y*stride + x]= src[index ]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
466 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
467 } |
2967 | 468 |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
469 vx+= dxx; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
470 vy+= dyx; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
471 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
472 ox += dxy; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
473 oy += dyy; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
474 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
475 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
476 #define H264_CHROMA_MC(OPNAME, OP)\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
477 static void OPNAME ## h264_chroma_mc2_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
478 const int A=(8-x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
479 const int B=( x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
480 const int C=(8-x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
481 const int D=( x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
482 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
483 assert(x<8 && y<8 && x>=0 && y>=0);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
484 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
485 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
486 int t0,t1,t2,t3; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
487 uint8_t *s0 = src; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
488 uint8_t *s1 = src+stride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
489 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
490 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
491 OP(dst[0], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
492 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
493 OP(dst[1], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
494 dst+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
495 src+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
496 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
497 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
498 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
499 static void OPNAME ## h264_chroma_mc4_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
500 const int A=(8-x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
501 const int B=( x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
502 const int C=(8-x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
503 const int D=( x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
504 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
505 assert(x<8 && y<8 && x>=0 && y>=0);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
506 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
507 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
508 int t0,t1,t2,t3; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
509 uint8_t *s0 = src; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
510 uint8_t *s1 = src+stride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
511 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
512 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
513 OP(dst[0], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
514 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
515 OP(dst[1], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
516 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
517 OP(dst[2], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
518 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
519 OP(dst[3], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
520 dst+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
521 src+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
522 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
523 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
524 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
525 static void OPNAME ## h264_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
526 const int A=(8-x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
527 const int B=( x)*(8-y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
528 const int C=(8-x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
529 const int D=( x)*( y);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
530 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
531 assert(x<8 && y<8 && x>=0 && y>=0);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
532 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
533 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
534 int t0,t1,t2,t3; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
535 uint8_t *s0 = src; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
536 uint8_t *s1 = src+stride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
537 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
538 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
539 OP(dst[0], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
540 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
541 OP(dst[1], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
542 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
543 OP(dst[2], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
544 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
545 OP(dst[3], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
546 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
547 OP(dst[4], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
548 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
549 OP(dst[5], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
550 t1 = *s0++; t3 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
551 OP(dst[6], (A*t0 + B*t1 + C*t2 + D*t3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
552 t0 = *s0++; t2 = *s1++; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
553 OP(dst[7], (A*t1 + B*t0 + C*t3 + D*t2));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
554 dst+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
555 src+= stride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
556 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
557 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
558 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
559 #define op_avg(a, b) a = (((a)+(((b) + 32)>>6)+1)>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
560 #define op_put(a, b) a = (((b) + 32)>>6) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
561 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
562 H264_CHROMA_MC(put_ , op_put) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
563 H264_CHROMA_MC(avg_ , op_avg) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
564 #undef op_avg |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
565 #undef op_put |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
566 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
567 #define QPEL_MC(r, OPNAME, RND, OP) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
568 static void OPNAME ## mpeg4_qpel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h){\ |
4176 | 569 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
570 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
571 uint8_t *s = src; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
572 int src0,src1,src2,src3,src4,src5,src6,src7,src8;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
573 src0= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
574 src1= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
575 src2= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
576 src3= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
577 src4= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
578 OP(dst[0], (src0+src1)*20 - (src0+src2)*6 + (src1+src3)*3 - (src2+src4));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
579 src5= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
580 OP(dst[1], (src1+src2)*20 - (src0+src3)*6 + (src0+src4)*3 - (src1+src5));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
581 src6= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
582 OP(dst[2], (src2+src3)*20 - (src1+src4)*6 + (src0+src5)*3 - (src0+src6));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
583 src7= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
584 OP(dst[3], (src3+src4)*20 - (src2+src5)*6 + (src1+src6)*3 - (src0+src7));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
585 src8= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
586 OP(dst[4], (src4+src5)*20 - (src3+src6)*6 + (src2+src7)*3 - (src1+src8));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
587 OP(dst[5], (src5+src6)*20 - (src4+src7)*6 + (src3+src8)*3 - (src2+src8));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
588 OP(dst[6], (src6+src7)*20 - (src5+src8)*6 + (src4+src8)*3 - (src3+src7));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
589 OP(dst[7], (src7+src8)*20 - (src6+src8)*6 + (src5+src7)*3 - (src4+src6));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
590 dst+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
591 src+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
592 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
593 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
594 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
595 static void OPNAME ## mpeg4_qpel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
4176 | 596 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
597 int w=8;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
598 do{\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
599 uint8_t *s = src, *d=dst;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
600 int src0,src1,src2,src3,src4,src5,src6,src7,src8;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
601 src0 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
602 src1 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
603 src2 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
604 src3 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
605 src4 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
606 OP(*d, (src0+src1)*20 - (src0+src2)*6 + (src1+src3)*3 - (src2+src4));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
607 src5 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
608 OP(*d, (src1+src2)*20 - (src0+src3)*6 + (src0+src4)*3 - (src1+src5));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
609 src6 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
610 OP(*d, (src2+src3)*20 - (src1+src4)*6 + (src0+src5)*3 - (src0+src6));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
611 src7 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
612 OP(*d, (src3+src4)*20 - (src2+src5)*6 + (src1+src6)*3 - (src0+src7));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
613 src8 = *s; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
614 OP(*d, (src4+src5)*20 - (src3+src6)*6 + (src2+src7)*3 - (src1+src8));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
615 OP(*d, (src5+src6)*20 - (src4+src7)*6 + (src3+src8)*3 - (src2+src8));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
616 OP(*d, (src6+src7)*20 - (src5+src8)*6 + (src4+src8)*3 - (src3+src7));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
617 OP(*d, (src7+src8)*20 - (src6+src8)*6 + (src5+src7)*3 - (src4+src6));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
618 dst++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
619 src++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
620 }while(--w);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
621 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
622 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
623 static void OPNAME ## mpeg4_qpel16_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h){\ |
4176 | 624 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
625 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
626 uint8_t *s = src;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
627 int src0,src1,src2,src3,src4,src5,src6,src7,src8;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
628 int src9,src10,src11,src12,src13,src14,src15,src16;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
629 src0= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
630 src1= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
631 src2= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
632 src3= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
633 src4= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
634 OP(dst[ 0], (src0 +src1 )*20 - (src0 +src2 )*6 + (src1 +src3 )*3 - (src2 +src4 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
635 src5= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
636 OP(dst[ 1], (src1 +src2 )*20 - (src0 +src3 )*6 + (src0 +src4 )*3 - (src1 +src5 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
637 src6= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
638 OP(dst[ 2], (src2 +src3 )*20 - (src1 +src4 )*6 + (src0 +src5 )*3 - (src0 +src6 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
639 src7= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
640 OP(dst[ 3], (src3 +src4 )*20 - (src2 +src5 )*6 + (src1 +src6 )*3 - (src0 +src7 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
641 src8= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
642 OP(dst[ 4], (src4 +src5 )*20 - (src3 +src6 )*6 + (src2 +src7 )*3 - (src1 +src8 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
643 src9= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
644 OP(dst[ 5], (src5 +src6 )*20 - (src4 +src7 )*6 + (src3 +src8 )*3 - (src2 +src9 ));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
645 src10= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
646 OP(dst[ 6], (src6 +src7 )*20 - (src5 +src8 )*6 + (src4 +src9 )*3 - (src3 +src10));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
647 src11= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
648 OP(dst[ 7], (src7 +src8 )*20 - (src6 +src9 )*6 + (src5 +src10)*3 - (src4 +src11));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
649 src12= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
650 OP(dst[ 8], (src8 +src9 )*20 - (src7 +src10)*6 + (src6 +src11)*3 - (src5 +src12));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
651 src13= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
652 OP(dst[ 9], (src9 +src10)*20 - (src8 +src11)*6 + (src7 +src12)*3 - (src6 +src13));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
653 src14= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
654 OP(dst[10], (src10+src11)*20 - (src9 +src12)*6 + (src8 +src13)*3 - (src7 +src14));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
655 src15= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
656 OP(dst[11], (src11+src12)*20 - (src10+src13)*6 + (src9 +src14)*3 - (src8 +src15));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
657 src16= *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
658 OP(dst[12], (src12+src13)*20 - (src11+src14)*6 + (src10+src15)*3 - (src9 +src16));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
659 OP(dst[13], (src13+src14)*20 - (src12+src15)*6 + (src11+src16)*3 - (src10+src16));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
660 OP(dst[14], (src14+src15)*20 - (src13+src16)*6 + (src12+src16)*3 - (src11+src15));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
661 OP(dst[15], (src15+src16)*20 - (src14+src16)*6 + (src13+src15)*3 - (src12+src14));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
662 dst+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
663 src+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
664 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
665 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
666 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
667 static void OPNAME ## mpeg4_qpel16_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
4176 | 668 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
669 int w=16;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
670 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
671 uint8_t *s = src, *d=dst;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
672 int src0,src1,src2,src3,src4,src5,src6,src7,src8;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
673 int src9,src10,src11,src12,src13,src14,src15,src16;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
674 src0 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
675 src1 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
676 src2 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
677 src3 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
678 src4 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
679 OP(*d, (src0 +src1 )*20 - (src0 +src2 )*6 + (src1 +src3 )*3 - (src2 +src4 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
680 src5 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
681 OP(*d, (src1 +src2 )*20 - (src0 +src3 )*6 + (src0 +src4 )*3 - (src1 +src5 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
682 src6 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
683 OP(*d, (src2 +src3 )*20 - (src1 +src4 )*6 + (src0 +src5 )*3 - (src0 +src6 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
684 src7 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
685 OP(*d, (src3 +src4 )*20 - (src2 +src5 )*6 + (src1 +src6 )*3 - (src0 +src7 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
686 src8 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
687 OP(*d, (src4 +src5 )*20 - (src3 +src6 )*6 + (src2 +src7 )*3 - (src1 +src8 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
688 src9 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
689 OP(*d, (src5 +src6 )*20 - (src4 +src7 )*6 + (src3 +src8 )*3 - (src2 +src9 ));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
690 src10 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
691 OP(*d, (src6 +src7 )*20 - (src5 +src8 )*6 + (src4 +src9 )*3 - (src3 +src10));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
692 src11 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
693 OP(*d, (src7 +src8 )*20 - (src6 +src9 )*6 + (src5 +src10)*3 - (src4 +src11));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
694 src12 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
695 OP(*d, (src8 +src9 )*20 - (src7 +src10)*6 + (src6 +src11)*3 - (src5 +src12));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
696 src13 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
697 OP(*d, (src9 +src10)*20 - (src8 +src11)*6 + (src7 +src12)*3 - (src6 +src13));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
698 src14 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
699 OP(*d, (src10+src11)*20 - (src9 +src12)*6 + (src8 +src13)*3 - (src7 +src14));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
700 src15 = *s; s+=srcStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
701 OP(*d, (src11+src12)*20 - (src10+src13)*6 + (src9 +src14)*3 - (src8 +src15));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
702 src16 = *s; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
703 OP(*d, (src12+src13)*20 - (src11+src14)*6 + (src10+src15)*3 - (src9 +src16));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
704 OP(*d, (src13+src14)*20 - (src12+src15)*6 + (src11+src16)*3 - (src10+src16));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
705 OP(*d, (src14+src15)*20 - (src13+src16)*6 + (src12+src16)*3 - (src11+src15));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
706 OP(*d, (src15+src16)*20 - (src14+src16)*6 + (src13+src15)*3 - (src12+src14));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
707 dst++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
708 src++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
709 }while(--w);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
710 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
711 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
712 static void OPNAME ## qpel8_mc00_c (uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
713 OPNAME ## pixels8_c(dst, src, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
714 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
715 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
716 static void OPNAME ## qpel8_mc10_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
717 uint8_t half[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
718 put ## RND ## mpeg4_qpel8_h_lowpass(half, src, 8, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
719 OPNAME ## pixels8_l2_aligned2(dst, src, half, stride, stride, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
720 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
721 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
722 static void OPNAME ## qpel8_mc20_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
723 OPNAME ## mpeg4_qpel8_h_lowpass(dst, src, stride, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
724 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
725 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
726 static void OPNAME ## qpel8_mc30_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
727 uint8_t half[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
728 put ## RND ## mpeg4_qpel8_h_lowpass(half, src, 8, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
729 OPNAME ## pixels8_l2_aligned2(dst, src+1, half, stride, stride, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
730 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
731 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
732 static void OPNAME ## qpel8_mc01_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
733 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
734 uint8_t half[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
735 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
736 put ## RND ## mpeg4_qpel8_v_lowpass(half, full, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
737 OPNAME ## pixels8_l2_aligned(dst, full, half, stride, 16, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
738 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
739 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
740 static void OPNAME ## qpel8_mc02_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
741 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
742 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
743 OPNAME ## mpeg4_qpel8_v_lowpass(dst, full, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
744 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
745 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
746 static void OPNAME ## qpel8_mc03_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
747 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
748 uint8_t half[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
749 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
750 put ## RND ## mpeg4_qpel8_v_lowpass(half, full, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
751 OPNAME ## pixels8_l2_aligned(dst, full+16, half, stride, 16, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
752 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
753 static void ff_ ## OPNAME ## qpel8_mc11_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
754 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
755 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
756 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
757 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
758 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
759 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
760 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
761 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
762 OPNAME ## pixels8_l4_aligned(dst, full, halfH, halfV, halfHV, stride, 16, 8, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
763 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
764 static void OPNAME ## qpel8_mc11_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
765 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
766 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
767 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
768 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
769 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
770 put ## RND ## pixels8_l2_aligned(halfH, halfH, full, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
771 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
772 OPNAME ## pixels8_l2_aligned(dst, halfH, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
773 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
774 static void ff_ ## OPNAME ## qpel8_mc31_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
775 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
776 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
777 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
778 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
779 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
780 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
781 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full+1, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
782 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
783 OPNAME ## pixels8_l4_aligned0(dst, full+1, halfH, halfV, halfHV, stride, 16, 8, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
784 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
785 static void OPNAME ## qpel8_mc31_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
786 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
787 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
788 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
789 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
790 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
791 put ## RND ## pixels8_l2_aligned1(halfH, halfH, full+1, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
792 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
793 OPNAME ## pixels8_l2_aligned(dst, halfH, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
794 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
795 static void ff_ ## OPNAME ## qpel8_mc13_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
796 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
797 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
798 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
799 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
800 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
801 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
802 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
803 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
804 OPNAME ## pixels8_l4_aligned(dst, full+16, halfH+8, halfV, halfHV, stride, 16, 8, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
805 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
806 static void OPNAME ## qpel8_mc13_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
807 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
808 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
809 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
810 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
811 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
812 put ## RND ## pixels8_l2_aligned(halfH, halfH, full, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
813 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
814 OPNAME ## pixels8_l2_aligned(dst, halfH+8, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
815 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
816 static void ff_ ## OPNAME ## qpel8_mc33_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
817 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
818 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
819 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
820 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
821 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
822 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full , 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
823 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full+1, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
824 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
825 OPNAME ## pixels8_l4_aligned0(dst, full+17, halfH+8, halfV, halfHV, stride, 16, 8, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
826 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
827 static void OPNAME ## qpel8_mc33_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
828 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
829 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
830 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
831 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
832 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
833 put ## RND ## pixels8_l2_aligned1(halfH, halfH, full+1, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
834 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
835 OPNAME ## pixels8_l2_aligned(dst, halfH+8, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
836 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
837 static void OPNAME ## qpel8_mc21_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
838 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
839 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
840 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, src, 8, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
841 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
842 OPNAME ## pixels8_l2_aligned(dst, halfH, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
843 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
844 static void OPNAME ## qpel8_mc23_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
845 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
846 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
847 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, src, 8, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
848 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
849 OPNAME ## pixels8_l2_aligned(dst, halfH+8, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
850 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
851 static void ff_ ## OPNAME ## qpel8_mc12_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
852 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
853 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
854 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
855 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
856 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
857 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
858 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
859 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
860 OPNAME ## pixels8_l2_aligned(dst, halfV, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
861 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
862 static void OPNAME ## qpel8_mc12_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
863 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
864 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
865 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
866 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
867 put ## RND ## pixels8_l2_aligned(halfH, halfH, full, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
868 OPNAME ## mpeg4_qpel8_v_lowpass(dst, halfH, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
869 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
870 static void ff_ ## OPNAME ## qpel8_mc32_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
871 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
872 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
873 uint8_t halfV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
874 uint8_t halfHV[64];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
875 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
876 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
877 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full+1, 8, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
878 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
879 OPNAME ## pixels8_l2_aligned(dst, halfV, halfHV, stride, 8, 8, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
880 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
881 static void OPNAME ## qpel8_mc32_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
882 uint8_t full[16*9];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
883 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
884 copy_block9(full, src, 16, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
885 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
886 put ## RND ## pixels8_l2_aligned1(halfH, halfH, full+1, 8, 8, 16, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
887 OPNAME ## mpeg4_qpel8_v_lowpass(dst, halfH, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
888 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
889 static void OPNAME ## qpel8_mc22_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
890 uint8_t halfH[72];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
891 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, src, 8, stride, 9);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
892 OPNAME ## mpeg4_qpel8_v_lowpass(dst, halfH, stride, 8);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
893 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
894 static void OPNAME ## qpel16_mc00_c (uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
895 OPNAME ## pixels16_c(dst, src, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
896 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
897 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
898 static void OPNAME ## qpel16_mc10_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
899 uint8_t half[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
900 put ## RND ## mpeg4_qpel16_h_lowpass(half, src, 16, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
901 OPNAME ## pixels16_l2_aligned2(dst, src, half, stride, stride, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
902 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
903 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
904 static void OPNAME ## qpel16_mc20_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
905 OPNAME ## mpeg4_qpel16_h_lowpass(dst, src, stride, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
906 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
907 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
908 static void OPNAME ## qpel16_mc30_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
909 uint8_t half[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
910 put ## RND ## mpeg4_qpel16_h_lowpass(half, src, 16, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
911 OPNAME ## pixels16_l2_aligned2(dst, src+1, half, stride, stride, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
912 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
913 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
914 static void OPNAME ## qpel16_mc01_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
915 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
916 uint8_t half[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
917 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
918 put ## RND ## mpeg4_qpel16_v_lowpass(half, full, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
919 OPNAME ## pixels16_l2_aligned(dst, full, half, stride, 24, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
920 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
921 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
922 static void OPNAME ## qpel16_mc02_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
923 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
924 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
925 OPNAME ## mpeg4_qpel16_v_lowpass(dst, full, stride, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
926 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
927 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
928 static void OPNAME ## qpel16_mc03_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
929 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
930 uint8_t half[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
931 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
932 put ## RND ## mpeg4_qpel16_v_lowpass(half, full, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
933 OPNAME ## pixels16_l2_aligned(dst, full+24, half, stride, 24, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
934 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
935 static void ff_ ## OPNAME ## qpel16_mc11_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
936 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
937 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
938 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
939 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
940 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
941 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
942 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
943 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
944 OPNAME ## pixels16_l4_aligned(dst, full, halfH, halfV, halfHV, stride, 24, 16, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
945 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
946 static void OPNAME ## qpel16_mc11_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
947 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
948 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
949 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
950 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
951 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
952 put ## RND ## pixels16_l2_aligned(halfH, halfH, full, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
953 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
954 OPNAME ## pixels16_l2_aligned(dst, halfH, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
955 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
956 static void ff_ ## OPNAME ## qpel16_mc31_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
957 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
958 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
959 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
960 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
961 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
962 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
963 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full+1, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
964 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
965 OPNAME ## pixels16_l4_aligned0(dst, full+1, halfH, halfV, halfHV, stride, 24, 16, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
966 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
967 static void OPNAME ## qpel16_mc31_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
968 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
969 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
970 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
971 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
972 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
973 put ## RND ## pixels16_l2_aligned1(halfH, halfH, full+1, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
974 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
975 OPNAME ## pixels16_l2_aligned(dst, halfH, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
976 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
977 static void ff_ ## OPNAME ## qpel16_mc13_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
978 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
979 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
980 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
981 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
982 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
983 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
984 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
985 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
986 OPNAME ## pixels16_l4_aligned(dst, full+24, halfH+16, halfV, halfHV, stride, 24, 16, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
987 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
988 static void OPNAME ## qpel16_mc13_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
989 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
990 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
991 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
992 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
993 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
994 put ## RND ## pixels16_l2_aligned(halfH, halfH, full, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
995 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
996 OPNAME ## pixels16_l2_aligned(dst, halfH+16, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
997 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
998 static void ff_ ## OPNAME ## qpel16_mc33_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
999 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1000 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1001 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1002 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1003 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1004 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full , 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1005 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full+1, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1006 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1007 OPNAME ## pixels16_l4_aligned0(dst, full+25, halfH+16, halfV, halfHV, stride, 24, 16, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1008 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1009 static void OPNAME ## qpel16_mc33_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1010 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1011 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1012 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1013 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1014 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1015 put ## RND ## pixels16_l2_aligned1(halfH, halfH, full+1, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1016 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1017 OPNAME ## pixels16_l2_aligned(dst, halfH+16, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1018 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1019 static void OPNAME ## qpel16_mc21_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1020 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1021 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1022 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, src, 16, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1023 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1024 OPNAME ## pixels16_l2_aligned(dst, halfH, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1025 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1026 static void OPNAME ## qpel16_mc23_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1027 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1028 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1029 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, src, 16, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1030 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1031 OPNAME ## pixels16_l2_aligned(dst, halfH+16, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1032 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1033 static void ff_ ## OPNAME ## qpel16_mc12_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1034 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1035 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1036 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1037 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1038 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1039 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1040 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1041 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1042 OPNAME ## pixels16_l2_aligned(dst, halfV, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1043 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1044 static void OPNAME ## qpel16_mc12_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1045 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1046 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1047 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1048 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1049 put ## RND ## pixels16_l2_aligned(halfH, halfH, full, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1050 OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1051 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1052 static void ff_ ## OPNAME ## qpel16_mc32_old_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1053 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1054 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1055 uint8_t halfV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1056 uint8_t halfHV[256];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1057 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1058 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1059 put ## RND ## mpeg4_qpel16_v_lowpass(halfV, full+1, 16, 24);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1060 put ## RND ## mpeg4_qpel16_v_lowpass(halfHV, halfH, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1061 OPNAME ## pixels16_l2_aligned(dst, halfV, halfHV, stride, 16, 16, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1062 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1063 static void OPNAME ## qpel16_mc32_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1064 uint8_t full[24*17];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1065 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1066 copy_block17(full, src, 24, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1067 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, full, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1068 put ## RND ## pixels16_l2_aligned1(halfH, halfH, full+1, 16, 16, 24, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1069 OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1070 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1071 static void OPNAME ## qpel16_mc22_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1072 uint8_t halfH[272];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1073 put ## RND ## mpeg4_qpel16_h_lowpass(halfH, src, 16, stride, 17);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1074 OPNAME ## mpeg4_qpel16_v_lowpass(dst, halfH, stride, 16);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1075 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1076 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1077 #define op_avg(a, b) a = (((a)+cm[((b) + 16)>>5]+1)>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1078 #define op_avg_no_rnd(a, b) a = (((a)+cm[((b) + 15)>>5])>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1079 #define op_put(a, b) a = cm[((b) + 16)>>5] |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1080 #define op_put_no_rnd(a, b) a = cm[((b) + 15)>>5] |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1081 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1082 QPEL_MC(0, put_ , _ , op_put) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1083 QPEL_MC(1, put_no_rnd_, _no_rnd_, op_put_no_rnd) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1084 QPEL_MC(0, avg_ , _ , op_avg) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1085 //QPEL_MC(1, avg_no_rnd , _ , op_avg) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1086 #undef op_avg |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1087 #undef op_avg_no_rnd |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1088 #undef op_put |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1089 #undef op_put_no_rnd |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1090 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1091 #if 1 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1092 #define H264_LOWPASS(OPNAME, OP, OP2) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1093 static inline void OPNAME ## h264_qpel_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride,int w,int h){\ |
4176 | 1094 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1095 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1096 int srcB,srcA,src0,src1,src2,src3,src4,src5,src6;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1097 uint8_t *s = src-2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1098 srcB = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1099 srcA = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1100 src0 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1101 src1 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1102 src2 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1103 src3 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1104 OP(dst[0], (src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1105 src4 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1106 OP(dst[1], (src1+src2)*20 - (src0+src3)*5 + (srcA+src4));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1107 src5 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1108 OP(dst[2], (src2+src3)*20 - (src1+src4)*5 + (src0+src5));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1109 src6 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1110 OP(dst[3], (src3+src4)*20 - (src2+src5)*5 + (src1+src6));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1111 if (w>4) { /* it optimized */ \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1112 int src7,src8,src9,src10; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1113 src7 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1114 OP(dst[4], (src4+src5)*20 - (src3+src6)*5 + (src2+src7));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1115 src8 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1116 OP(dst[5], (src5+src6)*20 - (src4+src7)*5 + (src3+src8));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1117 src9 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1118 OP(dst[6], (src6+src7)*20 - (src5+src8)*5 + (src4+src9));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1119 src10 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1120 OP(dst[7], (src7+src8)*20 - (src6+src9)*5 + (src5+src10));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1121 if (w>8) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1122 int src11,src12,src13,src14,src15,src16,src17,src18; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1123 src11 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1124 OP(dst[8] , (src8 +src9 )*20 - (src7 +src10)*5 + (src6 +src11));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1125 src12 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1126 OP(dst[9] , (src9 +src10)*20 - (src8 +src11)*5 + (src7 +src12));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1127 src13 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1128 OP(dst[10], (src10+src11)*20 - (src9 +src12)*5 + (src8 +src13));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1129 src14 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1130 OP(dst[11], (src11+src12)*20 - (src10+src13)*5 + (src9 +src14));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1131 src15 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1132 OP(dst[12], (src12+src13)*20 - (src11+src14)*5 + (src10+src15));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1133 src16 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1134 OP(dst[13], (src13+src14)*20 - (src12+src15)*5 + (src11+src16));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1135 src17 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1136 OP(dst[14], (src14+src15)*20 - (src13+src16)*5 + (src12+src17));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1137 src18 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1138 OP(dst[15], (src15+src16)*20 - (src14+src17)*5 + (src13+src18));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1139 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1140 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1141 dst+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1142 src+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1143 }while(--h);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1144 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1145 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1146 static inline void OPNAME ## h264_qpel_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride,int w,int h){\ |
4176 | 1147 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1148 do{\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1149 int srcB,srcA,src0,src1,src2,src3,src4,src5,src6;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1150 uint8_t *s = src-2*srcStride,*d=dst;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1151 srcB = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1152 srcA = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1153 src0 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1154 src1 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1155 src2 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1156 src3 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1157 OP(*d, (src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1158 src4 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1159 OP(*d, (src1+src2)*20 - (src0+src3)*5 + (srcA+src4));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1160 src5 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1161 OP(*d, (src2+src3)*20 - (src1+src4)*5 + (src0+src5));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1162 src6 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1163 OP(*d, (src3+src4)*20 - (src2+src5)*5 + (src1+src6));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1164 if (h>4) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1165 int src7,src8,src9,src10; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1166 src7 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1167 OP(*d, (src4+src5)*20 - (src3+src6)*5 + (src2+src7));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1168 src8 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1169 OP(*d, (src5+src6)*20 - (src4+src7)*5 + (src3+src8));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1170 src9 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1171 OP(*d, (src6+src7)*20 - (src5+src8)*5 + (src4+src9));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1172 src10 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1173 OP(*d, (src7+src8)*20 - (src6+src9)*5 + (src5+src10));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1174 if (h>8) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1175 int src11,src12,src13,src14,src15,src16,src17,src18; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1176 src11 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1177 OP(*d , (src8 +src9 )*20 - (src7 +src10)*5 + (src6 +src11));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1178 src12 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1179 OP(*d , (src9 +src10)*20 - (src8 +src11)*5 + (src7 +src12));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1180 src13 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1181 OP(*d, (src10+src11)*20 - (src9 +src12)*5 + (src8 +src13));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1182 src14 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1183 OP(*d, (src11+src12)*20 - (src10+src13)*5 + (src9 +src14));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1184 src15 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1185 OP(*d, (src12+src13)*20 - (src11+src14)*5 + (src10+src15));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1186 src16 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1187 OP(*d, (src13+src14)*20 - (src12+src15)*5 + (src11+src16));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1188 src17 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1189 OP(*d, (src14+src15)*20 - (src13+src16)*5 + (src12+src17));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1190 src18 = *s; s+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1191 OP(*d, (src15+src16)*20 - (src14+src17)*5 + (src13+src18));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1192 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1193 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1194 dst++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1195 src++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1196 }while(--w);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1197 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1198 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1199 static inline void OPNAME ## h264_qpel_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride,int w,int h){\ |
4176 | 1200 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP;\ |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1201 int i;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1202 src -= 2*srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1203 i= h+5; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1204 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1205 int srcB,srcA,src0,src1,src2,src3,src4,src5,src6;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1206 uint8_t *s = src-2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1207 srcB = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1208 srcA = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1209 src0 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1210 src1 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1211 src2 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1212 src3 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1213 tmp[0] = ((src0+src1)*20 - (srcA+src2)*5 + (srcB+src3));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1214 src4 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1215 tmp[1] = ((src1+src2)*20 - (src0+src3)*5 + (srcA+src4));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1216 src5 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1217 tmp[2] = ((src2+src3)*20 - (src1+src4)*5 + (src0+src5));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1218 src6 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1219 tmp[3] = ((src3+src4)*20 - (src2+src5)*5 + (src1+src6));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1220 if (w>4) { /* it optimized */ \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1221 int src7,src8,src9,src10; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1222 src7 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1223 tmp[4] = ((src4+src5)*20 - (src3+src6)*5 + (src2+src7));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1224 src8 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1225 tmp[5] = ((src5+src6)*20 - (src4+src7)*5 + (src3+src8));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1226 src9 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1227 tmp[6] = ((src6+src7)*20 - (src5+src8)*5 + (src4+src9));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1228 src10 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1229 tmp[7] = ((src7+src8)*20 - (src6+src9)*5 + (src5+src10));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1230 if (w>8) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1231 int src11,src12,src13,src14,src15,src16,src17,src18; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1232 src11 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1233 tmp[8] = ((src8 +src9 )*20 - (src7 +src10)*5 + (src6 +src11));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1234 src12 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1235 tmp[9] = ((src9 +src10)*20 - (src8 +src11)*5 + (src7 +src12));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1236 src13 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1237 tmp[10] = ((src10+src11)*20 - (src9 +src12)*5 + (src8 +src13));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1238 src14 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1239 tmp[11] = ((src11+src12)*20 - (src10+src13)*5 + (src9 +src14));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1240 src15 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1241 tmp[12] = ((src12+src13)*20 - (src11+src14)*5 + (src10+src15));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1242 src16 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1243 tmp[13] = ((src13+src14)*20 - (src12+src15)*5 + (src11+src16));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1244 src17 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1245 tmp[14] = ((src14+src15)*20 - (src13+src16)*5 + (src12+src17));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1246 src18 = *s++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1247 tmp[15] = ((src15+src16)*20 - (src14+src17)*5 + (src13+src18));\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1248 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1249 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1250 tmp+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1251 src+=srcStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1252 }while(--i);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1253 tmp -= tmpStride*(h+5-2);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1254 i = w; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1255 do {\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1256 int tmpB,tmpA,tmp0,tmp1,tmp2,tmp3,tmp4,tmp5,tmp6;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1257 int16_t *s = tmp-2*tmpStride; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1258 uint8_t *d=dst;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1259 tmpB = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1260 tmpA = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1261 tmp0 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1262 tmp1 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1263 tmp2 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1264 tmp3 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1265 OP2(*d, (tmp0+tmp1)*20 - (tmpA+tmp2)*5 + (tmpB+tmp3));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1266 tmp4 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1267 OP2(*d, (tmp1+tmp2)*20 - (tmp0+tmp3)*5 + (tmpA+tmp4));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1268 tmp5 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1269 OP2(*d, (tmp2+tmp3)*20 - (tmp1+tmp4)*5 + (tmp0+tmp5));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1270 tmp6 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1271 OP2(*d, (tmp3+tmp4)*20 - (tmp2+tmp5)*5 + (tmp1+tmp6));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1272 if (h>4) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1273 int tmp7,tmp8,tmp9,tmp10; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1274 tmp7 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1275 OP2(*d, (tmp4+tmp5)*20 - (tmp3+tmp6)*5 + (tmp2+tmp7));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1276 tmp8 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1277 OP2(*d, (tmp5+tmp6)*20 - (tmp4+tmp7)*5 + (tmp3+tmp8));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1278 tmp9 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1279 OP2(*d, (tmp6+tmp7)*20 - (tmp5+tmp8)*5 + (tmp4+tmp9));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1280 tmp10 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1281 OP2(*d, (tmp7+tmp8)*20 - (tmp6+tmp9)*5 + (tmp5+tmp10));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1282 if (h>8) { \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1283 int tmp11,tmp12,tmp13,tmp14,tmp15,tmp16,tmp17,tmp18; \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1284 tmp11 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1285 OP2(*d , (tmp8 +tmp9 )*20 - (tmp7 +tmp10)*5 + (tmp6 +tmp11));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1286 tmp12 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1287 OP2(*d , (tmp9 +tmp10)*20 - (tmp8 +tmp11)*5 + (tmp7 +tmp12));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1288 tmp13 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1289 OP2(*d, (tmp10+tmp11)*20 - (tmp9 +tmp12)*5 + (tmp8 +tmp13));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1290 tmp14 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1291 OP2(*d, (tmp11+tmp12)*20 - (tmp10+tmp13)*5 + (tmp9 +tmp14));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1292 tmp15 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1293 OP2(*d, (tmp12+tmp13)*20 - (tmp11+tmp14)*5 + (tmp10+tmp15));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1294 tmp16 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1295 OP2(*d, (tmp13+tmp14)*20 - (tmp12+tmp15)*5 + (tmp11+tmp16));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1296 tmp17 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1297 OP2(*d, (tmp14+tmp15)*20 - (tmp13+tmp16)*5 + (tmp12+tmp17));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1298 tmp18 = *s; s+=tmpStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1299 OP2(*d, (tmp15+tmp16)*20 - (tmp14+tmp17)*5 + (tmp13+tmp18));d+=dstStride;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1300 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1301 } \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1302 dst++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1303 tmp++;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1304 }while(--i);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1305 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1306 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1307 static void OPNAME ## h264_qpel4_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1308 OPNAME ## h264_qpel_h_lowpass(dst,src,dstStride,srcStride,4,4); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1309 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1310 static void OPNAME ## h264_qpel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1311 OPNAME ## h264_qpel_h_lowpass(dst,src,dstStride,srcStride,8,8); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1312 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1313 static void OPNAME ## h264_qpel16_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1314 OPNAME ## h264_qpel_h_lowpass(dst,src,dstStride,srcStride,16,16); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1315 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1316 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1317 static void OPNAME ## h264_qpel4_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1318 OPNAME ## h264_qpel_v_lowpass(dst,src,dstStride,srcStride,4,4); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1319 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1320 static void OPNAME ## h264_qpel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1321 OPNAME ## h264_qpel_v_lowpass(dst,src,dstStride,srcStride,8,8); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1322 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1323 static void OPNAME ## h264_qpel16_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1324 OPNAME ## h264_qpel_v_lowpass(dst,src,dstStride,srcStride,16,16); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1325 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1326 static void OPNAME ## h264_qpel4_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1327 OPNAME ## h264_qpel_hv_lowpass(dst,tmp,src,dstStride,tmpStride,srcStride,4,4); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1328 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1329 static void OPNAME ## h264_qpel8_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1330 OPNAME ## h264_qpel_hv_lowpass(dst,tmp,src,dstStride,tmpStride,srcStride,8,8); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1331 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1332 static void OPNAME ## h264_qpel16_hv_lowpass(uint8_t *dst, int16_t *tmp, uint8_t *src, int dstStride, int tmpStride, int srcStride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1333 OPNAME ## h264_qpel_hv_lowpass(dst,tmp,src,dstStride,tmpStride,srcStride,16,16); \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1334 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1335 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1336 #define H264_MC(OPNAME, SIZE) \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1337 static void OPNAME ## h264_qpel ## SIZE ## _mc00_c (uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1338 OPNAME ## pixels ## SIZE ## _c(dst, src, stride, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1339 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1340 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1341 static void OPNAME ## h264_qpel ## SIZE ## _mc10_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1342 uint8_t half[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1343 put_h264_qpel ## SIZE ## _h_lowpass(half, src, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1344 OPNAME ## pixels ## SIZE ## _l2_aligned2(dst, src, half, stride, stride, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1345 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1346 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1347 static void OPNAME ## h264_qpel ## SIZE ## _mc20_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1348 OPNAME ## h264_qpel ## SIZE ## _h_lowpass(dst, src, stride, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1349 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1350 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1351 static void OPNAME ## h264_qpel ## SIZE ## _mc30_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1352 uint8_t half[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1353 put_h264_qpel ## SIZE ## _h_lowpass(half, src, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1354 OPNAME ## pixels ## SIZE ## _l2_aligned2(dst, src+1, half, stride, stride, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1355 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1356 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1357 static void OPNAME ## h264_qpel ## SIZE ## _mc01_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1358 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1359 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1360 uint8_t half[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1361 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1362 put_h264_qpel ## SIZE ## _v_lowpass(half, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1363 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, full_mid, half, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1364 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1365 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1366 static void OPNAME ## h264_qpel ## SIZE ## _mc02_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1367 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1368 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1369 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1370 OPNAME ## h264_qpel ## SIZE ## _v_lowpass(dst, full_mid, stride, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1371 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1372 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1373 static void OPNAME ## h264_qpel ## SIZE ## _mc03_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1374 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1375 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1376 uint8_t half[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1377 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1378 put_h264_qpel ## SIZE ## _v_lowpass(half, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1379 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, full_mid+SIZE, half, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1380 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1381 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1382 static void OPNAME ## h264_qpel ## SIZE ## _mc11_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1383 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1384 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1385 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1386 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1387 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1388 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1389 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1390 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1391 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1392 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1393 static void OPNAME ## h264_qpel ## SIZE ## _mc31_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1394 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1395 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1396 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1397 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1398 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1399 copy_block ## SIZE (full, src - stride*2 + 1, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1400 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1401 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1402 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1403 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1404 static void OPNAME ## h264_qpel ## SIZE ## _mc13_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1405 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1406 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1407 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1408 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1409 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src + stride, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1410 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1411 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1412 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1413 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1414 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1415 static void OPNAME ## h264_qpel ## SIZE ## _mc33_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1416 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1417 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1418 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1419 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1420 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src + stride, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1421 copy_block ## SIZE (full, src - stride*2 + 1, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1422 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1423 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1424 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1425 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1426 static void OPNAME ## h264_qpel ## SIZE ## _mc22_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1427 int16_t tmp[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1428 OPNAME ## h264_qpel ## SIZE ## _hv_lowpass(dst, tmp, src, stride, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1429 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1430 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1431 static void OPNAME ## h264_qpel ## SIZE ## _mc21_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1432 int16_t tmp[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1433 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1434 uint8_t halfHV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1435 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1436 put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1437 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfHV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1438 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1439 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1440 static void OPNAME ## h264_qpel ## SIZE ## _mc23_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1441 int16_t tmp[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1442 uint8_t halfH[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1443 uint8_t halfHV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1444 put_h264_qpel ## SIZE ## _h_lowpass(halfH, src + stride, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1445 put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1446 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfH, halfHV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1447 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1448 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1449 static void OPNAME ## h264_qpel ## SIZE ## _mc12_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1450 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1451 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1452 int16_t tmp[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1453 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1454 uint8_t halfHV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1455 copy_block ## SIZE (full, src - stride*2, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1456 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1457 put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1458 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfV, halfHV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1459 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1460 \ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1461 static void OPNAME ## h264_qpel ## SIZE ## _mc32_c(uint8_t *dst, uint8_t *src, int stride){\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1462 uint8_t full[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1463 uint8_t * const full_mid= full + SIZE*2;\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1464 int16_t tmp[SIZE*(SIZE+5)];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1465 uint8_t halfV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1466 uint8_t halfHV[SIZE*SIZE];\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1467 copy_block ## SIZE (full, src - stride*2 + 1, SIZE, stride, SIZE + 5);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1468 put_h264_qpel ## SIZE ## _v_lowpass(halfV, full_mid, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1469 put_h264_qpel ## SIZE ## _hv_lowpass(halfHV, tmp, src, SIZE, SIZE, stride);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1470 OPNAME ## pixels ## SIZE ## _l2_aligned(dst, halfV, halfHV, stride, SIZE, SIZE, SIZE);\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1471 }\ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1472 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1473 #define op_avg(a, b) a = (((a)+cm[((b) + 16)>>5]+1)>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1474 //#define op_avg2(a, b) a = (((a)*w1+cm[((b) + 16)>>5]*w2 + o + 64)>>7) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1475 #define op_put(a, b) a = cm[((b) + 16)>>5] |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1476 #define op2_avg(a, b) a = (((a)+cm[((b) + 512)>>10]+1)>>1) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1477 #define op2_put(a, b) a = cm[((b) + 512)>>10] |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1478 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1479 H264_LOWPASS(put_ , op_put, op2_put) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1480 H264_LOWPASS(avg_ , op_avg, op2_avg) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1481 H264_MC(put_, 4) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1482 H264_MC(put_, 8) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1483 H264_MC(put_, 16) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1484 H264_MC(avg_, 4) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1485 H264_MC(avg_, 8) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1486 H264_MC(avg_, 16) |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1487 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1488 #undef op_avg |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1489 #undef op_put |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1490 #undef op2_avg |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1491 #undef op2_put |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1492 #endif |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1493 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1494 static void wmv2_mspel8_h_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h){ |
4176 | 1495 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1496 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1497 do{ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1498 int src_1,src0,src1,src2,src3,src4,src5,src6,src7,src8,src9; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1499 uint8_t *s = src; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1500 src_1 = s[-1]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1501 src0 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1502 src1 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1503 src2 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1504 dst[0]= cm[(9*(src0 + src1) - (src_1 + src2) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1505 src3 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1506 dst[1]= cm[(9*(src1 + src2) - (src0 + src3) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1507 src4 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1508 dst[2]= cm[(9*(src2 + src3) - (src1 + src4) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1509 src5 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1510 dst[3]= cm[(9*(src3 + src4) - (src2 + src5) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1511 src6 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1512 dst[4]= cm[(9*(src4 + src5) - (src3 + src6) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1513 src7 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1514 dst[5]= cm[(9*(src5 + src6) - (src4 + src7) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1515 src8 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1516 dst[6]= cm[(9*(src6 + src7) - (src5 + src8) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1517 src9 = *s++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1518 dst[7]= cm[(9*(src7 + src8) - (src6 + src9) + 8)>>4]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1519 dst+=dstStride; |
2967 | 1520 src+=srcStride; |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1521 }while(--h); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1522 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1523 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1524 static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){ |
4176 | 1525 uint8_t *cm = ff_cropTbl + MAX_NEG_CROP; |
1262
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1526 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1527 do{ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1528 int src_1,src0,src1,src2,src3,src4,src5,src6,src7,src8,src9; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1529 uint8_t *s = src,*d = dst; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1530 src_1 = *(s-srcStride); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1531 src0 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1532 src1 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1533 src2 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1534 *d= cm[(9*(src0 + src1) - (src_1 + src2) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1535 src3 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1536 *d= cm[(9*(src1 + src2) - (src0 + src3) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1537 src4 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1538 *d= cm[(9*(src2 + src3) - (src1 + src4) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1539 src5 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1540 *d= cm[(9*(src3 + src4) - (src2 + src5) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1541 src6 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1542 *d= cm[(9*(src4 + src5) - (src3 + src6) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1543 src7 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1544 *d= cm[(9*(src5 + src6) - (src4 + src7) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1545 src8 = *s; s+=srcStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1546 *d= cm[(9*(src6 + src7) - (src5 + src8) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1547 src9 = *s; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1548 *d= cm[(9*(src7 + src8) - (src6 + src9) + 8)>>4]; d+=dstStride; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1549 src++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1550 dst++; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1551 }while(--w); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1552 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1553 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1554 static void put_mspel8_mc00_c (uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1555 put_pixels8_c(dst, src, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1556 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1557 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1558 static void put_mspel8_mc10_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1559 uint8_t half[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1560 wmv2_mspel8_h_lowpass(half, src, 8, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1561 put_pixels8_l2_aligned2(dst, src, half, stride, stride, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1562 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1563 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1564 static void put_mspel8_mc20_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1565 wmv2_mspel8_h_lowpass(dst, src, stride, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1566 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1567 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1568 static void put_mspel8_mc30_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1569 uint8_t half[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1570 wmv2_mspel8_h_lowpass(half, src, 8, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1571 put_pixels8_l2_aligned2(dst, src+1, half, stride, stride, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1572 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1573 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1574 static void put_mspel8_mc02_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1575 wmv2_mspel8_v_lowpass(dst, src, stride, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1576 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1577 |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1578 static void put_mspel8_mc12_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1579 uint8_t halfH[88]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1580 uint8_t halfV[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1581 uint8_t halfHV[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1582 wmv2_mspel8_h_lowpass(halfH, src-stride, 8, stride, 11); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1583 wmv2_mspel8_v_lowpass(halfV, src, 8, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1584 wmv2_mspel8_v_lowpass(halfHV, halfH+8, 8, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1585 put_pixels8_l2_aligned(dst, halfV, halfHV, stride, 8, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1586 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1587 static void put_mspel8_mc32_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1588 uint8_t halfH[88]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1589 uint8_t halfV[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1590 uint8_t halfHV[64]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1591 wmv2_mspel8_h_lowpass(halfH, src-stride, 8, stride, 11); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1592 wmv2_mspel8_v_lowpass(halfV, src+1, 8, stride, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1593 wmv2_mspel8_v_lowpass(halfHV, halfH+8, 8, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1594 put_pixels8_l2_aligned(dst, halfV, halfHV, stride, 8, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1595 } |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1596 static void put_mspel8_mc22_c(uint8_t *dst, uint8_t *src, int stride){ |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1597 uint8_t halfH[88]; |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1598 wmv2_mspel8_h_lowpass(halfH, src-stride, 8, stride, 11); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1599 wmv2_mspel8_v_lowpass(dst, halfH+8, stride, 8, 8); |
82e0e1b9c283
aligned dsputil (for sh4) patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
diff
changeset
|
1600 } |