]> git.sesse.net Git - x264/blob - common/mc.c
c7a544f6df881998c230a166098fb45bcaebfd04
[x264] / common / mc.c
1 /*****************************************************************************
2  * mc.c: motion compensation
3  *****************************************************************************
4  * Copyright (C) 2003-2014 x264 project
5  *
6  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
7  *          Loren Merritt <lorenm@u.washington.edu>
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., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
22  *
23  * This program is also available under a commercial proprietary license.
24  * For more information, contact us at licensing@x264.com.
25  *****************************************************************************/
26
27 #include "common.h"
28
29 #if HAVE_MMX
30 #include "x86/mc.h"
31 #endif
32 #if ARCH_PPC
33 #include "ppc/mc.h"
34 #endif
35 #if ARCH_ARM
36 #include "arm/mc.h"
37 #endif
38
39
40 static inline void pixel_avg( pixel *dst,  intptr_t i_dst_stride,
41                               pixel *src1, intptr_t i_src1_stride,
42                               pixel *src2, intptr_t i_src2_stride, int i_width, int i_height )
43 {
44     for( int y = 0; y < i_height; y++ )
45     {
46         for( int x = 0; x < i_width; x++ )
47             dst[x] = ( src1[x] + src2[x] + 1 ) >> 1;
48         dst  += i_dst_stride;
49         src1 += i_src1_stride;
50         src2 += i_src2_stride;
51     }
52 }
53
54 static inline void pixel_avg_wxh( pixel *dst,  intptr_t i_dst,
55                                   pixel *src1, intptr_t i_src1,
56                                   pixel *src2, intptr_t i_src2, int width, int height )
57 {
58     for( int y = 0; y < height; y++ )
59     {
60         for( int x = 0; x < width; x++ )
61             dst[x] = ( src1[x] + src2[x] + 1 ) >> 1;
62         src1 += i_src1;
63         src2 += i_src2;
64         dst += i_dst;
65     }
66 }
67
68 /* Implicit weighted bipred only:
69  * assumes log2_denom = 5, offset = 0, weight1 + weight2 = 64 */
70 static inline void pixel_avg_weight_wxh( pixel *dst,  intptr_t i_dst,
71                                          pixel *src1, intptr_t i_src1,
72                                          pixel *src2, intptr_t i_src2, int width, int height, int i_weight1 )
73 {
74     int i_weight2 = 64 - i_weight1;
75     for( int y = 0; y<height; y++, dst += i_dst, src1 += i_src1, src2 += i_src2 )
76         for( int x = 0; x<width; x++ )
77             dst[x] = x264_clip_pixel( (src1[x]*i_weight1 + src2[x]*i_weight2 + (1<<5)) >> 6 );
78 }
79 #undef op_scale2
80
81 #define PIXEL_AVG_C( name, width, height ) \
82 static void name( pixel *pix1, intptr_t i_stride_pix1, \
83                   pixel *pix2, intptr_t i_stride_pix2, \
84                   pixel *pix3, intptr_t i_stride_pix3, int weight ) \
85 { \
86     if( weight == 32 ) \
87         pixel_avg_wxh( pix1, i_stride_pix1, pix2, i_stride_pix2, pix3, i_stride_pix3, width, height ); \
88     else \
89         pixel_avg_weight_wxh( pix1, i_stride_pix1, pix2, i_stride_pix2, pix3, i_stride_pix3, width, height, weight ); \
90 }
91 PIXEL_AVG_C( pixel_avg_16x16, 16, 16 )
92 PIXEL_AVG_C( pixel_avg_16x8,  16, 8 )
93 PIXEL_AVG_C( pixel_avg_8x16,  8, 16 )
94 PIXEL_AVG_C( pixel_avg_8x8,   8, 8 )
95 PIXEL_AVG_C( pixel_avg_8x4,   8, 4 )
96 PIXEL_AVG_C( pixel_avg_4x16,  4, 16 )
97 PIXEL_AVG_C( pixel_avg_4x8,   4, 8 )
98 PIXEL_AVG_C( pixel_avg_4x4,   4, 4 )
99 PIXEL_AVG_C( pixel_avg_4x2,   4, 2 )
100 PIXEL_AVG_C( pixel_avg_2x8,   2, 8 )
101 PIXEL_AVG_C( pixel_avg_2x4,   2, 4 )
102 PIXEL_AVG_C( pixel_avg_2x2,   2, 2 )
103
104 static void x264_weight_cache( x264_t *h, x264_weight_t *w )
105 {
106     w->weightfn = h->mc.weight;
107 }
108 #define opscale(x) dst[x] = x264_clip_pixel( ((src[x] * scale + (1<<(denom - 1))) >> denom) + offset )
109 #define opscale_noden(x) dst[x] = x264_clip_pixel( src[x] * scale + offset )
110 static void mc_weight( pixel *dst, intptr_t i_dst_stride, pixel *src, intptr_t i_src_stride,
111                        const x264_weight_t *weight, int i_width, int i_height )
112 {
113     int offset = weight->i_offset << (BIT_DEPTH-8);
114     int scale = weight->i_scale;
115     int denom = weight->i_denom;
116     if( denom >= 1 )
117     {
118         for( int y = 0; y < i_height; y++, dst += i_dst_stride, src += i_src_stride )
119             for( int x = 0; x < i_width; x++ )
120                 opscale( x );
121     }
122     else
123     {
124         for( int y = 0; y < i_height; y++, dst += i_dst_stride, src += i_src_stride )
125             for( int x = 0; x < i_width; x++ )
126                 opscale_noden( x );
127     }
128 }
129
130 #define MC_WEIGHT_C( name, width ) \
131     static void name( pixel *dst, intptr_t i_dst_stride, pixel *src, intptr_t i_src_stride, const x264_weight_t *weight, int height ) \
132 { \
133     mc_weight( dst, i_dst_stride, src, i_src_stride, weight, width, height );\
134 }
135
136 MC_WEIGHT_C( mc_weight_w20, 20 )
137 MC_WEIGHT_C( mc_weight_w16, 16 )
138 MC_WEIGHT_C( mc_weight_w12, 12 )
139 MC_WEIGHT_C( mc_weight_w8,   8 )
140 MC_WEIGHT_C( mc_weight_w4,   4 )
141 MC_WEIGHT_C( mc_weight_w2,   2 )
142
143 static weight_fn_t x264_mc_weight_wtab[6] =
144 {
145     mc_weight_w2,
146     mc_weight_w4,
147     mc_weight_w8,
148     mc_weight_w12,
149     mc_weight_w16,
150     mc_weight_w20,
151 };
152 const x264_weight_t x264_weight_none[3] = { {{0}} };
153 static void mc_copy( pixel *src, intptr_t i_src_stride, pixel *dst, intptr_t i_dst_stride, int i_width, int i_height )
154 {
155     for( int y = 0; y < i_height; y++ )
156     {
157         memcpy( dst, src, i_width * sizeof(pixel) );
158
159         src += i_src_stride;
160         dst += i_dst_stride;
161     }
162 }
163
164 #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]))
165 static void hpel_filter( pixel *dsth, pixel *dstv, pixel *dstc, pixel *src,
166                          intptr_t stride, int width, int height, int16_t *buf )
167 {
168     const int pad = (BIT_DEPTH > 9) ? (-10 * PIXEL_MAX) : 0;
169     for( int y = 0; y < height; y++ )
170     {
171         for( int x = -2; x < width+3; x++ )
172         {
173             int v = TAPFILTER(src,stride);
174             dstv[x] = x264_clip_pixel( (v + 16) >> 5 );
175             /* transform v for storage in a 16-bit integer */
176             buf[x+2] = v + pad;
177         }
178         for( int x = 0; x < width; x++ )
179             dstc[x] = x264_clip_pixel( (TAPFILTER(buf+2,1) - 32*pad + 512) >> 10 );
180         for( int x = 0; x < width; x++ )
181             dsth[x] = x264_clip_pixel( (TAPFILTER(src,1) + 16) >> 5 );
182         dsth += stride;
183         dstv += stride;
184         dstc += stride;
185         src += stride;
186     }
187 }
188
189 static const uint8_t hpel_ref0[16] = {0,1,1,1,0,1,1,1,2,3,3,3,0,1,1,1};
190 static const uint8_t hpel_ref1[16] = {0,0,0,0,2,2,3,2,2,2,3,2,2,2,3,2};
191
192 static void mc_luma( pixel *dst,    intptr_t i_dst_stride,
193                      pixel *src[4], intptr_t i_src_stride,
194                      int mvx, int mvy,
195                      int i_width, int i_height, const x264_weight_t *weight )
196 {
197     int qpel_idx = ((mvy&3)<<2) + (mvx&3);
198     int offset = (mvy>>2)*i_src_stride + (mvx>>2);
199     pixel *src1 = src[hpel_ref0[qpel_idx]] + offset + ((mvy&3) == 3) * i_src_stride;
200
201     if( qpel_idx & 5 ) /* qpel interpolation needed */
202     {
203         pixel *src2 = src[hpel_ref1[qpel_idx]] + offset + ((mvx&3) == 3);
204         pixel_avg( dst, i_dst_stride, src1, i_src_stride,
205                    src2, i_src_stride, i_width, i_height );
206         if( weight->weightfn )
207             mc_weight( dst, i_dst_stride, dst, i_dst_stride, weight, i_width, i_height );
208     }
209     else if( weight->weightfn )
210         mc_weight( dst, i_dst_stride, src1, i_src_stride, weight, i_width, i_height );
211     else
212         mc_copy( src1, i_src_stride, dst, i_dst_stride, i_width, i_height );
213 }
214
215 static pixel *get_ref( pixel *dst,   intptr_t *i_dst_stride,
216                        pixel *src[4], intptr_t i_src_stride,
217                        int mvx, int mvy,
218                        int i_width, int i_height, const x264_weight_t *weight )
219 {
220     int qpel_idx = ((mvy&3)<<2) + (mvx&3);
221     int offset = (mvy>>2)*i_src_stride + (mvx>>2);
222     pixel *src1 = src[hpel_ref0[qpel_idx]] + offset + ((mvy&3) == 3) * i_src_stride;
223
224     if( qpel_idx & 5 ) /* qpel interpolation needed */
225     {
226         pixel *src2 = src[hpel_ref1[qpel_idx]] + offset + ((mvx&3) == 3);
227         pixel_avg( dst, *i_dst_stride, src1, i_src_stride,
228                    src2, i_src_stride, i_width, i_height );
229         if( weight->weightfn )
230             mc_weight( dst, *i_dst_stride, dst, *i_dst_stride, weight, i_width, i_height );
231         return dst;
232     }
233     else if( weight->weightfn )
234     {
235         mc_weight( dst, *i_dst_stride, src1, i_src_stride, weight, i_width, i_height );
236         return dst;
237     }
238     else
239     {
240         *i_dst_stride = i_src_stride;
241         return src1;
242     }
243 }
244
245 /* full chroma mc (ie until 1/8 pixel)*/
246 static void mc_chroma( pixel *dstu, pixel *dstv, intptr_t i_dst_stride,
247                        pixel *src, intptr_t i_src_stride,
248                        int mvx, int mvy,
249                        int i_width, int i_height )
250 {
251     pixel *srcp;
252
253     int d8x = mvx&0x07;
254     int d8y = mvy&0x07;
255     int cA = (8-d8x)*(8-d8y);
256     int cB = d8x    *(8-d8y);
257     int cC = (8-d8x)*d8y;
258     int cD = d8x    *d8y;
259
260     src += (mvy >> 3) * i_src_stride + (mvx >> 3)*2;
261     srcp = &src[i_src_stride];
262
263     for( int y = 0; y < i_height; y++ )
264     {
265         for( int x = 0; x < i_width; x++ )
266         {
267             dstu[x] = ( cA*src[2*x]  + cB*src[2*x+2] +
268                         cC*srcp[2*x] + cD*srcp[2*x+2] + 32 ) >> 6;
269             dstv[x] = ( cA*src[2*x+1]  + cB*src[2*x+3] +
270                         cC*srcp[2*x+1] + cD*srcp[2*x+3] + 32 ) >> 6;
271         }
272         dstu += i_dst_stride;
273         dstv += i_dst_stride;
274         src   = srcp;
275         srcp += i_src_stride;
276     }
277 }
278
279 #define MC_COPY(W) \
280 static void mc_copy_w##W( pixel *dst, intptr_t i_dst, pixel *src, intptr_t i_src, int i_height ) \
281 { \
282     mc_copy( src, i_src, dst, i_dst, W, i_height ); \
283 }
284 MC_COPY( 16 )
285 MC_COPY( 8 )
286 MC_COPY( 4 )
287
288 void x264_plane_copy_c( pixel *dst, intptr_t i_dst,
289                         pixel *src, intptr_t i_src, int w, int h )
290 {
291     while( h-- )
292     {
293         memcpy( dst, src, w * sizeof(pixel) );
294         dst += i_dst;
295         src += i_src;
296     }
297 }
298
299 void x264_plane_copy_interleave_c( pixel *dst,  intptr_t i_dst,
300                                    pixel *srcu, intptr_t i_srcu,
301                                    pixel *srcv, intptr_t i_srcv, int w, int h )
302 {
303     for( int y=0; y<h; y++, dst+=i_dst, srcu+=i_srcu, srcv+=i_srcv )
304         for( int x=0; x<w; x++ )
305         {
306             dst[2*x]   = srcu[x];
307             dst[2*x+1] = srcv[x];
308         }
309 }
310
311 static void x264_plane_copy_deinterleave_c( pixel *dstu, intptr_t i_dstu,
312                                             pixel *dstv, intptr_t i_dstv,
313                                             pixel *src,  intptr_t i_src, int w, int h )
314 {
315     for( int y=0; y<h; y++, dstu+=i_dstu, dstv+=i_dstv, src+=i_src )
316         for( int x=0; x<w; x++ )
317         {
318             dstu[x] = src[2*x];
319             dstv[x] = src[2*x+1];
320         }
321 }
322
323 static void x264_plane_copy_deinterleave_rgb_c( pixel *dsta, intptr_t i_dsta,
324                                                 pixel *dstb, intptr_t i_dstb,
325                                                 pixel *dstc, intptr_t i_dstc,
326                                                 pixel *src,  intptr_t i_src, int pw, int w, int h )
327 {
328     for( int y=0; y<h; y++, dsta+=i_dsta, dstb+=i_dstb, dstc+=i_dstc, src+=i_src )
329     {
330         for( int x=0; x<w; x++ )
331         {
332             dsta[x] = src[x*pw];
333             dstb[x] = src[x*pw+1];
334             dstc[x] = src[x*pw+2];
335         }
336     }
337 }
338
339 void x264_plane_copy_deinterleave_v210_c( pixel *dsty, intptr_t i_dsty,
340                                           pixel *dstc, intptr_t i_dstc,
341                                           uint32_t *src, intptr_t i_src, int w, int h )
342 {
343     for( int l = 0; l < h; l++ )
344     {
345         pixel *dsty0 = dsty;
346         pixel *dstc0 = dstc;
347         uint32_t *src0 = src;
348
349         for( int n = 0; n < w; n += 3 )
350         {
351             *(dstc0++) = *src0 & 0x03FF;
352             *(dsty0++) = ( *src0 >> 10 ) & 0x03FF;
353             *(dstc0++) = ( *src0 >> 20 ) & 0x03FF;
354             src0++;
355             *(dsty0++) = *src0 & 0x03FF;
356             *(dstc0++) = ( *src0 >> 10 ) & 0x03FF;
357             *(dsty0++) = ( *src0 >> 20 ) & 0x03FF;
358             src0++;
359         }
360
361         dsty += i_dsty;
362         dstc += i_dstc;
363         src  += i_src;
364     }
365 }
366
367 static void store_interleave_chroma( pixel *dst, intptr_t i_dst, pixel *srcu, pixel *srcv, int height )
368 {
369     for( int y=0; y<height; y++, dst+=i_dst, srcu+=FDEC_STRIDE, srcv+=FDEC_STRIDE )
370         for( int x=0; x<8; x++ )
371         {
372             dst[2*x]   = srcu[x];
373             dst[2*x+1] = srcv[x];
374         }
375 }
376
377 static void load_deinterleave_chroma_fenc( pixel *dst, pixel *src, intptr_t i_src, int height )
378 {
379     x264_plane_copy_deinterleave_c( dst, FENC_STRIDE, dst+FENC_STRIDE/2, FENC_STRIDE, src, i_src, 8, height );
380 }
381
382 static void load_deinterleave_chroma_fdec( pixel *dst, pixel *src, intptr_t i_src, int height )
383 {
384     x264_plane_copy_deinterleave_c( dst, FDEC_STRIDE, dst+FDEC_STRIDE/2, FDEC_STRIDE, src, i_src, 8, height );
385 }
386
387 static void prefetch_fenc_null( pixel *pix_y,  intptr_t stride_y,
388                                 pixel *pix_uv, intptr_t stride_uv, int mb_x )
389 {}
390
391 static void prefetch_ref_null( pixel *pix, intptr_t stride, int parity )
392 {}
393
394 static void memzero_aligned( void * dst, size_t n )
395 {
396     memset( dst, 0, n );
397 }
398
399 static void integral_init4h( uint16_t *sum, pixel *pix, intptr_t stride )
400 {
401     int v = pix[0]+pix[1]+pix[2]+pix[3];
402     for( int x = 0; x < stride-4; x++ )
403     {
404         sum[x] = v + sum[x-stride];
405         v += pix[x+4] - pix[x];
406     }
407 }
408
409 static void integral_init8h( uint16_t *sum, pixel *pix, intptr_t stride )
410 {
411     int v = pix[0]+pix[1]+pix[2]+pix[3]+pix[4]+pix[5]+pix[6]+pix[7];
412     for( int x = 0; x < stride-8; x++ )
413     {
414         sum[x] = v + sum[x-stride];
415         v += pix[x+8] - pix[x];
416     }
417 }
418
419 static void integral_init4v( uint16_t *sum8, uint16_t *sum4, intptr_t stride )
420 {
421     for( int x = 0; x < stride-8; x++ )
422         sum4[x] = sum8[x+4*stride] - sum8[x];
423     for( int x = 0; x < stride-8; x++ )
424         sum8[x] = sum8[x+8*stride] + sum8[x+8*stride+4] - sum8[x] - sum8[x+4];
425 }
426
427 static void integral_init8v( uint16_t *sum8, intptr_t stride )
428 {
429     for( int x = 0; x < stride-8; x++ )
430         sum8[x] = sum8[x+8*stride] - sum8[x];
431 }
432
433 void x264_frame_init_lowres( x264_t *h, x264_frame_t *frame )
434 {
435     pixel *src = frame->plane[0];
436     int i_stride = frame->i_stride[0];
437     int i_height = frame->i_lines[0];
438     int i_width  = frame->i_width[0];
439
440     // duplicate last row and column so that their interpolation doesn't have to be special-cased
441     for( int y = 0; y < i_height; y++ )
442         src[i_width+y*i_stride] = src[i_width-1+y*i_stride];
443     memcpy( src+i_stride*i_height, src+i_stride*(i_height-1), (i_width+1) * sizeof(pixel) );
444     h->mc.frame_init_lowres_core( src, frame->lowres[0], frame->lowres[1], frame->lowres[2], frame->lowres[3],
445                                   i_stride, frame->i_stride_lowres, frame->i_width_lowres, frame->i_lines_lowres );
446     x264_frame_expand_border_lowres( frame );
447
448     memset( frame->i_cost_est, -1, sizeof(frame->i_cost_est) );
449
450     for( int y = 0; y < h->param.i_bframe + 2; y++ )
451         for( int x = 0; x < h->param.i_bframe + 2; x++ )
452             frame->i_row_satds[y][x][0] = -1;
453
454     for( int y = 0; y <= !!h->param.i_bframe; y++ )
455         for( int x = 0; x <= h->param.i_bframe; x++ )
456             frame->lowres_mvs[y][x][0][0] = 0x7FFF;
457 }
458
459 static void frame_init_lowres_core( pixel *src0, pixel *dst0, pixel *dsth, pixel *dstv, pixel *dstc,
460                                     intptr_t src_stride, intptr_t dst_stride, int width, int height )
461 {
462     for( int y = 0; y < height; y++ )
463     {
464         pixel *src1 = src0+src_stride;
465         pixel *src2 = src1+src_stride;
466         for( int x = 0; x<width; x++ )
467         {
468             // slower than naive bilinear, but matches asm
469 #define FILTER(a,b,c,d) ((((a+b+1)>>1)+((c+d+1)>>1)+1)>>1)
470             dst0[x] = FILTER(src0[2*x  ], src1[2*x  ], src0[2*x+1], src1[2*x+1]);
471             dsth[x] = FILTER(src0[2*x+1], src1[2*x+1], src0[2*x+2], src1[2*x+2]);
472             dstv[x] = FILTER(src1[2*x  ], src2[2*x  ], src1[2*x+1], src2[2*x+1]);
473             dstc[x] = FILTER(src1[2*x+1], src2[2*x+1], src1[2*x+2], src2[2*x+2]);
474 #undef FILTER
475         }
476         src0 += src_stride*2;
477         dst0 += dst_stride;
478         dsth += dst_stride;
479         dstv += dst_stride;
480         dstc += dst_stride;
481     }
482 }
483
484 /* Estimate the total amount of influence on future quality that could be had if we
485  * were to improve the reference samples used to inter predict any given macroblock. */
486 static void mbtree_propagate_cost( int *dst, uint16_t *propagate_in, uint16_t *intra_costs,
487                                    uint16_t *inter_costs, uint16_t *inv_qscales, float *fps_factor, int len )
488 {
489     float fps = *fps_factor / 256.f;
490     for( int i = 0; i < len; i++ )
491     {
492         float intra_cost       = intra_costs[i] * inv_qscales[i];
493         float propagate_amount = propagate_in[i] + intra_cost*fps;
494         float propagate_num    = intra_costs[i] - (inter_costs[i] & LOWRES_COST_MASK);
495         float propagate_denom  = intra_costs[i];
496         dst[i] = (int)(propagate_amount * propagate_num / propagate_denom + 0.5f);
497     }
498 }
499
500 void x264_mc_init( int cpu, x264_mc_functions_t *pf, int cpu_independent )
501 {
502     pf->mc_luma   = mc_luma;
503     pf->get_ref   = get_ref;
504
505     pf->mc_chroma = mc_chroma;
506
507     pf->avg[PIXEL_16x16]= pixel_avg_16x16;
508     pf->avg[PIXEL_16x8] = pixel_avg_16x8;
509     pf->avg[PIXEL_8x16] = pixel_avg_8x16;
510     pf->avg[PIXEL_8x8]  = pixel_avg_8x8;
511     pf->avg[PIXEL_8x4]  = pixel_avg_8x4;
512     pf->avg[PIXEL_4x16] = pixel_avg_4x16;
513     pf->avg[PIXEL_4x8]  = pixel_avg_4x8;
514     pf->avg[PIXEL_4x4]  = pixel_avg_4x4;
515     pf->avg[PIXEL_4x2]  = pixel_avg_4x2;
516     pf->avg[PIXEL_2x8]  = pixel_avg_2x8;
517     pf->avg[PIXEL_2x4]  = pixel_avg_2x4;
518     pf->avg[PIXEL_2x2]  = pixel_avg_2x2;
519
520     pf->weight    = x264_mc_weight_wtab;
521     pf->offsetadd = x264_mc_weight_wtab;
522     pf->offsetsub = x264_mc_weight_wtab;
523     pf->weight_cache = x264_weight_cache;
524
525     pf->copy_16x16_unaligned = mc_copy_w16;
526     pf->copy[PIXEL_16x16] = mc_copy_w16;
527     pf->copy[PIXEL_8x8]   = mc_copy_w8;
528     pf->copy[PIXEL_4x4]   = mc_copy_w4;
529
530     pf->store_interleave_chroma       = store_interleave_chroma;
531     pf->load_deinterleave_chroma_fenc = load_deinterleave_chroma_fenc;
532     pf->load_deinterleave_chroma_fdec = load_deinterleave_chroma_fdec;
533
534     pf->plane_copy = x264_plane_copy_c;
535     pf->plane_copy_interleave = x264_plane_copy_interleave_c;
536     pf->plane_copy_deinterleave = x264_plane_copy_deinterleave_c;
537     pf->plane_copy_deinterleave_rgb = x264_plane_copy_deinterleave_rgb_c;
538     pf->plane_copy_deinterleave_v210 = x264_plane_copy_deinterleave_v210_c;
539
540     pf->hpel_filter = hpel_filter;
541
542     pf->prefetch_fenc_420 = prefetch_fenc_null;
543     pf->prefetch_fenc_422 = prefetch_fenc_null;
544     pf->prefetch_ref  = prefetch_ref_null;
545     pf->memcpy_aligned = memcpy;
546     pf->memzero_aligned = memzero_aligned;
547     pf->frame_init_lowres_core = frame_init_lowres_core;
548
549     pf->integral_init4h = integral_init4h;
550     pf->integral_init8h = integral_init8h;
551     pf->integral_init4v = integral_init4v;
552     pf->integral_init8v = integral_init8v;
553
554     pf->mbtree_propagate_cost = mbtree_propagate_cost;
555
556 #if HAVE_MMX
557     x264_mc_init_mmx( cpu, pf );
558 #endif
559 #if HAVE_ALTIVEC
560     if( cpu&X264_CPU_ALTIVEC )
561         x264_mc_altivec_init( pf );
562 #endif
563 #if HAVE_ARMV6
564     x264_mc_init_arm( cpu, pf );
565 #endif
566
567     if( cpu_independent )
568         pf->mbtree_propagate_cost = mbtree_propagate_cost;
569 }
570
571 void x264_frame_filter( x264_t *h, x264_frame_t *frame, int mb_y, int b_end )
572 {
573     const int b_interlaced = PARAM_INTERLACED;
574     int start = mb_y*16 - 8; // buffer = 4 for deblock + 3 for 6tap, rounded to 8
575     int height = (b_end ? frame->i_lines[0] + 16*PARAM_INTERLACED : (mb_y+b_interlaced)*16) + 8;
576
577     if( mb_y & b_interlaced )
578         return;
579
580     for( int p = 0; p < (CHROMA444 ? 3 : 1); p++ )
581     {
582         int stride = frame->i_stride[p];
583         const int width = frame->i_width[p];
584         int offs = start*stride - 8; // buffer = 3 for 6tap, aligned to 8 for simd
585
586         if( !b_interlaced || h->mb.b_adaptive_mbaff )
587             h->mc.hpel_filter(
588                 frame->filtered[p][1] + offs,
589                 frame->filtered[p][2] + offs,
590                 frame->filtered[p][3] + offs,
591                 frame->plane[p] + offs,
592                 stride, width + 16, height - start,
593                 h->scratch_buffer );
594
595         if( b_interlaced )
596         {
597             /* MC must happen between pixels in the same field. */
598             stride = frame->i_stride[p] << 1;
599             start = (mb_y*16 >> 1) - 8;
600             int height_fld = ((b_end ? frame->i_lines[p] : mb_y*16) >> 1) + 8;
601             offs = start*stride - 8;
602             for( int i = 0; i < 2; i++, offs += frame->i_stride[p] )
603             {
604                 h->mc.hpel_filter(
605                     frame->filtered_fld[p][1] + offs,
606                     frame->filtered_fld[p][2] + offs,
607                     frame->filtered_fld[p][3] + offs,
608                     frame->plane_fld[p] + offs,
609                     stride, width + 16, height_fld - start,
610                     h->scratch_buffer );
611             }
612         }
613     }
614
615     /* generate integral image:
616      * frame->integral contains 2 planes. in the upper plane, each element is
617      * the sum of an 8x8 pixel region with top-left corner on that point.
618      * in the lower plane, 4x4 sums (needed only with --partitions p4x4). */
619
620     if( frame->integral )
621     {
622         int stride = frame->i_stride[0];
623         if( start < 0 )
624         {
625             memset( frame->integral - PADV * stride - PADH, 0, stride * sizeof(uint16_t) );
626             start = -PADV;
627         }
628         if( b_end )
629             height += PADV-9;
630         for( int y = start; y < height; y++ )
631         {
632             pixel    *pix  = frame->plane[0] + y * stride - PADH;
633             uint16_t *sum8 = frame->integral + (y+1) * stride - PADH;
634             uint16_t *sum4;
635             if( h->frames.b_have_sub8x8_esa )
636             {
637                 h->mc.integral_init4h( sum8, pix, stride );
638                 sum8 -= 8*stride;
639                 sum4 = sum8 + stride * (frame->i_lines[0] + PADV*2);
640                 if( y >= 8-PADV )
641                     h->mc.integral_init4v( sum8, sum4, stride );
642             }
643             else
644             {
645                 h->mc.integral_init8h( sum8, pix, stride );
646                 if( y >= 8-PADV )
647                     h->mc.integral_init8v( sum8-8*stride, stride );
648             }
649         }
650     }
651 }