]> git.sesse.net Git - x264/blob - common/macroblock.c
Fix bug in intra-refresh ratecontrol
[x264] / common / macroblock.c
1 /*****************************************************************************
2  * macroblock.c: macroblock common functions
3  *****************************************************************************
4  * Copyright (C) 2003-2011 x264 project
5  *
6  * Authors: Fiona Glaser <fiona@x264.com>
7  *          Laurent Aimar <fenrir@via.ecp.fr>
8  *          Loren Merritt <lorenm@u.washington.edu>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program 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
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
23  *
24  * This program is also available under a commercial proprietary license.
25  * For more information, contact us at licensing@x264.com.
26  *****************************************************************************/
27
28 #include "common.h"
29 #include "encoder/me.h"
30
31 static NOINLINE void x264_mb_mc_0xywh( x264_t *h, int x, int y, int width, int height )
32 {
33     int i8    = x264_scan8[0]+x+8*y;
34     int i_ref = h->mb.cache.ref[0][i8];
35     int mvx   = x264_clip3( h->mb.cache.mv[0][i8][0], h->mb.mv_min[0], h->mb.mv_max[0] ) + 4*4*x;
36     int mvy   = x264_clip3( h->mb.cache.mv[0][i8][1], h->mb.mv_min[1], h->mb.mv_max[1] ) + 4*4*y;
37
38     h->mc.mc_luma( &h->mb.pic.p_fdec[0][4*y*FDEC_STRIDE+4*x], FDEC_STRIDE,
39                    h->mb.pic.p_fref[0][i_ref], h->mb.pic.i_stride[0],
40                    mvx, mvy, 4*width, 4*height, &h->sh.weight[i_ref][0] );
41
42     // chroma is offset if MCing from a field of opposite parity
43     if( h->mb.b_interlaced & i_ref )
44         mvy += (h->mb.i_mb_y & 1)*4 - 2;
45
46     h->mc.mc_chroma( &h->mb.pic.p_fdec[1][2*y*FDEC_STRIDE+2*x],
47                      &h->mb.pic.p_fdec[2][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
48                      h->mb.pic.p_fref[0][i_ref][4], h->mb.pic.i_stride[1],
49                      mvx, mvy, 2*width, 2*height );
50
51     if( h->sh.weight[i_ref][1].weightfn )
52         h->sh.weight[i_ref][1].weightfn[width>>1]( &h->mb.pic.p_fdec[1][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
53                                                    &h->mb.pic.p_fdec[1][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
54                                                    &h->sh.weight[i_ref][1], height*2 );
55     if( h->sh.weight[i_ref][2].weightfn )
56         h->sh.weight[i_ref][2].weightfn[width>>1]( &h->mb.pic.p_fdec[2][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
57                                                    &h->mb.pic.p_fdec[2][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
58                                                    &h->sh.weight[i_ref][2],height*2 );
59
60 }
61 static NOINLINE void x264_mb_mc_1xywh( x264_t *h, int x, int y, int width, int height )
62 {
63     int i8    = x264_scan8[0]+x+8*y;
64     int i_ref = h->mb.cache.ref[1][i8];
65     int mvx   = x264_clip3( h->mb.cache.mv[1][i8][0], h->mb.mv_min[0], h->mb.mv_max[0] ) + 4*4*x;
66     int mvy   = x264_clip3( h->mb.cache.mv[1][i8][1], h->mb.mv_min[1], h->mb.mv_max[1] ) + 4*4*y;
67
68     h->mc.mc_luma( &h->mb.pic.p_fdec[0][4*y*FDEC_STRIDE+4*x], FDEC_STRIDE,
69                    h->mb.pic.p_fref[1][i_ref], h->mb.pic.i_stride[0],
70                    mvx, mvy, 4*width, 4*height, weight_none );
71
72     if( h->mb.b_interlaced & i_ref )
73         mvy += (h->mb.i_mb_y & 1)*4 - 2;
74
75     h->mc.mc_chroma( &h->mb.pic.p_fdec[1][2*y*FDEC_STRIDE+2*x],
76                      &h->mb.pic.p_fdec[2][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
77                      h->mb.pic.p_fref[1][i_ref][4], h->mb.pic.i_stride[1],
78                      mvx, mvy, 2*width, 2*height );
79 }
80
81 static NOINLINE void x264_mb_mc_01xywh( x264_t *h, int x, int y, int width, int height )
82 {
83     int i8 = x264_scan8[0]+x+8*y;
84     int i_ref0 = h->mb.cache.ref[0][i8];
85     int i_ref1 = h->mb.cache.ref[1][i8];
86     int weight = h->mb.bipred_weight[i_ref0][i_ref1];
87     int mvx0   = x264_clip3( h->mb.cache.mv[0][i8][0], h->mb.mv_min[0], h->mb.mv_max[0] ) + 4*4*x;
88     int mvx1   = x264_clip3( h->mb.cache.mv[1][i8][0], h->mb.mv_min[0], h->mb.mv_max[0] ) + 4*4*x;
89     int mvy0   = x264_clip3( h->mb.cache.mv[0][i8][1], h->mb.mv_min[1], h->mb.mv_max[1] ) + 4*4*y;
90     int mvy1   = x264_clip3( h->mb.cache.mv[1][i8][1], h->mb.mv_min[1], h->mb.mv_max[1] ) + 4*4*y;
91     int i_mode = x264_size2pixel[height][width];
92     int i_stride0 = 16, i_stride1 = 16;
93     ALIGNED_ARRAY_16( pixel, tmp0,[16*16] );
94     ALIGNED_ARRAY_16( pixel, tmp1,[16*16] );
95     pixel *src0, *src1;
96
97     src0 = h->mc.get_ref( tmp0, &i_stride0, h->mb.pic.p_fref[0][i_ref0], h->mb.pic.i_stride[0],
98                           mvx0, mvy0, 4*width, 4*height, weight_none );
99     src1 = h->mc.get_ref( tmp1, &i_stride1, h->mb.pic.p_fref[1][i_ref1], h->mb.pic.i_stride[0],
100                           mvx1, mvy1, 4*width, 4*height, weight_none );
101     h->mc.avg[i_mode]( &h->mb.pic.p_fdec[0][4*y*FDEC_STRIDE+4*x], FDEC_STRIDE,
102                        src0, i_stride0, src1, i_stride1, weight );
103
104     if( h->mb.b_interlaced & i_ref0 )
105         mvy0 += (h->mb.i_mb_y & 1)*4 - 2;
106     if( h->mb.b_interlaced & i_ref1 )
107         mvy1 += (h->mb.i_mb_y & 1)*4 - 2;
108
109     h->mc.mc_chroma( tmp0, tmp0+8, 16, h->mb.pic.p_fref[0][i_ref0][4], h->mb.pic.i_stride[1],
110                      mvx0, mvy0, 2*width, 2*height );
111     h->mc.mc_chroma( tmp1, tmp1+8, 16, h->mb.pic.p_fref[1][i_ref1][4], h->mb.pic.i_stride[1],
112                      mvx1, mvy1, 2*width, 2*height );
113     h->mc.avg[i_mode+3]( &h->mb.pic.p_fdec[1][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE, tmp0, 16, tmp1, 16, weight );
114     h->mc.avg[i_mode+3]( &h->mb.pic.p_fdec[2][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE, tmp0+8, 16, tmp1+8, 16, weight );
115 }
116
117 void x264_mb_mc_8x8( x264_t *h, int i8 )
118 {
119     int x = 2*(i8&1);
120     int y = 2*(i8>>1);
121
122     if( h->sh.i_type == SLICE_TYPE_P )
123     {
124         switch( h->mb.i_sub_partition[i8] )
125         {
126             case D_L0_8x8:
127                 x264_mb_mc_0xywh( h, x, y, 2, 2 );
128                 break;
129             case D_L0_8x4:
130                 x264_mb_mc_0xywh( h, x, y+0, 2, 1 );
131                 x264_mb_mc_0xywh( h, x, y+1, 2, 1 );
132                 break;
133             case D_L0_4x8:
134                 x264_mb_mc_0xywh( h, x+0, y, 1, 2 );
135                 x264_mb_mc_0xywh( h, x+1, y, 1, 2 );
136                 break;
137             case D_L0_4x4:
138                 x264_mb_mc_0xywh( h, x+0, y+0, 1, 1 );
139                 x264_mb_mc_0xywh( h, x+1, y+0, 1, 1 );
140                 x264_mb_mc_0xywh( h, x+0, y+1, 1, 1 );
141                 x264_mb_mc_0xywh( h, x+1, y+1, 1, 1 );
142                 break;
143         }
144     }
145     else
146     {
147         int scan8 = x264_scan8[0] + x + 8*y;
148
149         if( h->mb.cache.ref[0][scan8] >= 0 )
150             if( h->mb.cache.ref[1][scan8] >= 0 )
151                 x264_mb_mc_01xywh( h, x, y, 2, 2 );
152             else
153                 x264_mb_mc_0xywh( h, x, y, 2, 2 );
154         else
155             x264_mb_mc_1xywh( h, x, y, 2, 2 );
156     }
157 }
158
159 void x264_mb_mc( x264_t *h )
160 {
161     if( h->mb.i_partition == D_8x8 )
162     {
163         for( int i = 0; i < 4; i++ )
164             x264_mb_mc_8x8( h, i );
165     }
166     else
167     {
168         int ref0a = h->mb.cache.ref[0][x264_scan8[ 0]];
169         int ref0b = h->mb.cache.ref[0][x264_scan8[12]];
170         int ref1a = h->mb.cache.ref[1][x264_scan8[ 0]];
171         int ref1b = h->mb.cache.ref[1][x264_scan8[12]];
172
173         if( h->mb.i_partition == D_16x16 )
174         {
175             if( ref0a >= 0 )
176                 if( ref1a >= 0 ) x264_mb_mc_01xywh( h, 0, 0, 4, 4 );
177                 else             x264_mb_mc_0xywh ( h, 0, 0, 4, 4 );
178             else                 x264_mb_mc_1xywh ( h, 0, 0, 4, 4 );
179         }
180         else if( h->mb.i_partition == D_16x8 )
181         {
182             if( ref0a >= 0 )
183                 if( ref1a >= 0 ) x264_mb_mc_01xywh( h, 0, 0, 4, 2 );
184                 else             x264_mb_mc_0xywh ( h, 0, 0, 4, 2 );
185             else                 x264_mb_mc_1xywh ( h, 0, 0, 4, 2 );
186
187             if( ref0b >= 0 )
188                 if( ref1b >= 0 ) x264_mb_mc_01xywh( h, 0, 2, 4, 2 );
189                 else             x264_mb_mc_0xywh ( h, 0, 2, 4, 2 );
190             else                 x264_mb_mc_1xywh ( h, 0, 2, 4, 2 );
191         }
192         else if( h->mb.i_partition == D_8x16 )
193         {
194             if( ref0a >= 0 )
195                 if( ref1a >= 0 ) x264_mb_mc_01xywh( h, 0, 0, 2, 4 );
196                 else             x264_mb_mc_0xywh ( h, 0, 0, 2, 4 );
197             else                 x264_mb_mc_1xywh ( h, 0, 0, 2, 4 );
198
199             if( ref0b >= 0 )
200                 if( ref1b >= 0 ) x264_mb_mc_01xywh( h, 2, 0, 2, 4 );
201                 else             x264_mb_mc_0xywh ( h, 2, 0, 2, 4 );
202             else                 x264_mb_mc_1xywh ( h, 2, 0, 2, 4 );
203         }
204     }
205 }
206
207 int x264_macroblock_cache_allocate( x264_t *h )
208 {
209     int i_mb_count = h->mb.i_mb_count;
210
211     h->mb.i_mb_stride = h->mb.i_mb_width;
212     h->mb.i_b8_stride = h->mb.i_mb_width * 2;
213     h->mb.i_b4_stride = h->mb.i_mb_width * 4;
214
215     h->mb.b_interlaced = h->param.b_interlaced;
216
217     CHECKED_MALLOC( h->mb.qp, i_mb_count * sizeof(int8_t) );
218     CHECKED_MALLOC( h->mb.cbp, i_mb_count * sizeof(int16_t) );
219     CHECKED_MALLOC( h->mb.skipbp, i_mb_count * sizeof(int8_t) );
220     CHECKED_MALLOC( h->mb.mb_transform_size, i_mb_count * sizeof(int8_t) );
221     CHECKED_MALLOC( h->mb.slice_table, i_mb_count * sizeof(uint16_t) );
222     memset( h->mb.slice_table, -1, i_mb_count * sizeof(uint16_t) );
223
224     /* 0 -> 3 top(4), 4 -> 6 : left(3) */
225     CHECKED_MALLOC( h->mb.intra4x4_pred_mode, i_mb_count * 8 * sizeof(int8_t) );
226
227     /* all coeffs */
228     CHECKED_MALLOC( h->mb.non_zero_count, i_mb_count * 24 * sizeof(uint8_t) );
229
230     if( h->param.b_cabac )
231     {
232         CHECKED_MALLOC( h->mb.chroma_pred_mode, i_mb_count * sizeof(int8_t) );
233         CHECKED_MALLOC( h->mb.mvd[0], i_mb_count * sizeof( **h->mb.mvd ) );
234         CHECKED_MALLOC( h->mb.mvd[1], i_mb_count * sizeof( **h->mb.mvd ) );
235     }
236
237     for( int i = 0; i < 2; i++ )
238     {
239         int i_refs = X264_MIN(X264_REF_MAX, (i ? 1 + !!h->param.i_bframe_pyramid : h->param.i_frame_reference) ) << h->param.b_interlaced;
240         if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART )
241             i_refs = X264_MIN(X264_REF_MAX, i_refs + 1 + (BIT_DEPTH == 8)); //smart weights add two duplicate frames, one in >8-bit
242
243         for( int j = !i; j < i_refs; j++ )
244         {
245             CHECKED_MALLOC( h->mb.mvr[i][j], 2 * (i_mb_count + 1) * sizeof(int16_t) );
246             M32( h->mb.mvr[i][j][0] ) = 0;
247             h->mb.mvr[i][j]++;
248         }
249     }
250
251     if( h->param.analyse.i_weighted_pred )
252     {
253         int i_padv = PADV << h->param.b_interlaced;
254         int luma_plane_size = 0;
255         int numweightbuf;
256
257         if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_FAKE )
258         {
259             // only need buffer for lookahead
260             if( !h->param.i_sync_lookahead || h == h->thread[h->param.i_threads] )
261             {
262                 // Fake analysis only works on lowres
263                 luma_plane_size = h->fdec->i_stride_lowres * (h->mb.i_mb_height*8+2*i_padv);
264                 // Only need 1 buffer for analysis
265                 numweightbuf = 1;
266             }
267             else
268                 numweightbuf = 0;
269         }
270         else
271         {
272             luma_plane_size = h->fdec->i_stride[0] * (h->mb.i_mb_height*16+2*i_padv);
273
274             if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART )
275                 //smart can weight one ref and one offset -1 in 8-bit
276                 numweightbuf = 1 + (BIT_DEPTH == 8);
277             else
278                 //simple only has one weighted ref
279                 numweightbuf = 1;
280         }
281
282         for( int i = 0; i < numweightbuf; i++ )
283             CHECKED_MALLOC( h->mb.p_weight_buf[i], luma_plane_size * sizeof(pixel) );
284     }
285
286     return 0;
287 fail:
288     return -1;
289 }
290 void x264_macroblock_cache_free( x264_t *h )
291 {
292     for( int i = 0; i < 2; i++ )
293         for( int j = !i; j < X264_REF_MAX*2; j++ )
294             if( h->mb.mvr[i][j] )
295                 x264_free( h->mb.mvr[i][j]-1 );
296     for( int i = 0; i < X264_REF_MAX; i++ )
297         x264_free( h->mb.p_weight_buf[i] );
298
299     if( h->param.b_cabac )
300     {
301         x264_free( h->mb.chroma_pred_mode );
302         x264_free( h->mb.mvd[0] );
303         x264_free( h->mb.mvd[1] );
304     }
305     x264_free( h->mb.slice_table );
306     x264_free( h->mb.intra4x4_pred_mode );
307     x264_free( h->mb.non_zero_count );
308     x264_free( h->mb.mb_transform_size );
309     x264_free( h->mb.skipbp );
310     x264_free( h->mb.cbp );
311     x264_free( h->mb.qp );
312 }
313
314 int x264_macroblock_thread_allocate( x264_t *h, int b_lookahead )
315 {
316     if( !b_lookahead )
317         for( int i = 0; i <= h->param.b_interlaced; i++ )
318         {
319             for( int j = 0; j < 2; j++ )
320             {
321                 /* shouldn't really be initialized, just silences a valgrind false-positive in predict_8x8_filter_mmx */
322                 CHECKED_MALLOCZERO( h->intra_border_backup[i][j], (h->sps->i_mb_width*16+32) * sizeof(pixel) );
323                 h->intra_border_backup[i][j] += 16;
324                 h->intra_border_backup[1][j] = h->intra_border_backup[i][j];
325             }
326             CHECKED_MALLOC( h->deblock_strength[i], sizeof(**h->deblock_strength) * h->mb.i_mb_width );
327             h->deblock_strength[1] = h->deblock_strength[i];
328         }
329
330     /* Allocate scratch buffer */
331     int scratch_size = 0;
332     if( !b_lookahead )
333     {
334         int buf_hpel = (h->thread[0]->fdec->i_width[0]+48) * sizeof(int16_t);
335         int buf_ssim = h->param.analyse.b_ssim * 8 * (h->param.i_width/4+3) * sizeof(int);
336         int me_range = X264_MIN(h->param.analyse.i_me_range, h->param.analyse.i_mv_range);
337         int buf_tesa = (h->param.analyse.i_me_method >= X264_ME_ESA) *
338             ((me_range*2+24) * sizeof(int16_t) + (me_range+4) * (me_range+1) * 4 * sizeof(mvsad_t));
339         scratch_size = X264_MAX3( buf_hpel, buf_ssim, buf_tesa );
340     }
341     int buf_mbtree = h->param.rc.b_mb_tree * ((h->mb.i_mb_width+3)&~3) * sizeof(int);
342     scratch_size = X264_MAX( scratch_size, buf_mbtree );
343     if( scratch_size )
344         CHECKED_MALLOC( h->scratch_buffer, scratch_size );
345     else
346         h->scratch_buffer = NULL;
347
348     return 0;
349 fail:
350     return -1;
351 }
352
353 void x264_macroblock_thread_free( x264_t *h, int b_lookahead )
354 {
355     if( !b_lookahead )
356         for( int i = 0; i <= h->param.b_interlaced; i++ )
357         {
358             x264_free( h->deblock_strength[i] );
359             for( int j = 0; j < 2; j++ )
360                 x264_free( h->intra_border_backup[i][j] - 16 );
361         }
362     x264_free( h->scratch_buffer );
363 }
364
365 void x264_macroblock_slice_init( x264_t *h )
366 {
367     h->mb.mv[0] = h->fdec->mv[0];
368     h->mb.mv[1] = h->fdec->mv[1];
369     h->mb.mvr[0][0] = h->fdec->mv16x16;
370     h->mb.ref[0] = h->fdec->ref[0];
371     h->mb.ref[1] = h->fdec->ref[1];
372     h->mb.type = h->fdec->mb_type;
373     h->mb.partition = h->fdec->mb_partition;
374
375     h->fdec->i_ref[0] = h->i_ref[0];
376     h->fdec->i_ref[1] = h->i_ref[1];
377     for( int i = 0; i < h->i_ref[0]; i++ )
378         h->fdec->ref_poc[0][i] = h->fref[0][i]->i_poc;
379     if( h->sh.i_type == SLICE_TYPE_B )
380     {
381         for( int i = 0; i < h->i_ref[1]; i++ )
382             h->fdec->ref_poc[1][i] = h->fref[1][i]->i_poc;
383
384         map_col_to_list0(-1) = -1;
385         map_col_to_list0(-2) = -2;
386         for( int i = 0; i < h->fref[1][0]->i_ref[0]; i++ )
387         {
388             int poc = h->fref[1][0]->ref_poc[0][i];
389             map_col_to_list0(i) = -2;
390             for( int j = 0; j < h->i_ref[0]; j++ )
391                 if( h->fref[0][j]->i_poc == poc )
392                 {
393                     map_col_to_list0(i) = j;
394                     break;
395                 }
396         }
397     }
398     else if( h->sh.i_type == SLICE_TYPE_P )
399     {
400         memset( h->mb.cache.skip, 0, sizeof( h->mb.cache.skip ) );
401
402         if( h->sh.i_disable_deblocking_filter_idc != 1 && h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART )
403         {
404             deblock_ref_table(-2) = -2;
405             deblock_ref_table(-1) = -1;
406             for( int i = 0; i < h->i_ref[0] << h->sh.b_mbaff; i++ )
407             {
408                 /* Mask off high bits to avoid frame num collisions with -1/-2.
409                  * In current x264 frame num values don't cover a range of more
410                  * than 32, so 6 bits is enough for uniqueness. */
411                 if( !h->mb.b_interlaced )
412                     deblock_ref_table(i) = h->fref[0][i]->i_frame_num&63;
413                 else
414                     deblock_ref_table(i) = ((h->fref[0][i>>1]->i_frame_num&63)<<1) + (i&1);
415             }
416         }
417     }
418
419     /* init with not available (for top right idx=7,15) */
420     memset( h->mb.cache.ref, -2, sizeof( h->mb.cache.ref ) );
421
422     if( h->i_ref[0] > 0 )
423         for( int field = 0; field <= h->sh.b_mbaff; field++ )
424         {
425             int curpoc = h->fdec->i_poc + h->fdec->i_delta_poc[field];
426             int refpoc = h->fref[0][0]->i_poc + h->fref[0][0]->i_delta_poc[field];
427             int delta = curpoc - refpoc;
428
429             h->fdec->inv_ref_poc[field] = (256 + delta/2) / delta;
430         }
431
432     h->mb.i_neighbour4[6] =
433     h->mb.i_neighbour4[9] =
434     h->mb.i_neighbour4[12] =
435     h->mb.i_neighbour4[14] = MB_LEFT|MB_TOP|MB_TOPLEFT|MB_TOPRIGHT;
436     h->mb.i_neighbour4[3] =
437     h->mb.i_neighbour4[7] =
438     h->mb.i_neighbour4[11] =
439     h->mb.i_neighbour4[13] =
440     h->mb.i_neighbour4[15] =
441     h->mb.i_neighbour8[3] = MB_LEFT|MB_TOP|MB_TOPLEFT;
442 }
443
444 void x264_macroblock_thread_init( x264_t *h )
445 {
446     h->mb.i_me_method = h->param.analyse.i_me_method;
447     h->mb.i_subpel_refine = h->param.analyse.i_subpel_refine;
448     if( h->sh.i_type == SLICE_TYPE_B && (h->mb.i_subpel_refine == 6 || h->mb.i_subpel_refine == 8) )
449         h->mb.i_subpel_refine--;
450     h->mb.b_chroma_me = h->param.analyse.b_chroma_me &&
451                         ((h->sh.i_type == SLICE_TYPE_P && h->mb.i_subpel_refine >= 5) ||
452                          (h->sh.i_type == SLICE_TYPE_B && h->mb.i_subpel_refine >= 9));
453     h->mb.b_dct_decimate = h->sh.i_type == SLICE_TYPE_B ||
454                           (h->param.analyse.b_dct_decimate && h->sh.i_type != SLICE_TYPE_I);
455
456
457     /* fdec:      fenc:
458      * yyyyyyy
459      * yYYYY      YYYY
460      * yYYYY      YYYY
461      * yYYYY      YYYY
462      * yYYYY      YYYY
463      * uuu vvv    UUVV
464      * uUU vVV    UUVV
465      * uUU vVV
466      */
467     h->mb.pic.p_fenc[0] = h->mb.pic.fenc_buf;
468     h->mb.pic.p_fenc[1] = h->mb.pic.fenc_buf + 16*FENC_STRIDE;
469     h->mb.pic.p_fenc[2] = h->mb.pic.fenc_buf + 16*FENC_STRIDE + 8;
470     h->mb.pic.p_fdec[0] = h->mb.pic.fdec_buf + 2*FDEC_STRIDE;
471     h->mb.pic.p_fdec[1] = h->mb.pic.fdec_buf + 19*FDEC_STRIDE;
472     h->mb.pic.p_fdec[2] = h->mb.pic.fdec_buf + 19*FDEC_STRIDE + 16;
473 }
474
475 void x264_prefetch_fenc( x264_t *h, x264_frame_t *fenc, int i_mb_x, int i_mb_y )
476 {
477     int stride_y  = fenc->i_stride[0];
478     int stride_uv = fenc->i_stride[1];
479     int off_y  = 16 * i_mb_x + 16 * i_mb_y * stride_y;
480     int off_uv = 16 * i_mb_x + 8 * i_mb_y * stride_uv;
481     h->mc.prefetch_fenc( fenc->plane[0]+off_y, stride_y,
482                          fenc->plane[1]+off_uv, stride_uv, i_mb_x );
483 }
484
485 NOINLINE void x264_copy_column8( pixel *dst, pixel *src )
486 {
487     // input pointers are offset by 4 rows because that's faster (smaller instruction size on x86)
488     for( int i = -4; i < 4; i++ )
489         dst[i*FDEC_STRIDE] = src[i*FDEC_STRIDE];
490 }
491
492 static void ALWAYS_INLINE x264_macroblock_load_pic_pointers( x264_t *h, int mb_x, int mb_y, int i, int b_interlaced )
493 {
494     int w = (i ? 8 : 16);
495     int i_stride = h->fdec->i_stride[i];
496     int i_stride2 = i_stride << b_interlaced;
497     int i_pix_offset = b_interlaced
498                      ? 16 * mb_x + w * (mb_y&~1) * i_stride + (mb_y&1) * i_stride
499                      : 16 * mb_x + w * mb_y * i_stride;
500     pixel *plane_fdec = &h->fdec->plane[i][i_pix_offset];
501     pixel *intra_fdec = &h->intra_border_backup[mb_y&1][i][mb_x*16];
502     int ref_pix_offset[2] = { i_pix_offset, i_pix_offset };
503     if( b_interlaced )
504         ref_pix_offset[1] += (1-2*(mb_y&1)) * i_stride;
505     h->mb.pic.i_stride[i] = i_stride2;
506     h->mb.pic.p_fenc_plane[i] = &h->fenc->plane[i][i_pix_offset];
507     if( i )
508     {
509         h->mc.load_deinterleave_8x8x2_fenc( h->mb.pic.p_fenc[1], h->mb.pic.p_fenc_plane[1], i_stride2 );
510         memcpy( h->mb.pic.p_fdec[1]-FDEC_STRIDE, intra_fdec, 8*sizeof(pixel) );
511         memcpy( h->mb.pic.p_fdec[2]-FDEC_STRIDE, intra_fdec+8, 8*sizeof(pixel) );
512     }
513     else
514     {
515         h->mc.copy[PIXEL_16x16]( h->mb.pic.p_fenc[0], FENC_STRIDE, h->mb.pic.p_fenc_plane[0], i_stride2, 16 );
516         memcpy( h->mb.pic.p_fdec[0]-FDEC_STRIDE, intra_fdec, 24*sizeof(pixel) );
517     }
518     if( b_interlaced )
519     {
520         for( int j = 0; j < w; j++ )
521             if( i )
522             {
523                 h->mb.pic.p_fdec[1][-1+j*FDEC_STRIDE] = plane_fdec[-2+j*i_stride2];
524                 h->mb.pic.p_fdec[2][-1+j*FDEC_STRIDE] = plane_fdec[-1+j*i_stride2];
525             }
526             else
527                 h->mb.pic.p_fdec[0][-1+j*FDEC_STRIDE] = plane_fdec[-1+j*i_stride2];
528     }
529     for( int j = 0; j < h->mb.pic.i_fref[0]; j++ )
530     {
531         h->mb.pic.p_fref[0][j][i?4:0] = &h->fref[0][j >> b_interlaced]->plane[i][ref_pix_offset[j&1]];
532         if( !i )
533         {
534             for( int k = 1; k < 4; k++ )
535                 h->mb.pic.p_fref[0][j][k] = &h->fref[0][j >> b_interlaced]->filtered[k][ref_pix_offset[j&1]];
536             if( h->sh.weight[j][0].weightfn )
537                 h->mb.pic.p_fref_w[j] = &h->fenc->weighted[j >> b_interlaced][ref_pix_offset[j&1]];
538             else
539                 h->mb.pic.p_fref_w[j] = h->mb.pic.p_fref[0][j][0];
540         }
541     }
542     if( h->sh.i_type == SLICE_TYPE_B )
543         for( int j = 0; j < h->mb.pic.i_fref[1]; j++ )
544         {
545             h->mb.pic.p_fref[1][j][i?4:0] = &h->fref[1][j >> b_interlaced]->plane[i][ref_pix_offset[j&1]];
546             if( !i )
547                 for( int k = 1; k < 4; k++ )
548                     h->mb.pic.p_fref[1][j][k] = &h->fref[1][j >> b_interlaced]->filtered[k][ref_pix_offset[j&1]];
549         }
550 }
551
552 static void inline x264_macroblock_cache_load_neighbours( x264_t *h, int mb_x, int mb_y )
553 {
554     int top = (mb_y - (1 << h->mb.b_interlaced)) * h->mb.i_mb_stride + mb_x;
555
556     h->mb.i_mb_x = mb_x;
557     h->mb.i_mb_y = mb_y;
558     h->mb.i_mb_xy = mb_y * h->mb.i_mb_stride + mb_x;
559     h->mb.i_b8_xy = 2*(mb_y * h->mb.i_b8_stride + mb_x);
560     h->mb.i_b4_xy = 4*(mb_y * h->mb.i_b4_stride + mb_x);
561     h->mb.i_neighbour = 0;
562     h->mb.i_neighbour_intra = 0;
563     h->mb.i_neighbour_frame = 0;
564     h->mb.i_mb_top_xy = -1;
565     h->mb.i_mb_left_xy = -1;
566     h->mb.i_mb_topleft_xy = -1;
567     h->mb.i_mb_topright_xy = -1;
568     h->mb.i_mb_type_top = -1;
569     h->mb.i_mb_type_left = -1;
570     h->mb.i_mb_type_topleft = -1;
571     h->mb.i_mb_type_topright = -1;
572
573     if( mb_x > 0 )
574     {
575         h->mb.i_neighbour_frame |= MB_LEFT;
576         h->mb.i_mb_left_xy = h->mb.i_mb_xy - 1;
577         h->mb.i_mb_type_left = h->mb.type[h->mb.i_mb_left_xy];
578         if( h->mb.i_mb_xy > h->sh.i_first_mb )
579         {
580             h->mb.i_neighbour |= MB_LEFT;
581
582             if( !h->param.b_constrained_intra || IS_INTRA( h->mb.i_mb_type_left ) )
583                 h->mb.i_neighbour_intra |= MB_LEFT;
584         }
585     }
586
587     /* We can't predict from the previous threadslice since it hasn't been encoded yet. */
588     if( (h->i_threadslice_start >> h->mb.b_interlaced) != (mb_y >> h->mb.b_interlaced) )
589     {
590         if( top >= 0 )
591         {
592             h->mb.i_neighbour_frame |= MB_TOP;
593             h->mb.i_mb_top_xy = top;
594             h->mb.i_mb_type_top = h->mb.type[h->mb.i_mb_top_xy];
595             if( top >= h->sh.i_first_mb )
596             {
597                 h->mb.i_neighbour |= MB_TOP;
598
599                 if( !h->param.b_constrained_intra || IS_INTRA( h->mb.i_mb_type_top ) )
600                     h->mb.i_neighbour_intra |= MB_TOP;
601
602                 /* We only need to prefetch the top blocks because the left was just written
603                  * to as part of the previous cache_save.  Since most target CPUs use write-allocate
604                  * caches, left blocks are near-guaranteed to be in L1 cache.  Top--not so much. */
605                 x264_prefetch( &h->mb.cbp[top] );
606                 x264_prefetch( h->mb.intra4x4_pred_mode[top] );
607                 x264_prefetch( &h->mb.non_zero_count[top][12] );
608                 /* These aren't always allocated, but prefetching an invalid address can't hurt. */
609                 x264_prefetch( &h->mb.mb_transform_size[top] );
610                 x264_prefetch( &h->mb.skipbp[top] );
611             }
612         }
613
614         if( mb_x > 0 && top - 1 >= 0  )
615         {
616             h->mb.i_neighbour_frame |= MB_TOPLEFT;
617             h->mb.i_mb_topleft_xy = top - 1;
618             h->mb.i_mb_type_topleft = h->mb.type[h->mb.i_mb_topleft_xy];
619             if( top - 1 >= h->sh.i_first_mb )
620             {
621                 h->mb.i_neighbour |= MB_TOPLEFT;
622
623                 if( !h->param.b_constrained_intra || IS_INTRA( h->mb.i_mb_type_topleft ) )
624                     h->mb.i_neighbour_intra |= MB_TOPLEFT;
625             }
626         }
627
628         if( mb_x < h->mb.i_mb_width - 1 && top + 1 >= 0 )
629         {
630             h->mb.i_neighbour_frame |= MB_TOPRIGHT;
631             h->mb.i_mb_topright_xy = top + 1;
632             h->mb.i_mb_type_topright = h->mb.type[h->mb.i_mb_topright_xy];
633             if( top + 1 >= h->sh.i_first_mb )
634             {
635                 h->mb.i_neighbour |= MB_TOPRIGHT;
636
637                 if( !h->param.b_constrained_intra || IS_INTRA( h->mb.i_mb_type_topright ) )
638                     h->mb.i_neighbour_intra |= MB_TOPRIGHT;
639             }
640         }
641     }
642 }
643
644 void x264_macroblock_cache_load( x264_t *h, int mb_x, int mb_y )
645 {
646     x264_macroblock_cache_load_neighbours( h, mb_x, mb_y );
647
648     int left = h->mb.i_mb_left_xy;
649     int top  = h->mb.i_mb_top_xy;
650     int top_y = mb_y - (1 << h->mb.b_interlaced);
651     int s8x8 = h->mb.i_b8_stride;
652     int s4x4 = h->mb.i_b4_stride;
653     int top_8x8 = (2*top_y+1) * s8x8 + 2*mb_x;
654     int top_4x4 = (4*top_y+3) * s4x4 + 4*mb_x;
655     int lists = (1 << h->sh.i_type) & 3;
656
657     /* GCC pessimizes direct loads from heap-allocated arrays due to aliasing. */
658     /* By only dereferencing them once, we avoid this issue. */
659     int8_t (*i4x4)[8] = h->mb.intra4x4_pred_mode;
660     uint8_t (*nnz)[24] = h->mb.non_zero_count;
661     int16_t *cbp = h->mb.cbp;
662
663     /* load cache */
664     if( h->mb.i_neighbour & MB_TOP )
665     {
666         h->mb.cache.i_cbp_top = cbp[top];
667         /* load intra4x4 */
668         CP32( &h->mb.cache.intra4x4_pred_mode[x264_scan8[0] - 8], &i4x4[top][0] );
669
670         /* load non_zero_count */
671         CP32( &h->mb.cache.non_zero_count[x264_scan8[0] - 8], &nnz[top][12] );
672         /* shift because x264_scan8[16] is misaligned */
673         M32( &h->mb.cache.non_zero_count[x264_scan8[16+0] - 9] ) = M16( &nnz[top][18] ) << 8;
674         M32( &h->mb.cache.non_zero_count[x264_scan8[16+4] - 9] ) = M16( &nnz[top][22] ) << 8;
675
676         /* Finish the prefetching */
677         for( int l = 0; l < lists; l++ )
678         {
679             x264_prefetch( &h->mb.mv[l][top_4x4-1] );
680             /* Top right being not in the same cacheline as top left will happen
681              * once every 4 MBs, so one extra prefetch is worthwhile */
682             x264_prefetch( &h->mb.mv[l][top_4x4+4] );
683             x264_prefetch( &h->mb.ref[l][top_8x8-1] );
684             x264_prefetch( &h->mb.mvd[l][top] );
685         }
686     }
687     else
688     {
689         h->mb.cache.i_cbp_top = -1;
690
691         /* load intra4x4 */
692         M32( &h->mb.cache.intra4x4_pred_mode[x264_scan8[0] - 8] ) = 0xFFFFFFFFU;
693
694         /* load non_zero_count */
695         M32( &h->mb.cache.non_zero_count[x264_scan8[   0] - 8] ) = 0x80808080U;
696         M32( &h->mb.cache.non_zero_count[x264_scan8[16+0] - 9] ) = 0x80808080U;
697         M32( &h->mb.cache.non_zero_count[x264_scan8[16+4] - 9] ) = 0x80808080U;
698     }
699
700     if( h->mb.i_neighbour & MB_LEFT )
701     {
702         h->mb.cache.i_cbp_left = cbp[left];
703
704         /* load intra4x4 */
705         h->mb.cache.intra4x4_pred_mode[x264_scan8[0 ] - 1] = i4x4[left][4];
706         h->mb.cache.intra4x4_pred_mode[x264_scan8[2 ] - 1] = i4x4[left][5];
707         h->mb.cache.intra4x4_pred_mode[x264_scan8[8 ] - 1] = i4x4[left][6];
708         h->mb.cache.intra4x4_pred_mode[x264_scan8[10] - 1] = i4x4[left][3];
709
710         /* load non_zero_count */
711         h->mb.cache.non_zero_count[x264_scan8[0 ] - 1] = nnz[left][3];
712         h->mb.cache.non_zero_count[x264_scan8[2 ] - 1] = nnz[left][7];
713         h->mb.cache.non_zero_count[x264_scan8[8 ] - 1] = nnz[left][11];
714         h->mb.cache.non_zero_count[x264_scan8[10] - 1] = nnz[left][15];
715
716         h->mb.cache.non_zero_count[x264_scan8[16+0] - 1] = nnz[left][16+1];
717         h->mb.cache.non_zero_count[x264_scan8[16+2] - 1] = nnz[left][16+3];
718
719         h->mb.cache.non_zero_count[x264_scan8[16+4+0] - 1] = nnz[left][16+4+1];
720         h->mb.cache.non_zero_count[x264_scan8[16+4+2] - 1] = nnz[left][16+4+3];
721     }
722     else
723     {
724         h->mb.cache.i_cbp_left = -1;
725
726         h->mb.cache.intra4x4_pred_mode[x264_scan8[0 ] - 1] =
727         h->mb.cache.intra4x4_pred_mode[x264_scan8[2 ] - 1] =
728         h->mb.cache.intra4x4_pred_mode[x264_scan8[8 ] - 1] =
729         h->mb.cache.intra4x4_pred_mode[x264_scan8[10] - 1] = -1;
730
731         /* load non_zero_count */
732         h->mb.cache.non_zero_count[x264_scan8[0 ] - 1] =
733         h->mb.cache.non_zero_count[x264_scan8[2 ] - 1] =
734         h->mb.cache.non_zero_count[x264_scan8[8 ] - 1] =
735         h->mb.cache.non_zero_count[x264_scan8[10] - 1] =
736         h->mb.cache.non_zero_count[x264_scan8[16+0] - 1] =
737         h->mb.cache.non_zero_count[x264_scan8[16+2] - 1] =
738         h->mb.cache.non_zero_count[x264_scan8[16+4+0] - 1] =
739         h->mb.cache.non_zero_count[x264_scan8[16+4+2] - 1] = 0x80;
740     }
741
742     if( h->pps->b_transform_8x8_mode )
743     {
744         h->mb.cache.i_neighbour_transform_size =
745             ( (h->mb.i_neighbour & MB_LEFT) && h->mb.mb_transform_size[left] )
746           + ( (h->mb.i_neighbour & MB_TOP) && h->mb.mb_transform_size[top]  );
747     }
748
749     if( h->sh.b_mbaff )
750     {
751         h->mb.pic.i_fref[0] = h->i_ref[0] << h->mb.b_interlaced;
752         h->mb.pic.i_fref[1] = h->i_ref[1] << h->mb.b_interlaced;
753         h->mb.cache.i_neighbour_interlaced =
754             !!(h->mb.i_neighbour & MB_LEFT)
755           + !!(h->mb.i_neighbour & MB_TOP);
756     }
757
758     if( !h->mb.b_interlaced )
759     {
760         x264_copy_column8( h->mb.pic.p_fdec[0]-1+ 4*FDEC_STRIDE, h->mb.pic.p_fdec[0]+15+ 4*FDEC_STRIDE );
761         x264_copy_column8( h->mb.pic.p_fdec[0]-1+12*FDEC_STRIDE, h->mb.pic.p_fdec[0]+15+12*FDEC_STRIDE );
762         x264_copy_column8( h->mb.pic.p_fdec[1]-1+ 4*FDEC_STRIDE, h->mb.pic.p_fdec[1]+ 7+ 4*FDEC_STRIDE );
763         x264_copy_column8( h->mb.pic.p_fdec[2]-1+ 4*FDEC_STRIDE, h->mb.pic.p_fdec[2]+ 7+ 4*FDEC_STRIDE );
764         x264_macroblock_load_pic_pointers( h, mb_x, mb_y, 0, 0 );
765         x264_macroblock_load_pic_pointers( h, mb_x, mb_y, 1, 0 );
766     }
767     else
768     {
769         x264_macroblock_load_pic_pointers( h, mb_x, mb_y, 0, 1 );
770         x264_macroblock_load_pic_pointers( h, mb_x, mb_y, 1, 1 );
771     }
772
773     if( h->fdec->integral )
774     {
775         int offset = 16 * (mb_x + mb_y * h->fdec->i_stride[0]);
776         for( int list = 0; list < 2; list++ )
777             for( int i = 0; i < h->mb.pic.i_fref[list]; i++ )
778                 h->mb.pic.p_integral[list][i] = &h->fref[list][i]->integral[offset];
779     }
780
781     x264_prefetch_fenc( h, h->fenc, mb_x, mb_y );
782
783     /* load ref/mv/mvd */
784     for( int l = 0; l < lists; l++ )
785     {
786         int16_t (*mv)[2] = h->mb.mv[l];
787         int8_t *ref = h->mb.ref[l];
788
789         int i8 = x264_scan8[0] - 1 - 1*8;
790         if( h->mb.i_neighbour & MB_TOPLEFT )
791         {
792             h->mb.cache.ref[l][i8] = ref[top_8x8 - 1];
793             CP32( h->mb.cache.mv[l][i8], mv[top_4x4 - 1] );
794         }
795         else
796         {
797             h->mb.cache.ref[l][i8] = -2;
798             M32( h->mb.cache.mv[l][i8] ) = 0;
799         }
800
801         i8 = x264_scan8[0] - 8;
802         if( h->mb.i_neighbour & MB_TOP )
803         {
804             h->mb.cache.ref[l][i8+0] =
805             h->mb.cache.ref[l][i8+1] = ref[top_8x8 + 0];
806             h->mb.cache.ref[l][i8+2] =
807             h->mb.cache.ref[l][i8+3] = ref[top_8x8 + 1];
808             CP128( h->mb.cache.mv[l][i8], mv[top_4x4] );
809         }
810         else
811         {
812             M128( h->mb.cache.mv[l][i8] ) = M128_ZERO;
813             M32( &h->mb.cache.ref[l][i8] ) = (uint8_t)(-2) * 0x01010101U;
814         }
815
816         i8 = x264_scan8[0] + 4 - 1*8;
817         if( h->mb.i_neighbour & MB_TOPRIGHT )
818         {
819             h->mb.cache.ref[l][i8] = ref[top_8x8 + 2];
820             CP32( h->mb.cache.mv[l][i8], mv[top_4x4 + 4] );
821         }
822         else
823              h->mb.cache.ref[l][i8] = -2;
824
825         i8 = x264_scan8[0] - 1;
826         if( h->mb.i_neighbour & MB_LEFT )
827         {
828             const int ir = h->mb.i_b8_xy - 1;
829             const int iv = h->mb.i_b4_xy - 1;
830             h->mb.cache.ref[l][i8+0*8] =
831             h->mb.cache.ref[l][i8+1*8] = ref[ir + 0*s8x8];
832             h->mb.cache.ref[l][i8+2*8] =
833             h->mb.cache.ref[l][i8+3*8] = ref[ir + 1*s8x8];
834
835             CP32( h->mb.cache.mv[l][i8+0*8], mv[iv + 0*s4x4] );
836             CP32( h->mb.cache.mv[l][i8+1*8], mv[iv + 1*s4x4] );
837             CP32( h->mb.cache.mv[l][i8+2*8], mv[iv + 2*s4x4] );
838             CP32( h->mb.cache.mv[l][i8+3*8], mv[iv + 3*s4x4] );
839         }
840         else
841         {
842             for( int i = 0; i < 4; i++ )
843             {
844                 h->mb.cache.ref[l][i8+i*8] = -2;
845                 M32( h->mb.cache.mv[l][i8+i*8] ) = 0;
846             }
847         }
848
849         if( h->param.b_cabac )
850         {
851             uint8_t (*mvd)[8][2] = h->mb.mvd[l];
852             if( h->mb.i_neighbour & MB_TOP )
853                 CP64( h->mb.cache.mvd[l][x264_scan8[0] - 8], mvd[top][0] );
854             else
855                 M64( h->mb.cache.mvd[l][x264_scan8[0] - 8] ) = 0;
856
857             if( h->mb.i_neighbour & MB_LEFT )
858             {
859                 CP16( h->mb.cache.mvd[l][x264_scan8[0 ] - 1], mvd[left][4] );
860                 CP16( h->mb.cache.mvd[l][x264_scan8[2 ] - 1], mvd[left][5] );
861                 CP16( h->mb.cache.mvd[l][x264_scan8[8 ] - 1], mvd[left][6] );
862                 CP16( h->mb.cache.mvd[l][x264_scan8[10] - 1], mvd[left][3] );
863             }
864             else
865                 for( int i = 0; i < 4; i++ )
866                     M16( h->mb.cache.mvd[l][x264_scan8[0]-1+i*8] ) = 0;
867         }
868     }
869
870     /* load skip */
871     if( h->sh.i_type == SLICE_TYPE_B )
872     {
873         h->mb.bipred_weight = h->mb.bipred_weight_buf[h->mb.b_interlaced&(mb_y&1)];
874         h->mb.dist_scale_factor = h->mb.dist_scale_factor_buf[h->mb.b_interlaced&(mb_y&1)];
875         if( h->param.b_cabac )
876         {
877             uint8_t skipbp;
878             x264_macroblock_cache_skip( h, 0, 0, 4, 4, 0 );
879             skipbp = (h->mb.i_neighbour & MB_LEFT) ? h->mb.skipbp[left] : 0;
880             h->mb.cache.skip[x264_scan8[0] - 1] = skipbp & 0x2;
881             h->mb.cache.skip[x264_scan8[8] - 1] = skipbp & 0x8;
882             skipbp = (h->mb.i_neighbour & MB_TOP) ? h->mb.skipbp[top] : 0;
883             h->mb.cache.skip[x264_scan8[0] - 8] = skipbp & 0x4;
884             h->mb.cache.skip[x264_scan8[4] - 8] = skipbp & 0x8;
885         }
886     }
887
888     if( h->sh.i_type == SLICE_TYPE_P )
889         x264_mb_predict_mv_pskip( h, h->mb.cache.pskip_mv );
890
891     h->mb.i_neighbour4[0] =
892     h->mb.i_neighbour8[0] = (h->mb.i_neighbour_intra & (MB_TOP|MB_LEFT|MB_TOPLEFT))
893                             | ((h->mb.i_neighbour_intra & MB_TOP) ? MB_TOPRIGHT : 0);
894     h->mb.i_neighbour4[4] =
895     h->mb.i_neighbour4[1] = MB_LEFT | ((h->mb.i_neighbour_intra & MB_TOP) ? (MB_TOP|MB_TOPLEFT|MB_TOPRIGHT) : 0);
896     h->mb.i_neighbour4[2] =
897     h->mb.i_neighbour4[8] =
898     h->mb.i_neighbour4[10] =
899     h->mb.i_neighbour8[2] = MB_TOP|MB_TOPRIGHT | ((h->mb.i_neighbour_intra & MB_LEFT) ? (MB_LEFT|MB_TOPLEFT) : 0);
900     h->mb.i_neighbour4[5] =
901     h->mb.i_neighbour8[1] = MB_LEFT | (h->mb.i_neighbour_intra & MB_TOPRIGHT)
902                             | ((h->mb.i_neighbour_intra & MB_TOP) ? MB_TOP|MB_TOPLEFT : 0);
903 }
904
905 void x264_macroblock_cache_load_neighbours_deblock( x264_t *h, int mb_x, int mb_y )
906 {
907     int deblock_on_slice_edges = h->sh.i_disable_deblocking_filter_idc != 2;
908
909     h->mb.i_neighbour = 0;
910     h->mb.i_mb_xy = mb_y * h->mb.i_mb_stride + mb_x;
911
912     if( mb_x > 0 )
913     {
914         h->mb.i_mb_left_xy = h->mb.i_mb_xy - 1;
915         if( deblock_on_slice_edges || h->mb.slice_table[h->mb.i_mb_left_xy] == h->mb.slice_table[h->mb.i_mb_xy] )
916             h->mb.i_neighbour |= MB_LEFT;
917     }
918
919     if( mb_y > h->mb.b_interlaced )
920     {
921         h->mb.i_mb_top_xy = h->mb.i_mb_xy - (h->mb.i_mb_stride << h->mb.b_interlaced);
922         if( deblock_on_slice_edges || h->mb.slice_table[h->mb.i_mb_top_xy] == h->mb.slice_table[h->mb.i_mb_xy] )
923             h->mb.i_neighbour |= MB_TOP;
924     }
925 }
926
927 void x264_macroblock_cache_load_deblock( x264_t *h )
928 {
929     if( IS_INTRA( h->mb.type[h->mb.i_mb_xy] ) )
930         return;
931
932     /* If we have multiple slices and we're deblocking on slice edges, we
933      * have to reload neighbour data. */
934     if( h->sh.i_first_mb && h->sh.i_disable_deblocking_filter_idc != 2 )
935     {
936         int old_neighbour = h->mb.i_neighbour;
937         int mb_x = h->mb.i_mb_x;
938         int mb_y = h->mb.i_mb_y;
939         x264_macroblock_cache_load_neighbours_deblock( h, mb_x, mb_y );
940         int new_neighbour = h->mb.i_neighbour;
941         h->mb.i_neighbour &= ~old_neighbour;
942         if( h->mb.i_neighbour )
943         {
944             int top_y = mb_y - (1 << h->mb.b_interlaced);
945             int top_8x8 = (2*top_y+1) * h->mb.i_b8_stride + 2*mb_x;
946             int top_4x4 = (4*top_y+3) * h->mb.i_b4_stride + 4*mb_x;
947             int s8x8 = h->mb.i_b8_stride;
948             int s4x4 = h->mb.i_b4_stride;
949
950             uint8_t (*nnz)[24] = h->mb.non_zero_count;
951
952             if( h->mb.i_neighbour & MB_TOP )
953                 CP32( &h->mb.cache.non_zero_count[x264_scan8[0] - 8], &nnz[h->mb.i_mb_top_xy][12] );
954
955             if( h->mb.i_neighbour & MB_LEFT )
956             {
957                 int left = h->mb.i_mb_left_xy;
958                 h->mb.cache.non_zero_count[x264_scan8[0 ] - 1] = nnz[left][3];
959                 h->mb.cache.non_zero_count[x264_scan8[2 ] - 1] = nnz[left][7];
960                 h->mb.cache.non_zero_count[x264_scan8[8 ] - 1] = nnz[left][11];
961                 h->mb.cache.non_zero_count[x264_scan8[10] - 1] = nnz[left][15];
962             }
963
964             for( int l = 0; l <= (h->sh.i_type == SLICE_TYPE_B); l++ )
965             {
966                 int16_t (*mv)[2] = h->mb.mv[l];
967                 int8_t *ref = h->mb.ref[l];
968
969                 int i8 = x264_scan8[0] - 8;
970                 if( h->mb.i_neighbour & MB_TOP )
971                 {
972                     h->mb.cache.ref[l][i8+0] =
973                     h->mb.cache.ref[l][i8+1] = ref[top_8x8 + 0];
974                     h->mb.cache.ref[l][i8+2] =
975                     h->mb.cache.ref[l][i8+3] = ref[top_8x8 + 1];
976                     CP128( h->mb.cache.mv[l][i8], mv[top_4x4] );
977                 }
978
979                 i8 = x264_scan8[0] - 1;
980                 if( h->mb.i_neighbour & MB_LEFT )
981                 {
982                     int ir = h->mb.i_b8_xy - 1;
983                     int iv = h->mb.i_b4_xy - 1;
984                     h->mb.cache.ref[l][i8+0*8] =
985                     h->mb.cache.ref[l][i8+1*8] = ref[ir + 0*s8x8];
986                     h->mb.cache.ref[l][i8+2*8] =
987                     h->mb.cache.ref[l][i8+3*8] = ref[ir + 1*s8x8];
988
989                     CP32( h->mb.cache.mv[l][i8+0*8], mv[iv + 0*s4x4] );
990                     CP32( h->mb.cache.mv[l][i8+1*8], mv[iv + 1*s4x4] );
991                     CP32( h->mb.cache.mv[l][i8+2*8], mv[iv + 2*s4x4] );
992                     CP32( h->mb.cache.mv[l][i8+3*8], mv[iv + 3*s4x4] );
993                 }
994             }
995         }
996         h->mb.i_neighbour = new_neighbour;
997     }
998
999     if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART && h->sh.i_type == SLICE_TYPE_P )
1000     {
1001         /* Handle reference frame duplicates */
1002         int i8 = x264_scan8[0] - 8;
1003         h->mb.cache.ref[0][i8+0] =
1004         h->mb.cache.ref[0][i8+1] = deblock_ref_table(h->mb.cache.ref[0][i8+0]);
1005         h->mb.cache.ref[0][i8+2] =
1006         h->mb.cache.ref[0][i8+3] = deblock_ref_table(h->mb.cache.ref[0][i8+2]);
1007
1008         i8 = x264_scan8[0] - 1;
1009         h->mb.cache.ref[0][i8+0*8] =
1010         h->mb.cache.ref[0][i8+1*8] = deblock_ref_table(h->mb.cache.ref[0][i8+0*8]);
1011         h->mb.cache.ref[0][i8+2*8] =
1012         h->mb.cache.ref[0][i8+3*8] = deblock_ref_table(h->mb.cache.ref[0][i8+2*8]);
1013
1014         int ref0 = deblock_ref_table(h->mb.cache.ref[0][x264_scan8[ 0]]);
1015         int ref1 = deblock_ref_table(h->mb.cache.ref[0][x264_scan8[ 4]]);
1016         int ref2 = deblock_ref_table(h->mb.cache.ref[0][x264_scan8[ 8]]);
1017         int ref3 = deblock_ref_table(h->mb.cache.ref[0][x264_scan8[12]]);
1018         uint32_t reftop = pack16to32( (uint8_t)ref0, (uint8_t)ref1 ) * 0x0101;
1019         uint32_t refbot = pack16to32( (uint8_t)ref2, (uint8_t)ref3 ) * 0x0101;
1020
1021         M32( &h->mb.cache.ref[0][x264_scan8[0]+8*0] ) = reftop;
1022         M32( &h->mb.cache.ref[0][x264_scan8[0]+8*1] ) = reftop;
1023         M32( &h->mb.cache.ref[0][x264_scan8[0]+8*2] ) = refbot;
1024         M32( &h->mb.cache.ref[0][x264_scan8[0]+8*3] ) = refbot;
1025     }
1026
1027     /* Munge NNZ for cavlc + 8x8dct */
1028     if( !h->param.b_cabac && h->pps->b_transform_8x8_mode )
1029     {
1030         uint8_t (*nnz)[24] = h->mb.non_zero_count;
1031         int top = h->mb.i_mb_top_xy;
1032         int left = h->mb.i_mb_left_xy;
1033
1034         if( (h->mb.i_neighbour & MB_TOP) && h->mb.mb_transform_size[top] )
1035         {
1036             int i8 = x264_scan8[0] - 8;
1037             int nnz_top0 = M16( &nnz[top][8] ) | M16( &nnz[top][12] );
1038             int nnz_top1 = M16( &nnz[top][10] ) | M16( &nnz[top][14] );
1039             M16( &h->mb.cache.non_zero_count[i8+0] ) = nnz_top0 ? 0x0101 : 0;
1040             M16( &h->mb.cache.non_zero_count[i8+2] ) = nnz_top1 ? 0x0101 : 0;
1041         }
1042
1043         if( (h->mb.i_neighbour & MB_LEFT) && h->mb.mb_transform_size[left] )
1044         {
1045             int i8 = x264_scan8[0] - 1;
1046             int nnz_left0 = M16( &nnz[left][2] ) | M16( &nnz[left][6] );
1047             int nnz_left1 = M16( &nnz[left][10] ) | M16( &nnz[left][14] );
1048             h->mb.cache.non_zero_count[i8+8*0] = !!nnz_left0;
1049             h->mb.cache.non_zero_count[i8+8*1] = !!nnz_left0;
1050             h->mb.cache.non_zero_count[i8+8*2] = !!nnz_left1;
1051             h->mb.cache.non_zero_count[i8+8*3] = !!nnz_left1;
1052         }
1053
1054         if( h->mb.mb_transform_size[h->mb.i_mb_xy] )
1055         {
1056             int nnz0 = M16( &h->mb.cache.non_zero_count[x264_scan8[ 0]] ) | M16( &h->mb.cache.non_zero_count[x264_scan8[ 2]] );
1057             int nnz1 = M16( &h->mb.cache.non_zero_count[x264_scan8[ 4]] ) | M16( &h->mb.cache.non_zero_count[x264_scan8[ 6]] );
1058             int nnz2 = M16( &h->mb.cache.non_zero_count[x264_scan8[ 8]] ) | M16( &h->mb.cache.non_zero_count[x264_scan8[10]] );
1059             int nnz3 = M16( &h->mb.cache.non_zero_count[x264_scan8[12]] ) | M16( &h->mb.cache.non_zero_count[x264_scan8[14]] );
1060             uint32_t nnztop = pack16to32( !!nnz0, !!nnz1 ) * 0x0101;
1061             uint32_t nnzbot = pack16to32( !!nnz2, !!nnz3 ) * 0x0101;
1062
1063             M32( &h->mb.cache.non_zero_count[x264_scan8[0]+8*0] ) = nnztop;
1064             M32( &h->mb.cache.non_zero_count[x264_scan8[0]+8*1] ) = nnztop;
1065             M32( &h->mb.cache.non_zero_count[x264_scan8[0]+8*2] ) = nnzbot;
1066             M32( &h->mb.cache.non_zero_count[x264_scan8[0]+8*3] ) = nnzbot;
1067         }
1068     }
1069 }
1070
1071 static void ALWAYS_INLINE twiddle_topleft_pixel( pixel *dst, pixel *src, int b_interlaced )
1072 {
1073     // We update intra_border_backup in-place, so the topleft neighbor will no longer
1074     // exist there when load_pic_pointers wants it. Move it within p_fdec instead.
1075     if( b_interlaced )
1076     {
1077         dst[0] = dst[-1];
1078         dst[-1] = src[0];
1079     }
1080     else
1081         dst[0] = src[0];
1082 }
1083
1084 static void ALWAYS_INLINE x264_macroblock_store_pic( x264_t *h, int mb_x, int mb_y, int i, int b_interlaced )
1085 {
1086     int w = i ? 8 : 16;
1087     int i_stride = h->fdec->i_stride[i];
1088     int i_stride2 = i_stride << b_interlaced;
1089     int i_pix_offset = b_interlaced
1090                      ? 16 * mb_x + w * (mb_y&~1) * i_stride + (mb_y&1) * i_stride
1091                      : 16 * mb_x + w * mb_y * i_stride;
1092     pixel *intra_fdec = &h->intra_border_backup[mb_y&1][i][mb_x*16];
1093     if( i )
1094     {
1095         h->mc.store_interleave_8x8x2( &h->fdec->plane[1][i_pix_offset], i_stride2, h->mb.pic.p_fdec[1], h->mb.pic.p_fdec[2] );
1096         memcpy( intra_fdec,   h->mb.pic.p_fdec[1]+FDEC_STRIDE*7, 8*sizeof(pixel) );
1097         memcpy( intra_fdec+8, h->mb.pic.p_fdec[2]+FDEC_STRIDE*7, 8*sizeof(pixel) );
1098         twiddle_topleft_pixel( h->mb.pic.p_fdec[1]-FDEC_STRIDE-1, h->mb.pic.p_fdec[1]-FDEC_STRIDE+7, b_interlaced );
1099         twiddle_topleft_pixel( h->mb.pic.p_fdec[2]-FDEC_STRIDE-1, h->mb.pic.p_fdec[2]-FDEC_STRIDE+7, b_interlaced );
1100     }
1101     else
1102     {
1103         h->mc.copy[PIXEL_16x16]( &h->fdec->plane[0][i_pix_offset], i_stride2, h->mb.pic.p_fdec[0], FDEC_STRIDE, 16 );
1104         memcpy( intra_fdec, h->mb.pic.p_fdec[0]+FDEC_STRIDE*15, 16*sizeof(pixel) );
1105         twiddle_topleft_pixel( h->mb.pic.p_fdec[0]-FDEC_STRIDE-1, h->mb.pic.p_fdec[0]-FDEC_STRIDE+15, b_interlaced );
1106     }
1107 }
1108
1109 void x264_macroblock_cache_save( x264_t *h )
1110 {
1111     const int i_mb_xy = h->mb.i_mb_xy;
1112     const int i_mb_type = x264_mb_type_fix[h->mb.i_type];
1113     const int s8x8 = h->mb.i_b8_stride;
1114     const int s4x4 = h->mb.i_b4_stride;
1115     const int i_mb_4x4 = h->mb.i_b4_xy;
1116     const int i_mb_8x8 = h->mb.i_b8_xy;
1117
1118     /* GCC pessimizes direct stores to heap-allocated arrays due to aliasing. */
1119     /* By only dereferencing them once, we avoid this issue. */
1120     int8_t *i4x4 = h->mb.intra4x4_pred_mode[i_mb_xy];
1121     uint8_t *nnz = h->mb.non_zero_count[i_mb_xy];
1122
1123     if( h->mb.b_interlaced )
1124     {
1125         x264_macroblock_store_pic( h, h->mb.i_mb_x, h->mb.i_mb_y, 0, 1 );
1126         x264_macroblock_store_pic( h, h->mb.i_mb_x, h->mb.i_mb_y, 1, 1 );
1127     }
1128     else
1129     {
1130         x264_macroblock_store_pic( h, h->mb.i_mb_x, h->mb.i_mb_y, 0, 0 );
1131         x264_macroblock_store_pic( h, h->mb.i_mb_x, h->mb.i_mb_y, 1, 0 );
1132     }
1133
1134     x264_prefetch_fenc( h, h->fdec, h->mb.i_mb_x, h->mb.i_mb_y );
1135
1136     h->mb.type[i_mb_xy] = i_mb_type;
1137     h->mb.slice_table[i_mb_xy] = h->sh.i_first_mb;
1138     h->mb.partition[i_mb_xy] = IS_INTRA( i_mb_type ) ? D_16x16 : h->mb.i_partition;
1139     h->mb.i_mb_prev_xy = i_mb_xy;
1140
1141     /* save intra4x4 */
1142     if( i_mb_type == I_4x4 )
1143     {
1144         CP32( &i4x4[0], &h->mb.cache.intra4x4_pred_mode[x264_scan8[10]] );
1145         M32( &i4x4[4] ) = pack8to32( h->mb.cache.intra4x4_pred_mode[x264_scan8[5] ],
1146                                      h->mb.cache.intra4x4_pred_mode[x264_scan8[7] ],
1147                                      h->mb.cache.intra4x4_pred_mode[x264_scan8[13] ], 0);
1148     }
1149     else if( !h->param.b_constrained_intra || IS_INTRA(i_mb_type) )
1150         M64( i4x4 ) = I_PRED_4x4_DC * 0x0101010101010101ULL;
1151     else
1152         M64( i4x4 ) = (uint8_t)(-1) * 0x0101010101010101ULL;
1153
1154
1155     if( i_mb_type == I_PCM )
1156     {
1157         h->mb.qp[i_mb_xy] = 0;
1158         h->mb.i_last_dqp = 0;
1159         h->mb.i_cbp_chroma = 2;
1160         h->mb.i_cbp_luma = 0xf;
1161         h->mb.cbp[i_mb_xy] = 0x72f;   /* all set */
1162         h->mb.b_transform_8x8 = 0;
1163         for( int i = 0; i < 24; i++ )
1164             h->mb.cache.non_zero_count[x264_scan8[i]] = h->param.b_cabac ? 1 : 16;
1165     }
1166     else
1167     {
1168         if( h->mb.i_type != I_16x16 && h->mb.i_cbp_luma == 0 && h->mb.i_cbp_chroma == 0 )
1169             h->mb.i_qp = h->mb.i_last_qp;
1170         h->mb.qp[i_mb_xy] = h->mb.i_qp;
1171         h->mb.i_last_dqp = h->mb.i_qp - h->mb.i_last_qp;
1172         h->mb.i_last_qp = h->mb.i_qp;
1173     }
1174
1175     /* save non zero count */
1176     CP32( &nnz[0*4], &h->mb.cache.non_zero_count[x264_scan8[0]+0*8] );
1177     CP32( &nnz[1*4], &h->mb.cache.non_zero_count[x264_scan8[0]+1*8] );
1178     CP32( &nnz[2*4], &h->mb.cache.non_zero_count[x264_scan8[0]+2*8] );
1179     CP32( &nnz[3*4], &h->mb.cache.non_zero_count[x264_scan8[0]+3*8] );
1180     M16( &nnz[16+0*2] ) = M32( &h->mb.cache.non_zero_count[x264_scan8[16+0*2]-1] ) >> 8;
1181     M16( &nnz[16+1*2] ) = M32( &h->mb.cache.non_zero_count[x264_scan8[16+1*2]-1] ) >> 8;
1182     M16( &nnz[16+2*2] ) = M32( &h->mb.cache.non_zero_count[x264_scan8[16+2*2]-1] ) >> 8;
1183     M16( &nnz[16+3*2] ) = M32( &h->mb.cache.non_zero_count[x264_scan8[16+3*2]-1] ) >> 8;
1184
1185     if( h->mb.i_cbp_luma == 0 && h->mb.i_type != I_8x8 )
1186         h->mb.b_transform_8x8 = 0;
1187     h->mb.mb_transform_size[i_mb_xy] = h->mb.b_transform_8x8;
1188
1189     if( h->sh.i_type != SLICE_TYPE_I )
1190     {
1191         int16_t (*mv0)[2] = &h->mb.mv[0][i_mb_4x4];
1192         int16_t (*mv1)[2] = &h->mb.mv[1][i_mb_4x4];
1193         int8_t *ref0 = &h->mb.ref[0][i_mb_8x8];
1194         int8_t *ref1 = &h->mb.ref[1][i_mb_8x8];
1195         if( !IS_INTRA( i_mb_type ) )
1196         {
1197             ref0[0+0*s8x8] = h->mb.cache.ref[0][x264_scan8[0]];
1198             ref0[1+0*s8x8] = h->mb.cache.ref[0][x264_scan8[4]];
1199             ref0[0+1*s8x8] = h->mb.cache.ref[0][x264_scan8[8]];
1200             ref0[1+1*s8x8] = h->mb.cache.ref[0][x264_scan8[12]];
1201             CP128( &mv0[0*s4x4], h->mb.cache.mv[0][x264_scan8[0]+8*0] );
1202             CP128( &mv0[1*s4x4], h->mb.cache.mv[0][x264_scan8[0]+8*1] );
1203             CP128( &mv0[2*s4x4], h->mb.cache.mv[0][x264_scan8[0]+8*2] );
1204             CP128( &mv0[3*s4x4], h->mb.cache.mv[0][x264_scan8[0]+8*3] );
1205             if( h->sh.i_type == SLICE_TYPE_B )
1206             {
1207                 ref1[0+0*s8x8] = h->mb.cache.ref[1][x264_scan8[0]];
1208                 ref1[1+0*s8x8] = h->mb.cache.ref[1][x264_scan8[4]];
1209                 ref1[0+1*s8x8] = h->mb.cache.ref[1][x264_scan8[8]];
1210                 ref1[1+1*s8x8] = h->mb.cache.ref[1][x264_scan8[12]];
1211                 CP128( &mv1[0*s4x4], h->mb.cache.mv[1][x264_scan8[0]+8*0] );
1212                 CP128( &mv1[1*s4x4], h->mb.cache.mv[1][x264_scan8[0]+8*1] );
1213                 CP128( &mv1[2*s4x4], h->mb.cache.mv[1][x264_scan8[0]+8*2] );
1214                 CP128( &mv1[3*s4x4], h->mb.cache.mv[1][x264_scan8[0]+8*3] );
1215             }
1216         }
1217         else
1218         {
1219             M16( &ref0[0*s8x8] ) = (uint8_t)(-1) * 0x0101;
1220             M16( &ref0[1*s8x8] ) = (uint8_t)(-1) * 0x0101;
1221             M128( &mv0[0*s4x4] ) = M128_ZERO;
1222             M128( &mv0[1*s4x4] ) = M128_ZERO;
1223             M128( &mv0[2*s4x4] ) = M128_ZERO;
1224             M128( &mv0[3*s4x4] ) = M128_ZERO;
1225             if( h->sh.i_type == SLICE_TYPE_B )
1226             {
1227                 M16( &ref1[0*s8x8] ) = (uint8_t)(-1) * 0x0101;
1228                 M16( &ref1[1*s8x8] ) = (uint8_t)(-1) * 0x0101;
1229                 M128( &mv1[0*s4x4] ) = M128_ZERO;
1230                 M128( &mv1[1*s4x4] ) = M128_ZERO;
1231                 M128( &mv1[2*s4x4] ) = M128_ZERO;
1232                 M128( &mv1[3*s4x4] ) = M128_ZERO;
1233             }
1234         }
1235     }
1236
1237     if( h->param.b_cabac )
1238     {
1239         uint8_t (*mvd0)[2] = h->mb.mvd[0][i_mb_xy];
1240         uint8_t (*mvd1)[2] = h->mb.mvd[1][i_mb_xy];
1241         if( IS_INTRA(i_mb_type) && i_mb_type != I_PCM )
1242             h->mb.chroma_pred_mode[i_mb_xy] = x264_mb_pred_mode8x8c_fix[ h->mb.i_chroma_pred_mode ];
1243         else
1244             h->mb.chroma_pred_mode[i_mb_xy] = I_PRED_CHROMA_DC;
1245
1246         if( (0x3FF30 >> i_mb_type) & 1 ) /* !INTRA && !SKIP && !DIRECT */
1247         {
1248             CP64( mvd0[0], h->mb.cache.mvd[0][x264_scan8[10]] );
1249             CP16( mvd0[4], h->mb.cache.mvd[0][x264_scan8[5 ]] );
1250             CP16( mvd0[5], h->mb.cache.mvd[0][x264_scan8[7 ]] );
1251             CP16( mvd0[6], h->mb.cache.mvd[0][x264_scan8[13]] );
1252             if( h->sh.i_type == SLICE_TYPE_B )
1253             {
1254                 CP64( mvd1[0], h->mb.cache.mvd[1][x264_scan8[10]] );
1255                 CP16( mvd1[4], h->mb.cache.mvd[1][x264_scan8[5 ]] );
1256                 CP16( mvd1[5], h->mb.cache.mvd[1][x264_scan8[7 ]] );
1257                 CP16( mvd1[6], h->mb.cache.mvd[1][x264_scan8[13]] );
1258             }
1259         }
1260         else
1261         {
1262             M128( mvd0[0] ) = M128_ZERO;
1263             if( h->sh.i_type == SLICE_TYPE_B )
1264                 M128( mvd1[0] ) = M128_ZERO;
1265         }
1266
1267         if( h->sh.i_type == SLICE_TYPE_B )
1268         {
1269             if( i_mb_type == B_SKIP || i_mb_type == B_DIRECT )
1270                 h->mb.skipbp[i_mb_xy] = 0xf;
1271             else if( i_mb_type == B_8x8 )
1272             {
1273                 int skipbp = ( h->mb.i_sub_partition[0] == D_DIRECT_8x8 ) << 0;
1274                 skipbp    |= ( h->mb.i_sub_partition[1] == D_DIRECT_8x8 ) << 1;
1275                 skipbp    |= ( h->mb.i_sub_partition[2] == D_DIRECT_8x8 ) << 2;
1276                 skipbp    |= ( h->mb.i_sub_partition[3] == D_DIRECT_8x8 ) << 3;
1277                 h->mb.skipbp[i_mb_xy] = skipbp;
1278             }
1279             else
1280                 h->mb.skipbp[i_mb_xy] = 0;
1281         }
1282     }
1283 }
1284
1285
1286 void x264_macroblock_bipred_init( x264_t *h )
1287 {
1288     for( int field = 0; field <= h->sh.b_mbaff; field++ )
1289         for( int i_ref0 = 0; i_ref0 < (h->i_ref[0]<<h->sh.b_mbaff); i_ref0++ )
1290         {
1291             x264_frame_t *l0 = h->fref[0][i_ref0>>h->sh.b_mbaff];
1292             int poc0 = l0->i_poc + l0->i_delta_poc[field^(i_ref0&1)];
1293             for( int i_ref1 = 0; i_ref1 < (h->i_ref[1]<<h->sh.b_mbaff); i_ref1++ )
1294             {
1295                 int dist_scale_factor;
1296                 x264_frame_t *l1 = h->fref[1][i_ref1>>h->sh.b_mbaff];
1297                 int poc1 = l1->i_poc + l1->i_delta_poc[field^(i_ref1&1)];
1298                 int cur_poc = h->fdec->i_poc + h->fdec->i_delta_poc[field];
1299                 int td = x264_clip3( poc1 - poc0, -128, 127 );
1300                 if( td == 0 /* || pic0 is a long-term ref */ )
1301                     dist_scale_factor = 256;
1302                 else
1303                 {
1304                     int tb = x264_clip3( cur_poc - poc0, -128, 127 );
1305                     int tx = (16384 + (abs(td) >> 1)) / td;
1306                     dist_scale_factor = x264_clip3( (tb * tx + 32) >> 6, -1024, 1023 );
1307                 }
1308
1309                 h->mb.dist_scale_factor_buf[field][i_ref0][i_ref1] = dist_scale_factor;
1310
1311                 dist_scale_factor >>= 2;
1312                 if( h->param.analyse.b_weighted_bipred
1313                       && dist_scale_factor >= -64
1314                       && dist_scale_factor <= 128 )
1315                 {
1316                     h->mb.bipred_weight_buf[field][i_ref0][i_ref1] = 64 - dist_scale_factor;
1317                     // ssse3 implementation of biweight doesn't support the extrema.
1318                     // if we ever generate them, we'll have to drop that optimization.
1319                     assert( dist_scale_factor >= -63 && dist_scale_factor <= 127 );
1320                 }
1321                 else
1322                     h->mb.bipred_weight_buf[field][i_ref0][i_ref1] = 32;
1323             }
1324         }
1325 }
1326