]> git.sesse.net Git - ffmpeg/blob - libavcodec/dsputil_template.c
Merge commit '2c10e2a2f62477efaef5b641974594f7df4ca339'
[ffmpeg] / libavcodec / dsputil_template.c
1 /*
2  * DSP utils
3  * Copyright (c) 2000, 2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * gmc & q-pel & 32/64 bit based MC by Michael Niedermayer <michaelni@gmx.at>
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24
25 /**
26  * @file
27  * DSP utils
28  */
29
30 #include "bit_depth_template.c"
31
32 static inline void FUNC(copy_block2)(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h)
33 {
34     int i;
35     for(i=0; i<h; i++)
36     {
37         AV_WN2P(dst   , AV_RN2P(src   ));
38         dst+=dstStride;
39         src+=srcStride;
40     }
41 }
42
43 static inline void FUNC(copy_block4)(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h)
44 {
45     int i;
46     for(i=0; i<h; i++)
47     {
48         AV_WN4P(dst   , AV_RN4P(src   ));
49         dst+=dstStride;
50         src+=srcStride;
51     }
52 }
53
54 static inline void FUNC(copy_block8)(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h)
55 {
56     int i;
57     for(i=0; i<h; i++)
58     {
59         AV_WN4P(dst                , AV_RN4P(src                ));
60         AV_WN4P(dst+4*sizeof(pixel), AV_RN4P(src+4*sizeof(pixel)));
61         dst+=dstStride;
62         src+=srcStride;
63     }
64 }
65
66 static inline void FUNC(copy_block16)(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride, int h)
67 {
68     int i;
69     for(i=0; i<h; i++)
70     {
71         AV_WN4P(dst                 , AV_RN4P(src                 ));
72         AV_WN4P(dst+ 4*sizeof(pixel), AV_RN4P(src+ 4*sizeof(pixel)));
73         AV_WN4P(dst+ 8*sizeof(pixel), AV_RN4P(src+ 8*sizeof(pixel)));
74         AV_WN4P(dst+12*sizeof(pixel), AV_RN4P(src+12*sizeof(pixel)));
75         dst+=dstStride;
76         src+=srcStride;
77     }
78 }
79
80 /* draw the edges of width 'w' of an image of size width, height */
81 //FIXME check that this is ok for mpeg4 interlaced
82 static void FUNCC(draw_edges)(uint8_t *p_buf, int p_wrap, int width, int height, int w, int h, int sides)
83 {
84     pixel *buf = (pixel*)p_buf;
85     int wrap = p_wrap / sizeof(pixel);
86     pixel *ptr, *last_line;
87     int i;
88
89     /* left and right */
90     ptr = buf;
91     for(i=0;i<height;i++) {
92 #if BIT_DEPTH > 8
93         int j;
94         for (j = 0; j < w; j++) {
95             ptr[j-w] = ptr[0];
96             ptr[j+width] = ptr[width-1];
97         }
98 #else
99         memset(ptr - w, ptr[0], w);
100         memset(ptr + width, ptr[width-1], w);
101 #endif
102         ptr += wrap;
103     }
104
105     /* top and bottom + corners */
106     buf -= w;
107     last_line = buf + (height - 1) * wrap;
108     if (sides & EDGE_TOP)
109         for(i = 0; i < h; i++)
110             memcpy(buf - (i + 1) * wrap, buf, (width + w + w) * sizeof(pixel)); // top
111     if (sides & EDGE_BOTTOM)
112         for (i = 0; i < h; i++)
113             memcpy(last_line + (i + 1) * wrap, last_line, (width + w + w) * sizeof(pixel)); // bottom
114 }
115
116 #define DCTELEM_FUNCS(dctcoef, suffix)                                  \
117 static void FUNCC(get_pixels ## suffix)(int16_t *av_restrict _block,    \
118                                         const uint8_t *_pixels,         \
119                                         int line_size)                  \
120 {                                                                       \
121     const pixel *pixels = (const pixel *) _pixels;                      \
122     dctcoef *av_restrict block = (dctcoef *) _block;                    \
123     int i;                                                              \
124                                                                         \
125     /* read the pixels */                                               \
126     for(i=0;i<8;i++) {                                                  \
127         block[0] = pixels[0];                                           \
128         block[1] = pixels[1];                                           \
129         block[2] = pixels[2];                                           \
130         block[3] = pixels[3];                                           \
131         block[4] = pixels[4];                                           \
132         block[5] = pixels[5];                                           \
133         block[6] = pixels[6];                                           \
134         block[7] = pixels[7];                                           \
135         pixels += line_size / sizeof(pixel);                            \
136         block += 8;                                                     \
137     }                                                                   \
138 }                                                                       \
139                                                                         \
140 static void FUNCC(add_pixels8 ## suffix)(uint8_t *av_restrict _pixels,  \
141                                          int16_t *_block,               \
142                                          int line_size)                 \
143 {                                                                       \
144     int i;                                                              \
145     pixel *av_restrict pixels = (pixel *av_restrict)_pixels;            \
146     dctcoef *block = (dctcoef*)_block;                                  \
147     line_size /= sizeof(pixel);                                         \
148                                                                         \
149     for(i=0;i<8;i++) {                                                  \
150         pixels[0] += block[0];                                          \
151         pixels[1] += block[1];                                          \
152         pixels[2] += block[2];                                          \
153         pixels[3] += block[3];                                          \
154         pixels[4] += block[4];                                          \
155         pixels[5] += block[5];                                          \
156         pixels[6] += block[6];                                          \
157         pixels[7] += block[7];                                          \
158         pixels += line_size;                                            \
159         block += 8;                                                     \
160     }                                                                   \
161 }                                                                       \
162                                                                         \
163 static void FUNCC(add_pixels4 ## suffix)(uint8_t *av_restrict _pixels,  \
164                                          int16_t *_block,               \
165                                          int line_size)                 \
166 {                                                                       \
167     int i;                                                              \
168     pixel *av_restrict pixels = (pixel *av_restrict)_pixels;            \
169     dctcoef *block = (dctcoef*)_block;                                  \
170     line_size /= sizeof(pixel);                                         \
171                                                                         \
172     for(i=0;i<4;i++) {                                                  \
173         pixels[0] += block[0];                                          \
174         pixels[1] += block[1];                                          \
175         pixels[2] += block[2];                                          \
176         pixels[3] += block[3];                                          \
177         pixels += line_size;                                            \
178         block += 4;                                                     \
179     }                                                                   \
180 }                                                                       \
181                                                                         \
182 static void FUNCC(clear_block ## suffix)(int16_t *block)                \
183 {                                                                       \
184     memset(block, 0, sizeof(dctcoef)*64);                               \
185 }                                                                       \
186                                                                         \
187 /**                                                                     \
188  * memset(blocks, 0, sizeof(int16_t)*6*64)                              \
189  */                                                                     \
190 static void FUNCC(clear_blocks ## suffix)(int16_t *blocks)              \
191 {                                                                       \
192     memset(blocks, 0, sizeof(dctcoef)*6*64);                            \
193 }
194
195 DCTELEM_FUNCS(int16_t, _16)
196 #if BIT_DEPTH > 8
197 DCTELEM_FUNCS(dctcoef, _32)
198 #endif
199
200 #include "hpel_template.c"
201
202 #define PIXOP2(OPNAME, OP) \
203 static inline void FUNC(OPNAME ## _no_rnd_pixels8_l2)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, \
204                                                 int src_stride1, int src_stride2, int h){\
205     int i;\
206     for(i=0; i<h; i++){\
207         pixel4 a,b;\
208         a= AV_RN4P(&src1[i*src_stride1  ]);\
209         b= AV_RN4P(&src2[i*src_stride2  ]);\
210         OP(*((pixel4*)&dst[i*dst_stride  ]), no_rnd_avg_pixel4(a, b));\
211         a= AV_RN4P(&src1[i*src_stride1+4*sizeof(pixel)]);\
212         b= AV_RN4P(&src2[i*src_stride2+4*sizeof(pixel)]);\
213         OP(*((pixel4*)&dst[i*dst_stride+4*sizeof(pixel)]), no_rnd_avg_pixel4(a, b));\
214     }\
215 }\
216 \
217 static inline void FUNC(OPNAME ## _no_rnd_pixels16_l2)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int dst_stride, \
218                                                 int src_stride1, int src_stride2, int h){\
219     FUNC(OPNAME ## _no_rnd_pixels8_l2)(dst  , src1  , src2  , dst_stride, src_stride1, src_stride2, h);\
220     FUNC(OPNAME ## _no_rnd_pixels8_l2)(dst+8*sizeof(pixel), src1+8*sizeof(pixel), src2+8*sizeof(pixel), dst_stride, src_stride1, src_stride2, h);\
221 }\
222 \
223 static inline void FUNCC(OPNAME ## _no_rnd_pixels8_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
224     FUNC(OPNAME ## _no_rnd_pixels8_l2)(block, pixels, pixels+sizeof(pixel), line_size, line_size, line_size, h);\
225 }\
226 \
227 static inline void FUNCC(OPNAME ## _pixels8_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
228     FUNC(OPNAME ## _pixels8_l2)(block, pixels, pixels+sizeof(pixel), line_size, line_size, line_size, h);\
229 }\
230 \
231 static inline void FUNCC(OPNAME ## _no_rnd_pixels8_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
232     FUNC(OPNAME ## _no_rnd_pixels8_l2)(block, pixels, pixels+line_size, line_size, line_size, line_size, h);\
233 }\
234 \
235 static inline void FUNCC(OPNAME ## _pixels8_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
236     FUNC(OPNAME ## _pixels8_l2)(block, pixels, pixels+line_size, line_size, line_size, line_size, h);\
237 }\
238 \
239 static inline void FUNC(OPNAME ## _pixels8_l4)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, const uint8_t *src3, const uint8_t *src4,\
240                  int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\
241     /* FIXME HIGH BIT DEPTH */\
242     int i;\
243     for(i=0; i<h; i++){\
244         uint32_t a, b, c, d, l0, l1, h0, h1;\
245         a= AV_RN32(&src1[i*src_stride1]);\
246         b= AV_RN32(&src2[i*src_stride2]);\
247         c= AV_RN32(&src3[i*src_stride3]);\
248         d= AV_RN32(&src4[i*src_stride4]);\
249         l0=  (a&0x03030303UL)\
250            + (b&0x03030303UL)\
251            + 0x02020202UL;\
252         h0= ((a&0xFCFCFCFCUL)>>2)\
253           + ((b&0xFCFCFCFCUL)>>2);\
254         l1=  (c&0x03030303UL)\
255            + (d&0x03030303UL);\
256         h1= ((c&0xFCFCFCFCUL)>>2)\
257           + ((d&0xFCFCFCFCUL)>>2);\
258         OP(*((uint32_t*)&dst[i*dst_stride]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
259         a= AV_RN32(&src1[i*src_stride1+4]);\
260         b= AV_RN32(&src2[i*src_stride2+4]);\
261         c= AV_RN32(&src3[i*src_stride3+4]);\
262         d= AV_RN32(&src4[i*src_stride4+4]);\
263         l0=  (a&0x03030303UL)\
264            + (b&0x03030303UL)\
265            + 0x02020202UL;\
266         h0= ((a&0xFCFCFCFCUL)>>2)\
267           + ((b&0xFCFCFCFCUL)>>2);\
268         l1=  (c&0x03030303UL)\
269            + (d&0x03030303UL);\
270         h1= ((c&0xFCFCFCFCUL)>>2)\
271           + ((d&0xFCFCFCFCUL)>>2);\
272         OP(*((uint32_t*)&dst[i*dst_stride+4]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
273     }\
274 }\
275 \
276 static inline void FUNCC(OPNAME ## _pixels4_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
277     FUNC(OPNAME ## _pixels4_l2)(block, pixels, pixels+sizeof(pixel), line_size, line_size, line_size, h);\
278 }\
279 \
280 static inline void FUNCC(OPNAME ## _pixels4_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
281     FUNC(OPNAME ## _pixels4_l2)(block, pixels, pixels+line_size, line_size, line_size, line_size, h);\
282 }\
283 \
284 static inline void FUNCC(OPNAME ## _pixels2_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
285     FUNC(OPNAME ## _pixels2_l2)(block, pixels, pixels+sizeof(pixel), line_size, line_size, line_size, h);\
286 }\
287 \
288 static inline void FUNCC(OPNAME ## _pixels2_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
289     FUNC(OPNAME ## _pixels2_l2)(block, pixels, pixels+line_size, line_size, line_size, line_size, h);\
290 }\
291 \
292 static inline void FUNC(OPNAME ## _no_rnd_pixels8_l4)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, const uint8_t *src3, const uint8_t *src4,\
293                  int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\
294     /* FIXME HIGH BIT DEPTH*/\
295     int i;\
296     for(i=0; i<h; i++){\
297         uint32_t a, b, c, d, l0, l1, h0, h1;\
298         a= AV_RN32(&src1[i*src_stride1]);\
299         b= AV_RN32(&src2[i*src_stride2]);\
300         c= AV_RN32(&src3[i*src_stride3]);\
301         d= AV_RN32(&src4[i*src_stride4]);\
302         l0=  (a&0x03030303UL)\
303            + (b&0x03030303UL)\
304            + 0x01010101UL;\
305         h0= ((a&0xFCFCFCFCUL)>>2)\
306           + ((b&0xFCFCFCFCUL)>>2);\
307         l1=  (c&0x03030303UL)\
308            + (d&0x03030303UL);\
309         h1= ((c&0xFCFCFCFCUL)>>2)\
310           + ((d&0xFCFCFCFCUL)>>2);\
311         OP(*((uint32_t*)&dst[i*dst_stride]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
312         a= AV_RN32(&src1[i*src_stride1+4]);\
313         b= AV_RN32(&src2[i*src_stride2+4]);\
314         c= AV_RN32(&src3[i*src_stride3+4]);\
315         d= AV_RN32(&src4[i*src_stride4+4]);\
316         l0=  (a&0x03030303UL)\
317            + (b&0x03030303UL)\
318            + 0x01010101UL;\
319         h0= ((a&0xFCFCFCFCUL)>>2)\
320           + ((b&0xFCFCFCFCUL)>>2);\
321         l1=  (c&0x03030303UL)\
322            + (d&0x03030303UL);\
323         h1= ((c&0xFCFCFCFCUL)>>2)\
324           + ((d&0xFCFCFCFCUL)>>2);\
325         OP(*((uint32_t*)&dst[i*dst_stride+4]), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
326     }\
327 }\
328 static inline void FUNC(OPNAME ## _pixels16_l4)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, const uint8_t *src3, const uint8_t *src4,\
329                  int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\
330     FUNC(OPNAME ## _pixels8_l4)(dst  , src1  , src2  , src3  , src4  , dst_stride, src_stride1, src_stride2, src_stride3, src_stride4, h);\
331     FUNC(OPNAME ## _pixels8_l4)(dst+8*sizeof(pixel), src1+8*sizeof(pixel), src2+8*sizeof(pixel), src3+8*sizeof(pixel), src4+8*sizeof(pixel), dst_stride, src_stride1, src_stride2, src_stride3, src_stride4, h);\
332 }\
333 static inline void FUNC(OPNAME ## _no_rnd_pixels16_l4)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, const uint8_t *src3, const uint8_t *src4,\
334                  int dst_stride, int src_stride1, int src_stride2,int src_stride3,int src_stride4, int h){\
335     FUNC(OPNAME ## _no_rnd_pixels8_l4)(dst  , src1  , src2  , src3  , src4  , dst_stride, src_stride1, src_stride2, src_stride3, src_stride4, h);\
336     FUNC(OPNAME ## _no_rnd_pixels8_l4)(dst+8*sizeof(pixel), src1+8*sizeof(pixel), src2+8*sizeof(pixel), src3+8*sizeof(pixel), src4+8*sizeof(pixel), dst_stride, src_stride1, src_stride2, src_stride3, src_stride4, h);\
337 }\
338 \
339 static inline void FUNCC(OPNAME ## _pixels2_xy2)(uint8_t *p_block, const uint8_t *p_pixels, int line_size, int h)\
340 {\
341         int i, a0, b0, a1, b1;\
342         pixel *block = (pixel*)p_block;\
343         const pixel *pixels = (const pixel*)p_pixels;\
344         line_size >>= sizeof(pixel)-1;\
345         a0= pixels[0];\
346         b0= pixels[1] + 2;\
347         a0 += b0;\
348         b0 += pixels[2];\
349 \
350         pixels+=line_size;\
351         for(i=0; i<h; i+=2){\
352             a1= pixels[0];\
353             b1= pixels[1];\
354             a1 += b1;\
355             b1 += pixels[2];\
356 \
357             block[0]= (a1+a0)>>2; /* FIXME non put */\
358             block[1]= (b1+b0)>>2;\
359 \
360             pixels+=line_size;\
361             block +=line_size;\
362 \
363             a0= pixels[0];\
364             b0= pixels[1] + 2;\
365             a0 += b0;\
366             b0 += pixels[2];\
367 \
368             block[0]= (a1+a0)>>2;\
369             block[1]= (b1+b0)>>2;\
370             pixels+=line_size;\
371             block +=line_size;\
372         }\
373 }\
374 \
375 static inline void FUNCC(OPNAME ## _pixels4_xy2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
376 {\
377         /* FIXME HIGH BIT DEPTH */\
378         int i;\
379         const uint32_t a= AV_RN32(pixels  );\
380         const uint32_t b= AV_RN32(pixels+1);\
381         uint32_t l0=  (a&0x03030303UL)\
382                     + (b&0x03030303UL)\
383                     + 0x02020202UL;\
384         uint32_t h0= ((a&0xFCFCFCFCUL)>>2)\
385                    + ((b&0xFCFCFCFCUL)>>2);\
386         uint32_t l1,h1;\
387 \
388         pixels+=line_size;\
389         for(i=0; i<h; i+=2){\
390             uint32_t a= AV_RN32(pixels  );\
391             uint32_t b= AV_RN32(pixels+1);\
392             l1=  (a&0x03030303UL)\
393                + (b&0x03030303UL);\
394             h1= ((a&0xFCFCFCFCUL)>>2)\
395               + ((b&0xFCFCFCFCUL)>>2);\
396             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
397             pixels+=line_size;\
398             block +=line_size;\
399             a= AV_RN32(pixels  );\
400             b= AV_RN32(pixels+1);\
401             l0=  (a&0x03030303UL)\
402                + (b&0x03030303UL)\
403                + 0x02020202UL;\
404             h0= ((a&0xFCFCFCFCUL)>>2)\
405               + ((b&0xFCFCFCFCUL)>>2);\
406             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
407             pixels+=line_size;\
408             block +=line_size;\
409         }\
410 }\
411 \
412 static inline void FUNCC(OPNAME ## _pixels8_xy2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
413 {\
414     /* FIXME HIGH BIT DEPTH */\
415     int j;\
416     for(j=0; j<2; j++){\
417         int i;\
418         const uint32_t a= AV_RN32(pixels  );\
419         const uint32_t b= AV_RN32(pixels+1);\
420         uint32_t l0=  (a&0x03030303UL)\
421                     + (b&0x03030303UL)\
422                     + 0x02020202UL;\
423         uint32_t h0= ((a&0xFCFCFCFCUL)>>2)\
424                    + ((b&0xFCFCFCFCUL)>>2);\
425         uint32_t l1,h1;\
426 \
427         pixels+=line_size;\
428         for(i=0; i<h; i+=2){\
429             uint32_t a= AV_RN32(pixels  );\
430             uint32_t b= AV_RN32(pixels+1);\
431             l1=  (a&0x03030303UL)\
432                + (b&0x03030303UL);\
433             h1= ((a&0xFCFCFCFCUL)>>2)\
434               + ((b&0xFCFCFCFCUL)>>2);\
435             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
436             pixels+=line_size;\
437             block +=line_size;\
438             a= AV_RN32(pixels  );\
439             b= AV_RN32(pixels+1);\
440             l0=  (a&0x03030303UL)\
441                + (b&0x03030303UL)\
442                + 0x02020202UL;\
443             h0= ((a&0xFCFCFCFCUL)>>2)\
444               + ((b&0xFCFCFCFCUL)>>2);\
445             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
446             pixels+=line_size;\
447             block +=line_size;\
448         }\
449         pixels+=4-line_size*(h+1);\
450         block +=4-line_size*h;\
451     }\
452 }\
453 \
454 static inline void FUNCC(OPNAME ## _no_rnd_pixels8_xy2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)\
455 {\
456     /* FIXME HIGH BIT DEPTH */\
457     int j;\
458     for(j=0; j<2; j++){\
459         int i;\
460         const uint32_t a= AV_RN32(pixels  );\
461         const uint32_t b= AV_RN32(pixels+1);\
462         uint32_t l0=  (a&0x03030303UL)\
463                     + (b&0x03030303UL)\
464                     + 0x01010101UL;\
465         uint32_t h0= ((a&0xFCFCFCFCUL)>>2)\
466                    + ((b&0xFCFCFCFCUL)>>2);\
467         uint32_t l1,h1;\
468 \
469         pixels+=line_size;\
470         for(i=0; i<h; i+=2){\
471             uint32_t a= AV_RN32(pixels  );\
472             uint32_t b= AV_RN32(pixels+1);\
473             l1=  (a&0x03030303UL)\
474                + (b&0x03030303UL);\
475             h1= ((a&0xFCFCFCFCUL)>>2)\
476               + ((b&0xFCFCFCFCUL)>>2);\
477             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
478             pixels+=line_size;\
479             block +=line_size;\
480             a= AV_RN32(pixels  );\
481             b= AV_RN32(pixels+1);\
482             l0=  (a&0x03030303UL)\
483                + (b&0x03030303UL)\
484                + 0x01010101UL;\
485             h0= ((a&0xFCFCFCFCUL)>>2)\
486               + ((b&0xFCFCFCFCUL)>>2);\
487             OP(*((uint32_t*)block), h0+h1+(((l0+l1)>>2)&0x0F0F0F0FUL));\
488             pixels+=line_size;\
489             block +=line_size;\
490         }\
491         pixels+=4-line_size*(h+1);\
492         block +=4-line_size*h;\
493     }\
494 }\
495 \
496 CALL_2X_PIXELS(FUNCC(OPNAME ## _pixels16_x2) , FUNCC(OPNAME ## _pixels8_x2) , 8*sizeof(pixel))\
497 CALL_2X_PIXELS(FUNCC(OPNAME ## _pixels16_y2) , FUNCC(OPNAME ## _pixels8_y2) , 8*sizeof(pixel))\
498 CALL_2X_PIXELS(FUNCC(OPNAME ## _pixels16_xy2), FUNCC(OPNAME ## _pixels8_xy2), 8*sizeof(pixel))\
499 av_unused CALL_2X_PIXELS(FUNCC(OPNAME ## _no_rnd_pixels16)    , FUNCC(OPNAME ## _pixels8) , 8*sizeof(pixel))\
500 CALL_2X_PIXELS(FUNCC(OPNAME ## _no_rnd_pixels16_x2) , FUNCC(OPNAME ## _no_rnd_pixels8_x2) , 8*sizeof(pixel))\
501 CALL_2X_PIXELS(FUNCC(OPNAME ## _no_rnd_pixels16_y2) , FUNCC(OPNAME ## _no_rnd_pixels8_y2) , 8*sizeof(pixel))\
502 CALL_2X_PIXELS(FUNCC(OPNAME ## _no_rnd_pixels16_xy2), FUNCC(OPNAME ## _no_rnd_pixels8_xy2), 8*sizeof(pixel))\
503
504 #define op_avg(a, b) a = rnd_avg_pixel4(a, b)
505 #define op_put(a, b) a = b
506 #if BIT_DEPTH == 8
507 #define put_no_rnd_pixels8_8_c put_pixels8_8_c
508 PIXOP2(avg, op_avg)
509 PIXOP2(put, op_put)
510 #endif
511 #undef op_avg
512 #undef op_put
513
514 #define H264_CHROMA_MC(OPNAME, OP)\
515 static void FUNCC(OPNAME ## h264_chroma_mc2)(uint8_t *p_dst/*align 8*/, uint8_t *p_src/*align 1*/, int stride, int h, int x, int y){\
516     pixel *dst = (pixel*)p_dst;\
517     pixel *src = (pixel*)p_src;\
518     const int A=(8-x)*(8-y);\
519     const int B=(  x)*(8-y);\
520     const int C=(8-x)*(  y);\
521     const int D=(  x)*(  y);\
522     int i;\
523     stride >>= sizeof(pixel)-1;\
524     \
525     av_assert2(x<8 && y<8 && x>=0 && y>=0);\
526 \
527     if(D){\
528         for(i=0; i<h; i++){\
529             OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));\
530             OP(dst[1], (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2]));\
531             dst+= stride;\
532             src+= stride;\
533         }\
534     }else{\
535         const int E= B+C;\
536         const int step= C ? stride : 1;\
537         for(i=0; i<h; i++){\
538             OP(dst[0], (A*src[0] + E*src[step+0]));\
539             OP(dst[1], (A*src[1] + E*src[step+1]));\
540             dst+= stride;\
541             src+= stride;\
542         }\
543     }\
544 }\
545 \
546 static void FUNCC(OPNAME ## h264_chroma_mc4)(uint8_t *p_dst/*align 8*/, uint8_t *p_src/*align 1*/, int stride, int h, int x, int y){\
547     pixel *dst = (pixel*)p_dst;\
548     pixel *src = (pixel*)p_src;\
549     const int A=(8-x)*(8-y);\
550     const int B=(  x)*(8-y);\
551     const int C=(8-x)*(  y);\
552     const int D=(  x)*(  y);\
553     int i;\
554     stride >>= sizeof(pixel)-1;\
555     \
556     av_assert2(x<8 && y<8 && x>=0 && y>=0);\
557 \
558     if(D){\
559         for(i=0; i<h; i++){\
560             OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));\
561             OP(dst[1], (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2]));\
562             OP(dst[2], (A*src[2] + B*src[3] + C*src[stride+2] + D*src[stride+3]));\
563             OP(dst[3], (A*src[3] + B*src[4] + C*src[stride+3] + D*src[stride+4]));\
564             dst+= stride;\
565             src+= stride;\
566         }\
567     }else{\
568         const int E= B+C;\
569         const int step= C ? stride : 1;\
570         for(i=0; i<h; i++){\
571             OP(dst[0], (A*src[0] + E*src[step+0]));\
572             OP(dst[1], (A*src[1] + E*src[step+1]));\
573             OP(dst[2], (A*src[2] + E*src[step+2]));\
574             OP(dst[3], (A*src[3] + E*src[step+3]));\
575             dst+= stride;\
576             src+= stride;\
577         }\
578     }\
579 }\
580 \
581 static void FUNCC(OPNAME ## h264_chroma_mc8)(uint8_t *p_dst/*align 8*/, uint8_t *p_src/*align 1*/, int stride, int h, int x, int y){\
582     pixel *dst = (pixel*)p_dst;\
583     pixel *src = (pixel*)p_src;\
584     const int A=(8-x)*(8-y);\
585     const int B=(  x)*(8-y);\
586     const int C=(8-x)*(  y);\
587     const int D=(  x)*(  y);\
588     int i;\
589     stride >>= sizeof(pixel)-1;\
590     \
591     av_assert2(x<8 && y<8 && x>=0 && y>=0);\
592 \
593     if(D){\
594         for(i=0; i<h; i++){\
595             OP(dst[0], (A*src[0] + B*src[1] + C*src[stride+0] + D*src[stride+1]));\
596             OP(dst[1], (A*src[1] + B*src[2] + C*src[stride+1] + D*src[stride+2]));\
597             OP(dst[2], (A*src[2] + B*src[3] + C*src[stride+2] + D*src[stride+3]));\
598             OP(dst[3], (A*src[3] + B*src[4] + C*src[stride+3] + D*src[stride+4]));\
599             OP(dst[4], (A*src[4] + B*src[5] + C*src[stride+4] + D*src[stride+5]));\
600             OP(dst[5], (A*src[5] + B*src[6] + C*src[stride+5] + D*src[stride+6]));\
601             OP(dst[6], (A*src[6] + B*src[7] + C*src[stride+6] + D*src[stride+7]));\
602             OP(dst[7], (A*src[7] + B*src[8] + C*src[stride+7] + D*src[stride+8]));\
603             dst+= stride;\
604             src+= stride;\
605         }\
606     }else{\
607         const int E= B+C;\
608         const int step= C ? stride : 1;\
609         for(i=0; i<h; i++){\
610             OP(dst[0], (A*src[0] + E*src[step+0]));\
611             OP(dst[1], (A*src[1] + E*src[step+1]));\
612             OP(dst[2], (A*src[2] + E*src[step+2]));\
613             OP(dst[3], (A*src[3] + E*src[step+3]));\
614             OP(dst[4], (A*src[4] + E*src[step+4]));\
615             OP(dst[5], (A*src[5] + E*src[step+5]));\
616             OP(dst[6], (A*src[6] + E*src[step+6]));\
617             OP(dst[7], (A*src[7] + E*src[step+7]));\
618             dst+= stride;\
619             src+= stride;\
620         }\
621     }\
622 }
623
624 #define op_avg(a, b) a = (((a)+(((b) + 32)>>6)+1)>>1)
625 #define op_put(a, b) a = (((b) + 32)>>6)
626
627 H264_CHROMA_MC(put_       , op_put)
628 H264_CHROMA_MC(avg_       , op_avg)
629 #undef op_avg
630 #undef op_put
631
632 void FUNCC(ff_put_pixels8x8)(uint8_t *dst, uint8_t *src, int stride) {
633     FUNCC(put_pixels8)(dst, src, stride, 8);
634 }
635 void FUNCC(ff_avg_pixels8x8)(uint8_t *dst, uint8_t *src, int stride) {
636     FUNCC(avg_pixels8)(dst, src, stride, 8);
637 }
638 void FUNCC(ff_put_pixels16x16)(uint8_t *dst, uint8_t *src, int stride) {
639     FUNCC(put_pixels16)(dst, src, stride, 16);
640 }
641 void FUNCC(ff_avg_pixels16x16)(uint8_t *dst, uint8_t *src, int stride) {
642     FUNCC(avg_pixels16)(dst, src, stride, 16);
643 }
644