]> git.sesse.net Git - x264/blob - common/mc.c
mmx cachesplit sad of non-square sizes checked height instead of width
[x264] / common / mc.c
1 /*****************************************************************************
2  * mc.c: h264 encoder library (Motion Compensation)
3  *****************************************************************************
4  * Copyright (C) 2003 Laurent Aimar
5  * $Id: mc.c,v 1.1 2004/06/03 19:27:07 fenrir Exp $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #include "common.h"
25
26 #ifdef HAVE_MMX
27 #include "x86/mc.h"
28 #endif
29 #ifdef ARCH_PPC
30 #include "ppc/mc.h"
31 #endif
32
33
34 static inline void pixel_avg( uint8_t *dst,  int i_dst_stride,
35                               uint8_t *src1, int i_src1_stride,
36                               uint8_t *src2, int i_src2_stride,
37                               int i_width, int i_height )
38 {
39     int x, y;
40     for( y = 0; y < i_height; y++ )
41     {
42         for( x = 0; x < i_width; x++ )
43         {
44             dst[x] = ( src1[x] + src2[x] + 1 ) >> 1;
45         }
46         dst  += i_dst_stride;
47         src1 += i_src1_stride;
48         src2 += i_src2_stride;
49     }
50 }
51
52 static inline void pixel_avg_wxh( uint8_t *dst, int i_dst, uint8_t *src, int i_src, int width, int height )
53 {
54     int x, y;
55     for( y = 0; y < height; y++ )
56     {
57         for( x = 0; x < width; x++ )
58         {
59             dst[x] = ( dst[x] + src[x] + 1 ) >> 1;
60         }
61         dst += i_dst;
62         src += i_src;
63     }
64 }
65
66 #define PIXEL_AVG_C( name, width, height ) \
67 static void name( uint8_t *pix1, int i_stride_pix1, \
68                   uint8_t *pix2, int i_stride_pix2 ) \
69 { \
70     pixel_avg_wxh( pix1, i_stride_pix1, pix2, i_stride_pix2, width, height ); \
71 }
72 PIXEL_AVG_C( pixel_avg_16x16, 16, 16 )
73 PIXEL_AVG_C( pixel_avg_16x8,  16, 8 )
74 PIXEL_AVG_C( pixel_avg_8x16,  8, 16 )
75 PIXEL_AVG_C( pixel_avg_8x8,   8, 8 )
76 PIXEL_AVG_C( pixel_avg_8x4,   8, 4 )
77 PIXEL_AVG_C( pixel_avg_4x8,   4, 8 )
78 PIXEL_AVG_C( pixel_avg_4x4,   4, 4 )
79 PIXEL_AVG_C( pixel_avg_4x2,   4, 2 )
80 PIXEL_AVG_C( pixel_avg_2x4,   2, 4 )
81 PIXEL_AVG_C( pixel_avg_2x2,   2, 2 )
82
83
84 /* Implicit weighted bipred only:
85  * assumes log2_denom = 5, offset = 0, weight1 + weight2 = 64 */
86 #define op_scale2(x) dst[x] = x264_clip_uint8( (dst[x]*i_weight1 + src[x]*i_weight2 + (1<<5)) >> 6 )
87 static inline void pixel_avg_weight_wxh( uint8_t *dst, int i_dst, uint8_t *src, int i_src, int width, int height, int i_weight1 ){
88     int y;
89     const int i_weight2 = 64 - i_weight1;
90     for(y=0; y<height; y++, dst += i_dst, src += i_src){
91         op_scale2(0);
92         op_scale2(1);
93         if(width==2) continue;
94         op_scale2(2);
95         op_scale2(3);
96         if(width==4) continue;
97         op_scale2(4);
98         op_scale2(5);
99         op_scale2(6);
100         op_scale2(7);
101         if(width==8) continue;
102         op_scale2(8);
103         op_scale2(9);
104         op_scale2(10);
105         op_scale2(11);
106         op_scale2(12);
107         op_scale2(13);
108         op_scale2(14);
109         op_scale2(15);
110     }
111 }
112
113 #define PIXEL_AVG_WEIGHT_C( width, height ) \
114 static void pixel_avg_weight_##width##x##height( \
115                 uint8_t *pix1, int i_stride_pix1, \
116                 uint8_t *pix2, int i_stride_pix2, int i_weight1 ) \
117 { \
118     pixel_avg_weight_wxh( pix1, i_stride_pix1, pix2, i_stride_pix2, width, height, i_weight1 ); \
119 }
120
121 PIXEL_AVG_WEIGHT_C(16,16)
122 PIXEL_AVG_WEIGHT_C(16,8)
123 PIXEL_AVG_WEIGHT_C(8,16)
124 PIXEL_AVG_WEIGHT_C(8,8)
125 PIXEL_AVG_WEIGHT_C(8,4)
126 PIXEL_AVG_WEIGHT_C(4,8)
127 PIXEL_AVG_WEIGHT_C(4,4)
128 PIXEL_AVG_WEIGHT_C(4,2)
129 PIXEL_AVG_WEIGHT_C(2,4)
130 PIXEL_AVG_WEIGHT_C(2,2)
131 #undef op_scale2
132 #undef PIXEL_AVG_WEIGHT_C
133
134 static void mc_copy( uint8_t *src, int i_src_stride, uint8_t *dst, int i_dst_stride, int i_width, int i_height )
135 {
136     int y;
137
138     for( y = 0; y < i_height; y++ )
139     {
140         memcpy( dst, src, i_width );
141
142         src += i_src_stride;
143         dst += i_dst_stride;
144     }
145 }
146
147 #define TAPFILTER(pix, d) ((pix)[x-2*d] + (pix)[x+3*d] - 5*((pix)[x-d] + (pix)[x+2*d]) + 20*((pix)[x] + (pix)[x+d]))
148 static void hpel_filter( uint8_t *dsth, uint8_t *dstv, uint8_t *dstc, uint8_t *src,
149                          int stride, int width, int height )
150 {
151     int16_t *buf = x264_malloc((width+5)*sizeof(int16_t));
152     int x, y;
153     for( y=0; y<height; y++ )
154     {
155         for( x=-2; x<width+3; x++ )
156         {
157             int v = TAPFILTER(src,stride);
158             dstv[x] = x264_clip_uint8((v + 16) >> 5);
159             buf[x+2] = v;
160         }
161         for( x=0; x<width; x++ )
162             dstc[x] = x264_clip_uint8((TAPFILTER(buf+2,1) + 512) >> 10);
163         for( x=0; x<width; x++ )
164             dsth[x] = x264_clip_uint8((TAPFILTER(src,1) + 16) >> 5);
165         dsth += stride;
166         dstv += stride;
167         dstc += stride;
168         src += stride;
169     }
170     x264_free(buf);
171 }
172
173 static const int hpel_ref0[16] = {0,1,1,1,0,1,1,1,2,3,3,3,0,1,1,1};
174 static const int hpel_ref1[16] = {0,0,0,0,2,2,3,2,2,2,3,2,2,2,3,2};
175
176 static void mc_luma( uint8_t *dst,    int i_dst_stride,
177                      uint8_t *src[4], int i_src_stride,
178                      int mvx, int mvy,
179                      int i_width, int i_height )
180 {
181     int qpel_idx = ((mvy&3)<<2) + (mvx&3);
182     int offset = (mvy>>2)*i_src_stride + (mvx>>2);
183     uint8_t *src1 = src[hpel_ref0[qpel_idx]] + offset + ((mvy&3) == 3) * i_src_stride;
184
185     if( qpel_idx & 5 ) /* qpel interpolation needed */
186     {
187         uint8_t *src2 = src[hpel_ref1[qpel_idx]] + offset + ((mvx&3) == 3);
188         pixel_avg( dst, i_dst_stride, src1, i_src_stride,
189                    src2, i_src_stride, i_width, i_height );
190     }
191     else
192     {
193         mc_copy( src1, i_src_stride, dst, i_dst_stride, i_width, i_height );
194     }
195 }
196
197 static uint8_t *get_ref( uint8_t *dst,   int *i_dst_stride,
198                          uint8_t *src[4], int i_src_stride,
199                          int mvx, int mvy,
200                          int i_width, int i_height )
201 {
202     int qpel_idx = ((mvy&3)<<2) + (mvx&3);
203     int offset = (mvy>>2)*i_src_stride + (mvx>>2);
204     uint8_t *src1 = src[hpel_ref0[qpel_idx]] + offset + ((mvy&3) == 3) * i_src_stride;
205
206     if( qpel_idx & 5 ) /* qpel interpolation needed */
207     {
208         uint8_t *src2 = src[hpel_ref1[qpel_idx]] + offset + ((mvx&3) == 3);
209         pixel_avg( dst, *i_dst_stride, src1, i_src_stride,
210                    src2, i_src_stride, i_width, i_height );
211         return dst;
212     }
213     else
214     {
215         *i_dst_stride = i_src_stride;
216         return src1;
217     }
218 }
219
220 /* full chroma mc (ie until 1/8 pixel)*/
221 static void mc_chroma( uint8_t *dst, int i_dst_stride,
222                        uint8_t *src, int i_src_stride,
223                        int mvx, int mvy,
224                        int i_width, int i_height )
225 {
226     uint8_t *srcp;
227     int x, y;
228
229     const int d8x = mvx&0x07;
230     const int d8y = mvy&0x07;
231
232     const int cA = (8-d8x)*(8-d8y);
233     const int cB = d8x    *(8-d8y);
234     const int cC = (8-d8x)*d8y;
235     const int cD = d8x    *d8y;
236
237     src  += (mvy >> 3) * i_src_stride + (mvx >> 3);
238     srcp = &src[i_src_stride];
239
240     for( y = 0; y < i_height; y++ )
241     {
242         for( x = 0; x < i_width; x++ )
243         {
244             dst[x] = ( cA*src[x]  + cB*src[x+1] +
245                        cC*srcp[x] + cD*srcp[x+1] + 32 ) >> 6;
246         }
247         dst  += i_dst_stride;
248
249         src   = srcp;
250         srcp += i_src_stride;
251     }
252 }
253
254 #define MC_COPY(W) \
255 static void mc_copy_w##W( uint8_t *dst, int i_dst, uint8_t *src, int i_src, int i_height ) \
256 { \
257     mc_copy( src, i_src, dst, i_dst, W, i_height ); \
258 }
259 MC_COPY( 16 )
260 MC_COPY( 8 )
261 MC_COPY( 4 )
262
263 static void plane_copy( uint8_t *dst, int i_dst,
264                         uint8_t *src, int i_src, int w, int h)
265 {
266     while( h-- )
267     {
268         memcpy( dst, src, w );
269         dst += i_dst;
270         src += i_src;
271     }
272 }
273
274 void prefetch_fenc_null( uint8_t *pix_y, int stride_y,
275                          uint8_t *pix_uv, int stride_uv, int mb_x )
276 {}
277
278 void prefetch_ref_null( uint8_t *pix, int stride, int parity )
279 {}
280
281 void x264_mc_init( int cpu, x264_mc_functions_t *pf )
282 {
283     pf->mc_luma   = mc_luma;
284     pf->get_ref   = get_ref;
285     pf->mc_chroma = mc_chroma;
286
287     pf->avg[PIXEL_16x16]= pixel_avg_16x16;
288     pf->avg[PIXEL_16x8] = pixel_avg_16x8;
289     pf->avg[PIXEL_8x16] = pixel_avg_8x16;
290     pf->avg[PIXEL_8x8]  = pixel_avg_8x8;
291     pf->avg[PIXEL_8x4]  = pixel_avg_8x4;
292     pf->avg[PIXEL_4x8]  = pixel_avg_4x8;
293     pf->avg[PIXEL_4x4]  = pixel_avg_4x4;
294     pf->avg[PIXEL_4x2]  = pixel_avg_4x2;
295     pf->avg[PIXEL_2x4]  = pixel_avg_2x4;
296     pf->avg[PIXEL_2x2]  = pixel_avg_2x2;
297     
298     pf->avg_weight[PIXEL_16x16]= pixel_avg_weight_16x16;
299     pf->avg_weight[PIXEL_16x8] = pixel_avg_weight_16x8;
300     pf->avg_weight[PIXEL_8x16] = pixel_avg_weight_8x16;
301     pf->avg_weight[PIXEL_8x8]  = pixel_avg_weight_8x8;
302     pf->avg_weight[PIXEL_8x4]  = pixel_avg_weight_8x4;
303     pf->avg_weight[PIXEL_4x8]  = pixel_avg_weight_4x8;
304     pf->avg_weight[PIXEL_4x4]  = pixel_avg_weight_4x4;
305     pf->avg_weight[PIXEL_4x2]  = pixel_avg_weight_4x2;
306     pf->avg_weight[PIXEL_2x4]  = pixel_avg_weight_2x4;
307     pf->avg_weight[PIXEL_2x2]  = pixel_avg_weight_2x2;
308
309     pf->copy[PIXEL_16x16] = mc_copy_w16;
310     pf->copy[PIXEL_8x8]   = mc_copy_w8;
311     pf->copy[PIXEL_4x4]   = mc_copy_w4;
312
313     pf->plane_copy = plane_copy;
314     pf->hpel_filter = hpel_filter;
315
316     pf->prefetch_fenc = prefetch_fenc_null;
317     pf->prefetch_ref  = prefetch_ref_null;
318     pf->memcpy_aligned = memcpy;
319
320 #ifdef HAVE_MMX
321     x264_mc_init_mmx( cpu, pf );
322 #endif
323 #ifdef ARCH_PPC
324     if( cpu&X264_CPU_ALTIVEC )
325         x264_mc_altivec_init( pf );
326 #endif
327 }
328
329 void x264_frame_filter( x264_t *h, x264_frame_t *frame, int mb_y, int b_end )
330 {
331     const int b_interlaced = h->sh.b_mbaff;
332     const int stride = frame->i_stride[0] << b_interlaced;
333     const int width = frame->i_width[0];
334     int start = (mb_y*16 >> b_interlaced) - 8; // buffer = 4 for deblock + 3 for 6tap, rounded to 8
335     int height = ((b_end ? frame->i_lines[0] : mb_y*16) >> b_interlaced) + 8;
336     int offs = start*stride - 8; // buffer = 3 for 6tap, aligned to 8 for simd
337     int x, y;
338
339     if( mb_y & b_interlaced )
340         return;
341
342     for( y=0; y<=b_interlaced; y++, offs+=frame->i_stride[0] )
343     {
344         h->mc.hpel_filter(
345             frame->filtered[1] + offs,
346             frame->filtered[2] + offs,
347             frame->filtered[3] + offs,
348             frame->plane[0] + offs,
349             stride, width + 16, height - start );
350     }
351
352     /* generate integral image:
353      * frame->integral contains 2 planes. in the upper plane, each element is
354      * the sum of an 8x8 pixel region with top-left corner on that point.
355      * in the lower plane, 4x4 sums (needed only with --partitions p4x4). */
356
357     if( frame->integral )
358     {
359         if( start < 0 )
360         {
361             memset( frame->integral - PADV * stride - PADH, 0, stride * sizeof(uint16_t) );
362             start = -PADV;
363         }
364         if( b_end )
365             height += PADV-8;
366         for( y = start; y < height; y++ )
367         {
368             uint8_t  *ref  = frame->plane[0] + y * stride - PADH;
369             uint16_t *line = frame->integral + (y+1) * stride - PADH + 1;
370             uint16_t v = line[0] = 0;
371             for( x = 1; x < stride-1; x++ )
372                 line[x] = v += ref[x] + line[x-stride] - line[x-stride-1];
373             line -= 8*stride;
374             if( y >= 9-PADV )
375             {
376                 uint16_t *sum4 = line + stride * (frame->i_lines[0] + PADV*2);
377                 for( x = 1; x < stride-8; x++, line++, sum4++ )
378                 {
379                     sum4[0] =  line[4+4*stride] - line[4] - line[4*stride] + line[0];
380                     line[0] += line[8+8*stride] - line[8] - line[8*stride];
381                 }
382             }
383         }
384     }
385 }
386
387 void x264_frame_init_lowres( x264_t *h, x264_frame_t *frame )
388 {
389     // FIXME: tapfilter?
390     const int i_stride = frame->i_stride[0];
391     const int i_stride2 = frame->i_stride_lowres;
392     const int i_width2 = frame->i_width_lowres;
393     int x, y, i;
394     for( y = 0; y < frame->i_lines_lowres - 1; y++ )
395     {
396         uint8_t *src0 = &frame->plane[0][2*y*i_stride];
397         uint8_t *src1 = src0+i_stride;
398         uint8_t *src2 = src1+i_stride;
399         uint8_t *dst0 = &frame->lowres[0][y*i_stride2];
400         uint8_t *dsth = &frame->lowres[1][y*i_stride2];
401         uint8_t *dstv = &frame->lowres[2][y*i_stride2];
402         uint8_t *dstc = &frame->lowres[3][y*i_stride2];
403         for( x = 0; x < i_width2 - 1; x++ )
404         {
405             dst0[x] = (src0[2*x  ] + src0[2*x+1] + src1[2*x  ] + src1[2*x+1] + 2) >> 2;
406             dsth[x] = (src0[2*x+1] + src0[2*x+2] + src1[2*x+1] + src1[2*x+2] + 2) >> 2;
407             dstv[x] = (src1[2*x  ] + src1[2*x+1] + src2[2*x  ] + src2[2*x+1] + 2) >> 2;
408             dstc[x] = (src1[2*x+1] + src1[2*x+2] + src2[2*x+1] + src2[2*x+2] + 2) >> 2;
409         }
410         dst0[x] = (src0[2*x  ] + src0[2*x+1] + src1[2*x  ] + src1[2*x+1] + 2) >> 2;
411         dstv[x] = (src1[2*x  ] + src1[2*x+1] + src2[2*x  ] + src2[2*x+1] + 2) >> 2;
412         dsth[x] = (src0[2*x+1] + src1[2*x+1] + 1) >> 1;
413         dstc[x] = (src1[2*x+1] + src2[2*x+1] + 1) >> 1;
414     }
415     for( i = 0; i < 4; i++ )
416         memcpy( &frame->lowres[i][y*i_stride2], &frame->lowres[i][(y-1)*i_stride2], i_width2 );
417
418     for( y = 0; y < 16; y++ )
419         for( x = 0; x < 16; x++ )
420             frame->i_cost_est[x][y] = -1;
421
422     x264_frame_expand_border_lowres( frame );
423 }
424