]> git.sesse.net Git - x264/blob - common/macroblock.c
Cut size of MVD arrays by a factor of 2 again
[x264] / common / macroblock.c
1 /*****************************************************************************
2  * macroblock.c: h264 encoder library
3  *****************************************************************************
4  * Copyright (C) 2003-2008 x264 project
5  *
6  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
7  *          Loren Merritt <lorenm@u.washington.edu>
8  *          Fiona Glaser <fiona@x264.com>
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
25 #include "common.h"
26 #include "encoder/me.h"
27
28 void x264_mb_predict_mv( x264_t *h, int i_list, int idx, int i_width, int16_t mvp[2] )
29 {
30     const int i8 = x264_scan8[idx];
31     const int i_ref= h->mb.cache.ref[i_list][i8];
32     int     i_refa = h->mb.cache.ref[i_list][i8 - 1];
33     int16_t *mv_a  = h->mb.cache.mv[i_list][i8 - 1];
34     int     i_refb = h->mb.cache.ref[i_list][i8 - 8];
35     int16_t *mv_b  = h->mb.cache.mv[i_list][i8 - 8];
36     int     i_refc = h->mb.cache.ref[i_list][i8 - 8 + i_width];
37     int16_t *mv_c  = h->mb.cache.mv[i_list][i8 - 8 + i_width];
38
39     if( (idx&3) >= 2 + (i_width&1) || i_refc == -2 )
40     {
41         i_refc = h->mb.cache.ref[i_list][i8 - 8 - 1];
42         mv_c   = h->mb.cache.mv[i_list][i8 - 8 - 1];
43     }
44
45     if( h->mb.i_partition == D_16x8 )
46     {
47         if( idx == 0 )
48         {
49             if( i_refb == i_ref )
50             {
51                 CP32( mvp, mv_b );
52                 return;
53             }
54         }
55         else
56         {
57             if( i_refa == i_ref )
58             {
59                 CP32( mvp, mv_a );
60                 return;
61             }
62         }
63     }
64     else if( h->mb.i_partition == D_8x16 )
65     {
66         if( idx == 0 )
67         {
68             if( i_refa == i_ref )
69             {
70                 CP32( mvp, mv_a );
71                 return;
72             }
73         }
74         else
75         {
76             if( i_refc == i_ref )
77             {
78                 CP32( mvp, mv_c );
79                 return;
80             }
81         }
82     }
83
84     int i_count = (i_refa == i_ref) + (i_refb == i_ref) + (i_refc == i_ref);
85
86     if( i_count > 1 )
87     {
88 median:
89         x264_median_mv( mvp, mv_a, mv_b, mv_c );
90     }
91     else if( i_count == 1 )
92     {
93         if( i_refa == i_ref )
94             CP32( mvp, mv_a );
95         else if( i_refb == i_ref )
96             CP32( mvp, mv_b );
97         else
98             CP32( mvp, mv_c );
99     }
100     else if( i_refb == -2 && i_refc == -2 && i_refa != -2 )
101         CP32( mvp, mv_a );
102     else
103         goto median;
104 }
105
106 void x264_mb_predict_mv_16x16( x264_t *h, int i_list, int i_ref, int16_t mvp[2] )
107 {
108     int     i_refa = h->mb.cache.ref[i_list][X264_SCAN8_0 - 1];
109     int16_t *mv_a  = h->mb.cache.mv[i_list][X264_SCAN8_0 - 1];
110     int     i_refb = h->mb.cache.ref[i_list][X264_SCAN8_0 - 8];
111     int16_t *mv_b  = h->mb.cache.mv[i_list][X264_SCAN8_0 - 8];
112     int     i_refc = h->mb.cache.ref[i_list][X264_SCAN8_0 - 8 + 4];
113     int16_t *mv_c  = h->mb.cache.mv[i_list][X264_SCAN8_0 - 8 + 4];
114     if( i_refc == -2 )
115     {
116         i_refc = h->mb.cache.ref[i_list][X264_SCAN8_0 - 8 - 1];
117         mv_c   = h->mb.cache.mv[i_list][X264_SCAN8_0 - 8 - 1];
118     }
119
120     int i_count = (i_refa == i_ref) + (i_refb == i_ref) + (i_refc == i_ref);
121
122     if( i_count > 1 )
123     {
124 median:
125         x264_median_mv( mvp, mv_a, mv_b, mv_c );
126     }
127     else if( i_count == 1 )
128     {
129         if( i_refa == i_ref )
130             CP32( mvp, mv_a );
131         else if( i_refb == i_ref )
132             CP32( mvp, mv_b );
133         else
134             CP32( mvp, mv_c );
135     }
136     else if( i_refb == -2 && i_refc == -2 && i_refa != -2 )
137         CP32( mvp, mv_a );
138     else
139         goto median;
140 }
141
142
143 void x264_mb_predict_mv_pskip( x264_t *h, int16_t mv[2] )
144 {
145     int     i_refa = h->mb.cache.ref[0][X264_SCAN8_0 - 1];
146     int     i_refb = h->mb.cache.ref[0][X264_SCAN8_0 - 8];
147     int16_t *mv_a  = h->mb.cache.mv[0][X264_SCAN8_0 - 1];
148     int16_t *mv_b  = h->mb.cache.mv[0][X264_SCAN8_0 - 8];
149
150     if( i_refa == -2 || i_refb == -2 ||
151         !( i_refa | M32( mv_a ) ) ||
152         !( i_refb | M32( mv_b ) ) )
153     {
154         M32( mv ) = 0;
155     }
156     else
157     {
158         x264_mb_predict_mv_16x16( h, 0, 0, mv );
159     }
160 }
161
162 static int x264_mb_predict_mv_direct16x16_temporal( x264_t *h )
163 {
164     int i_mb_4x4 = 16 * h->mb.i_mb_stride * h->mb.i_mb_y + 4 * h->mb.i_mb_x;
165     int i_mb_8x8 =  4 * h->mb.i_mb_stride * h->mb.i_mb_y + 2 * h->mb.i_mb_x;
166     int i8;
167     const int type_col = h->fref1[0]->mb_type[h->mb.i_mb_xy];
168     const int partition_col = h->fref1[0]->mb_partition[h->mb.i_mb_xy];
169
170     x264_macroblock_cache_ref( h, 0, 0, 4, 4, 1, 0 );
171
172     h->mb.i_partition = partition_col;
173
174     if( IS_INTRA( type_col ) )
175     {
176         x264_macroblock_cache_ref( h, 0, 0, 4, 4, 0, 0 );
177         x264_macroblock_cache_mv(  h, 0, 0, 4, 4, 0, 0 );
178         x264_macroblock_cache_mv(  h, 0, 0, 4, 4, 1, 0 );
179         return 1;
180     }
181
182     /* Don't do any checks other than the ones we have to, based
183      * on the size of the colocated partitions.
184      * Depends on the enum order: D_8x8, D_16x8, D_8x16, D_16x16 */
185     int max_i8 = (D_16x16 - partition_col) + 1;
186     int step = (partition_col == D_16x8) + 1;
187     int width = 4 >> ((D_16x16 - partition_col)&1);
188     int height = 4 >> ((D_16x16 - partition_col)>>1);
189
190     for( i8 = 0; i8 < max_i8; i8 += step )
191     {
192         const int x8 = i8%2;
193         const int y8 = i8/2;
194         const int i_part_8x8 = i_mb_8x8 + x8 + y8 * h->mb.i_b8_stride;
195         const int i_ref1_ref = h->fref1[0]->ref[0][i_part_8x8];
196         const int i_ref = (map_col_to_list0(i_ref1_ref>>h->sh.b_mbaff) << h->sh.b_mbaff) + (i_ref1_ref&h->sh.b_mbaff);
197
198         if( i_ref >= 0 )
199         {
200             const int dist_scale_factor = h->mb.dist_scale_factor[i_ref][0];
201             const int16_t *mv_col = h->fref1[0]->mv[0][i_mb_4x4 + 3*x8 + 3*y8 * h->mb.i_b4_stride];
202             const int l0x = ( dist_scale_factor * mv_col[0] + 128 ) >> 8;
203             const int l0y = ( dist_scale_factor * mv_col[1] + 128 ) >> 8;
204             if( h->param.i_threads > 1 && (l0y > h->mb.mv_max_spel[1] || l0y-mv_col[1] > h->mb.mv_max_spel[1]) )
205                 return 0;
206             x264_macroblock_cache_ref( h, 2*x8, 2*y8, width, height, 0, i_ref );
207             x264_macroblock_cache_mv( h, 2*x8, 2*y8, width, height, 0, pack16to32_mask(l0x, l0y) );
208             x264_macroblock_cache_mv( h, 2*x8, 2*y8, width, height, 1, pack16to32_mask(l0x-mv_col[0], l0y-mv_col[1]) );
209         }
210         else
211         {
212             /* the collocated ref isn't in the current list0 */
213             /* FIXME: we might still be able to use direct_8x8 on some partitions */
214             /* FIXME: with B-pyramid + extensive ref list reordering
215              *   (not currently used), we would also have to check
216              *   l1mv1 like in spatial mode */
217             return 0;
218         }
219     }
220
221     return 1;
222 }
223
224 static int x264_mb_predict_mv_direct16x16_spatial( x264_t *h )
225 {
226     int8_t ref[2];
227     ALIGNED_ARRAY_8( int16_t, mv,[2],[2] );
228     int i_list, i8, i_ref;
229     const int8_t *l1ref0 = &h->fref1[0]->ref[0][h->mb.i_b8_xy];
230     const int8_t *l1ref1 = &h->fref1[0]->ref[1][h->mb.i_b8_xy];
231     const int16_t (*l1mv[2])[2] = { (const int16_t (*)[2]) &h->fref1[0]->mv[0][h->mb.i_b4_xy],
232                                     (const int16_t (*)[2]) &h->fref1[0]->mv[1][h->mb.i_b4_xy] };
233     const int type_col = h->fref1[0]->mb_type[h->mb.i_mb_xy];
234     const int partition_col = h->fref1[0]->mb_partition[h->mb.i_mb_xy];
235
236     h->mb.i_partition = partition_col;
237
238     for( i_list = 0; i_list < 2; i_list++ )
239     {
240         int     i_refa = h->mb.cache.ref[i_list][X264_SCAN8_0 - 1];
241         int16_t *mv_a  = h->mb.cache.mv[i_list][X264_SCAN8_0 - 1];
242         int     i_refb = h->mb.cache.ref[i_list][X264_SCAN8_0 - 8];
243         int16_t *mv_b  = h->mb.cache.mv[i_list][X264_SCAN8_0 - 8];
244         int     i_refc = h->mb.cache.ref[i_list][X264_SCAN8_0 - 8 + 4];
245         int16_t *mv_c  = h->mb.cache.mv[i_list][X264_SCAN8_0 - 8 + 4];
246         if( i_refc == -2 )
247         {
248             i_refc = h->mb.cache.ref[i_list][X264_SCAN8_0 - 8 - 1];
249             mv_c   = h->mb.cache.mv[i_list][X264_SCAN8_0 - 8 - 1];
250         }
251
252         i_ref = X264_MIN3( (unsigned)i_refa, (unsigned)i_refb, (unsigned)i_refc );
253         if( i_ref < 0 )
254         {
255             i_ref = -1;
256             M32( mv[i_list] ) = 0;
257         }
258         else
259         {
260             /* Same as x264_mb_predict_mv_16x16, but simplified to eliminate cases
261              * not relevant to spatial direct. */
262             int i_count = (i_refa == i_ref) + (i_refb == i_ref) + (i_refc == i_ref);
263
264             if( i_count > 1 )
265                 x264_median_mv( mv[i_list], mv_a, mv_b, mv_c );
266             else
267             {
268                 if( i_refa == i_ref )
269                     CP32( mv[i_list], mv_a );
270                 else if( i_refb == i_ref )
271                     CP32( mv[i_list], mv_b );
272                 else
273                     CP32( mv[i_list], mv_c );
274             }
275         }
276
277         x264_macroblock_cache_ref( h, 0, 0, 4, 4, i_list, i_ref );
278         x264_macroblock_cache_mv_ptr( h, 0, 0, 4, 4, i_list, mv[i_list] );
279         ref[i_list] = i_ref;
280     }
281
282     if( (M16( ref ) & 0x8080) == 0x8080 ) /* if( ref[0] < 0 && ref[1] < 0 ) */
283     {
284         x264_macroblock_cache_ref( h, 0, 0, 4, 4, 0, 0 );
285         x264_macroblock_cache_ref( h, 0, 0, 4, 4, 1, 0 );
286         return 1;
287     }
288
289     if( !M64( mv ) || IS_INTRA( type_col ) || (ref[0]&&ref[1]) )
290         return 1;
291
292     if( h->param.i_threads > 1
293         && ( mv[0][1] > h->mb.mv_max_spel[1]
294           || mv[1][1] > h->mb.mv_max_spel[1] ) )
295     {
296 #if 0
297         fprintf(stderr, "direct_spatial: (%d,%d) (%d,%d) > %d \n",
298                 mv[0][0], mv[0][1], mv[1][0], mv[1][1],
299                 h->mb.mv_max_spel[1]);
300 #endif
301         return 0;
302     }
303
304     /* Don't do any checks other than the ones we have to, based
305      * on the size of the colocated partitions.
306      * Depends on the enum order: D_8x8, D_16x8, D_8x16, D_16x16 */
307     int max_i8 = (D_16x16 - partition_col) + 1;
308     int step = (partition_col == D_16x8) + 1;
309     int width = 4 >> ((D_16x16 - partition_col)&1);
310     int height = 4 >> ((D_16x16 - partition_col)>>1);
311
312     /* col_zero_flag */
313     for( i8 = 0; i8 < max_i8; i8 += step )
314     {
315         const int x8 = i8&1;
316         const int y8 = i8>>1;
317         const int o8 = x8 + y8 * h->mb.i_b8_stride;
318         const int o4 = 3*(x8 + y8 * h->mb.i_b4_stride);
319         int idx;
320         if( l1ref0[o8] == 0 )
321             idx = 0;
322         else if( l1ref0[o8] < 0 && l1ref1[o8] == 0 )
323             idx = 1;
324         else
325             continue;
326
327         if( abs( l1mv[idx][o4][0] ) <= 1 && abs( l1mv[idx][o4][1] ) <= 1 )
328         {
329             if( ref[0] == 0 ) x264_macroblock_cache_mv( h, 2*x8, 2*y8, width, height, 0, 0 );
330             if( ref[1] == 0 ) x264_macroblock_cache_mv( h, 2*x8, 2*y8, width, height, 1, 0 );
331         }
332     }
333
334     return 1;
335 }
336
337 int x264_mb_predict_mv_direct16x16( x264_t *h, int *b_changed )
338 {
339     int b_available;
340     if( h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_NONE )
341         return 0;
342     else if( h->sh.b_direct_spatial_mv_pred )
343         b_available = x264_mb_predict_mv_direct16x16_spatial( h );
344     else
345         b_available = x264_mb_predict_mv_direct16x16_temporal( h );
346
347     if( b_changed != NULL && b_available )
348     {
349         int changed;
350
351         changed  = M32( h->mb.cache.direct_mv[0][0] ) ^ M32( h->mb.cache.mv[0][x264_scan8[0]] );
352         changed |= M32( h->mb.cache.direct_mv[1][0] ) ^ M32( h->mb.cache.mv[1][x264_scan8[0]] );
353         changed |= h->mb.cache.direct_ref[0][0] ^ h->mb.cache.ref[0][x264_scan8[0]];
354         changed |= h->mb.cache.direct_ref[1][0] ^ h->mb.cache.ref[1][x264_scan8[0]];
355         if( !changed && h->mb.i_partition != D_16x16 )
356         {
357             changed |= M32( h->mb.cache.direct_mv[0][3] ) ^ M32( h->mb.cache.mv[0][x264_scan8[12]] );
358             changed |= M32( h->mb.cache.direct_mv[1][3] ) ^ M32( h->mb.cache.mv[1][x264_scan8[12]] );
359             changed |= h->mb.cache.direct_ref[0][3] ^ h->mb.cache.ref[0][x264_scan8[12]];
360             changed |= h->mb.cache.direct_ref[1][3] ^ h->mb.cache.ref[1][x264_scan8[12]];
361         }
362         if( !changed && h->mb.i_partition == D_8x8 )
363         {
364             changed |= M32( h->mb.cache.direct_mv[0][1] ) ^ M32( h->mb.cache.mv[0][x264_scan8[4]] );
365             changed |= M32( h->mb.cache.direct_mv[1][1] ) ^ M32( h->mb.cache.mv[1][x264_scan8[4]] );
366             changed |= M32( h->mb.cache.direct_mv[0][2] ) ^ M32( h->mb.cache.mv[0][x264_scan8[8]] );
367             changed |= M32( h->mb.cache.direct_mv[1][2] ) ^ M32( h->mb.cache.mv[1][x264_scan8[8]] );
368             changed |= h->mb.cache.direct_ref[0][1] ^ h->mb.cache.ref[0][x264_scan8[4]];
369             changed |= h->mb.cache.direct_ref[1][1] ^ h->mb.cache.ref[1][x264_scan8[4]];
370             changed |= h->mb.cache.direct_ref[0][2] ^ h->mb.cache.ref[0][x264_scan8[8]];
371             changed |= h->mb.cache.direct_ref[1][2] ^ h->mb.cache.ref[1][x264_scan8[8]];
372         }
373         *b_changed = changed;
374         if( !changed )
375             return b_available;
376     }
377
378     /* cache ref & mv */
379     if( b_available )
380     {
381         int l;
382         for( l = 0; l < 2; l++ )
383         {
384             CP32( h->mb.cache.direct_mv[l][0], h->mb.cache.mv[l][x264_scan8[ 0]] );
385             CP32( h->mb.cache.direct_mv[l][1], h->mb.cache.mv[l][x264_scan8[ 4]] );
386             CP32( h->mb.cache.direct_mv[l][2], h->mb.cache.mv[l][x264_scan8[ 8]] );
387             CP32( h->mb.cache.direct_mv[l][3], h->mb.cache.mv[l][x264_scan8[12]] );
388             h->mb.cache.direct_ref[l][0] = h->mb.cache.ref[l][x264_scan8[ 0]];
389             h->mb.cache.direct_ref[l][1] = h->mb.cache.ref[l][x264_scan8[ 4]];
390             h->mb.cache.direct_ref[l][2] = h->mb.cache.ref[l][x264_scan8[ 8]];
391             h->mb.cache.direct_ref[l][3] = h->mb.cache.ref[l][x264_scan8[12]];
392             h->mb.cache.direct_partition = h->mb.i_partition;
393         }
394     }
395
396     return b_available;
397 }
398
399 /* This just improves encoder performance, it's not part of the spec */
400 void x264_mb_predict_mv_ref16x16( x264_t *h, int i_list, int i_ref, int16_t mvc[9][2], int *i_mvc )
401 {
402     int16_t (*mvr)[2] = h->mb.mvr[i_list][i_ref];
403     int i = 0;
404
405 #define SET_MVP(mvp) { \
406         CP32( mvc[i], mvp ); \
407         i++; \
408     }
409
410     /* b_direct */
411     if( h->sh.i_type == SLICE_TYPE_B
412         && h->mb.cache.ref[i_list][x264_scan8[12]] == i_ref )
413     {
414         SET_MVP( h->mb.cache.mv[i_list][x264_scan8[12]] );
415     }
416
417     if( i_ref == 0 && h->frames.b_have_lowres )
418     {
419         int16_t (*lowres_mv)[2] = i_list ? h->fenc->lowres_mvs[1][h->fref1[0]->i_frame-h->fenc->i_frame-1]
420                                          : h->fenc->lowres_mvs[0][h->fenc->i_frame-h->fref0[0]->i_frame-1];
421         if( lowres_mv[0][0] != 0x7fff )
422         {
423             M32( mvc[i] ) = (M32( lowres_mv[h->mb.i_mb_xy] )*2)&0xfffeffff;
424             i++;
425         }
426     }
427
428     /* spatial predictors */
429     if( h->mb.i_neighbour & MB_LEFT )
430     {
431         int i_mb_l = h->mb.i_mb_xy - 1;
432         /* skip MBs didn't go through the whole search process, so mvr is undefined */
433         if( !IS_SKIP( h->mb.type[i_mb_l] ) )
434             SET_MVP( mvr[i_mb_l] );
435     }
436     if( h->mb.i_neighbour & MB_TOP )
437     {
438         int i_mb_t = h->mb.i_mb_top_xy;
439         if( !IS_SKIP( h->mb.type[i_mb_t] ) )
440             SET_MVP( mvr[i_mb_t] );
441
442         if( h->mb.i_neighbour & MB_TOPLEFT && !IS_SKIP( h->mb.type[i_mb_t - 1] ) )
443             SET_MVP( mvr[i_mb_t-1] );
444         if( h->mb.i_mb_x < h->mb.i_mb_stride - 1 && !IS_SKIP( h->mb.type[i_mb_t + 1] ) )
445             SET_MVP( mvr[i_mb_t+1] );
446     }
447 #undef SET_MVP
448
449     /* temporal predictors */
450     if( h->fref0[0]->i_ref[0] > 0 )
451     {
452         x264_frame_t *l0 = h->fref0[0];
453         int field = h->mb.i_mb_y&1;
454         int curpoc = h->fdec->i_poc + field*h->sh.i_delta_poc_bottom;
455         int refpoc = h->fref0[i_ref>>h->sh.b_mbaff]->i_poc;
456         if( h->sh.b_mbaff && field^(i_ref&1) )
457             refpoc += h->sh.i_delta_poc_bottom;
458
459 #define SET_TMVP(dx, dy) { \
460             int i_b4 = h->mb.i_b4_xy + dx*4 + dy*4*h->mb.i_b4_stride; \
461             int i_b8 = h->mb.i_b8_xy + dx*2 + dy*2*h->mb.i_b8_stride; \
462             int ref_col = l0->ref[0][i_b8]; \
463             if( ref_col >= 0 ) \
464             { \
465                 int scale = (curpoc - refpoc) * l0->inv_ref_poc[h->mb.b_interlaced&field][ref_col];\
466                 mvc[i][0] = (l0->mv[0][i_b4][0]*scale + 128) >> 8;\
467                 mvc[i][1] = (l0->mv[0][i_b4][1]*scale + 128) >> 8;\
468                 i++; \
469             } \
470         }
471
472         SET_TMVP(0,0);
473         if( h->mb.i_mb_x < h->sps->i_mb_width-1 )
474             SET_TMVP(1,0);
475         if( h->mb.i_mb_y < h->sps->i_mb_height-1 )
476             SET_TMVP(0,1);
477 #undef SET_TMVP
478     }
479
480     *i_mvc = i;
481 }
482
483 /* Set up a lookup table for delta pocs to reduce an IDIV to an IMUL */
484 static void setup_inverse_delta_pocs( x264_t *h )
485 {
486     int i, field;
487     for( field = 0; field <= h->sh.b_mbaff; field++ )
488     {
489         int curpoc = h->fdec->i_poc + field*h->sh.i_delta_poc_bottom;
490         for( i = 0; i < (h->i_ref0<<h->sh.b_mbaff); i++ )
491         {
492             int refpoc = h->fref0[i>>h->sh.b_mbaff]->i_poc;
493             if( h->sh.b_mbaff && field^(i&1) )
494                 refpoc += h->sh.i_delta_poc_bottom;
495             int delta = curpoc - refpoc;
496
497             h->fdec->inv_ref_poc[field][i] = (256 + delta/2) / delta;
498         }
499     }
500 }
501
502 static NOINLINE void x264_mb_mc_0xywh( x264_t *h, int x, int y, int width, int height )
503 {
504     const int i8 = x264_scan8[0]+x+8*y;
505     const int i_ref = h->mb.cache.ref[0][i8];
506     const int mvx   = x264_clip3( h->mb.cache.mv[0][i8][0], h->mb.mv_min[0], h->mb.mv_max[0] ) + 4*4*x;
507     int       mvy   = x264_clip3( h->mb.cache.mv[0][i8][1], h->mb.mv_min[1], h->mb.mv_max[1] ) + 4*4*y;
508
509     h->mc.mc_luma( &h->mb.pic.p_fdec[0][4*y*FDEC_STRIDE+4*x], FDEC_STRIDE,
510                    h->mb.pic.p_fref[0][i_ref], h->mb.pic.i_stride[0],
511                    mvx, mvy, 4*width, 4*height, &h->sh.weight[i_ref][0] );
512
513     // chroma is offset if MCing from a field of opposite parity
514     if( h->mb.b_interlaced & i_ref )
515         mvy += (h->mb.i_mb_y & 1)*4 - 2;
516
517     h->mc.mc_chroma( &h->mb.pic.p_fdec[1][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
518                      h->mb.pic.p_fref[0][i_ref][4], h->mb.pic.i_stride[1],
519                      mvx, mvy, 2*width, 2*height );
520
521     if( h->sh.weight[i_ref][1].weightfn )
522         h->sh.weight[i_ref][1].weightfn[width>>1]( &h->mb.pic.p_fdec[1][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
523                                                    &h->mb.pic.p_fdec[1][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
524                                                    &h->sh.weight[i_ref][1], height*2 );
525
526     h->mc.mc_chroma( &h->mb.pic.p_fdec[2][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
527                      h->mb.pic.p_fref[0][i_ref][5], h->mb.pic.i_stride[2],
528                      mvx, mvy, 2*width, 2*height );
529
530     if( h->sh.weight[i_ref][2].weightfn )
531         h->sh.weight[i_ref][2].weightfn[width>>1]( &h->mb.pic.p_fdec[2][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
532                                                    &h->mb.pic.p_fdec[2][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
533                                                    &h->sh.weight[i_ref][2],height*2 );
534
535 }
536 static NOINLINE void x264_mb_mc_1xywh( x264_t *h, int x, int y, int width, int height )
537 {
538     const int i8 = x264_scan8[0]+x+8*y;
539     const int i_ref = h->mb.cache.ref[1][i8];
540     const int mvx   = x264_clip3( h->mb.cache.mv[1][i8][0], h->mb.mv_min[0], h->mb.mv_max[0] ) + 4*4*x;
541     int       mvy   = x264_clip3( h->mb.cache.mv[1][i8][1], h->mb.mv_min[1], h->mb.mv_max[1] ) + 4*4*y;
542
543     h->mc.mc_luma( &h->mb.pic.p_fdec[0][4*y*FDEC_STRIDE+4*x], FDEC_STRIDE,
544                    h->mb.pic.p_fref[1][i_ref], h->mb.pic.i_stride[0],
545                    mvx, mvy, 4*width, 4*height, weight_none );
546
547     if( h->mb.b_interlaced & i_ref )
548         mvy += (h->mb.i_mb_y & 1)*4 - 2;
549
550     h->mc.mc_chroma( &h->mb.pic.p_fdec[1][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
551                      h->mb.pic.p_fref[1][i_ref][4], h->mb.pic.i_stride[1],
552                      mvx, mvy, 2*width, 2*height );
553
554     h->mc.mc_chroma( &h->mb.pic.p_fdec[2][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE,
555                      h->mb.pic.p_fref[1][i_ref][5], h->mb.pic.i_stride[2],
556                      mvx, mvy, 2*width, 2*height );
557 }
558
559 static NOINLINE void x264_mb_mc_01xywh( x264_t *h, int x, int y, int width, int height )
560 {
561     const int i8 = x264_scan8[0]+x+8*y;
562     const int i_ref0 = h->mb.cache.ref[0][i8];
563     const int i_ref1 = h->mb.cache.ref[1][i8];
564     const int weight = h->mb.bipred_weight[i_ref0][i_ref1];
565     const int mvx0   = x264_clip3( h->mb.cache.mv[0][i8][0], h->mb.mv_min[0], h->mb.mv_max[0] ) + 4*4*x;
566     const int mvx1   = x264_clip3( h->mb.cache.mv[1][i8][0], h->mb.mv_min[0], h->mb.mv_max[0] ) + 4*4*x;
567     int       mvy0   = x264_clip3( h->mb.cache.mv[0][i8][1], h->mb.mv_min[1], h->mb.mv_max[1] ) + 4*4*y;
568     int       mvy1   = x264_clip3( h->mb.cache.mv[1][i8][1], h->mb.mv_min[1], h->mb.mv_max[1] ) + 4*4*y;
569     int       i_mode = x264_size2pixel[height][width];
570     int       i_stride0 = 16, i_stride1 = 16;
571     ALIGNED_ARRAY_16( uint8_t, tmp0,[16*16] );
572     ALIGNED_ARRAY_16( uint8_t, tmp1,[16*16] );
573     uint8_t *src0, *src1;
574
575     src0 = h->mc.get_ref( tmp0, &i_stride0, h->mb.pic.p_fref[0][i_ref0], h->mb.pic.i_stride[0],
576                           mvx0, mvy0, 4*width, 4*height, weight_none );
577     src1 = h->mc.get_ref( tmp1, &i_stride1, h->mb.pic.p_fref[1][i_ref1], h->mb.pic.i_stride[0],
578                           mvx1, mvy1, 4*width, 4*height, weight_none );
579     h->mc.avg[i_mode]( &h->mb.pic.p_fdec[0][4*y*FDEC_STRIDE+4*x], FDEC_STRIDE,
580                        src0, i_stride0, src1, i_stride1, weight );
581
582     if( h->mb.b_interlaced & i_ref0 )
583         mvy0 += (h->mb.i_mb_y & 1)*4 - 2;
584     if( h->mb.b_interlaced & i_ref1 )
585         mvy1 += (h->mb.i_mb_y & 1)*4 - 2;
586
587     h->mc.mc_chroma( tmp0, 16, h->mb.pic.p_fref[0][i_ref0][4], h->mb.pic.i_stride[1],
588                      mvx0, mvy0, 2*width, 2*height );
589     h->mc.mc_chroma( tmp1, 16, h->mb.pic.p_fref[1][i_ref1][4], h->mb.pic.i_stride[1],
590                      mvx1, mvy1, 2*width, 2*height );
591     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 );
592     h->mc.mc_chroma( tmp0, 16, h->mb.pic.p_fref[0][i_ref0][5], h->mb.pic.i_stride[2],
593                      mvx0, mvy0, 2*width, 2*height );
594     h->mc.mc_chroma( tmp1, 16, h->mb.pic.p_fref[1][i_ref1][5], h->mb.pic.i_stride[2],
595                      mvx1, mvy1, 2*width, 2*height );
596     h->mc.avg[i_mode+3]( &h->mb.pic.p_fdec[2][2*y*FDEC_STRIDE+2*x], FDEC_STRIDE, tmp0, 16, tmp1, 16, weight );
597 }
598
599 void x264_mb_mc_8x8( x264_t *h, int i8 )
600 {
601     const int x = 2*(i8&1);
602     const int y = 2*(i8>>1);
603
604     if( h->sh.i_type == SLICE_TYPE_P )
605     {
606         switch( h->mb.i_sub_partition[i8] )
607         {
608             case D_L0_8x8:
609                 x264_mb_mc_0xywh( h, x, y, 2, 2 );
610                 break;
611             case D_L0_8x4:
612                 x264_mb_mc_0xywh( h, x, y+0, 2, 1 );
613                 x264_mb_mc_0xywh( h, x, y+1, 2, 1 );
614                 break;
615             case D_L0_4x8:
616                 x264_mb_mc_0xywh( h, x+0, y, 1, 2 );
617                 x264_mb_mc_0xywh( h, x+1, y, 1, 2 );
618                 break;
619             case D_L0_4x4:
620                 x264_mb_mc_0xywh( h, x+0, y+0, 1, 1 );
621                 x264_mb_mc_0xywh( h, x+1, y+0, 1, 1 );
622                 x264_mb_mc_0xywh( h, x+0, y+1, 1, 1 );
623                 x264_mb_mc_0xywh( h, x+1, y+1, 1, 1 );
624                 break;
625         }
626     }
627     else
628     {
629         const int i8 = x264_scan8[0] + x + 8*y;
630
631         if( h->mb.cache.ref[0][i8] >= 0 )
632             if( h->mb.cache.ref[1][i8] >= 0 )
633                 x264_mb_mc_01xywh( h, x, y, 2, 2 );
634             else
635                 x264_mb_mc_0xywh( h, x, y, 2, 2 );
636         else
637             x264_mb_mc_1xywh( h, x, y, 2, 2 );
638     }
639 }
640
641 void x264_mb_mc( x264_t *h )
642 {
643     if( h->mb.i_partition == D_8x8 )
644     {
645         int i;
646         for( i = 0; i < 4; i++ )
647             x264_mb_mc_8x8( h, i );
648     }
649     else
650     {
651         const int ref0a = h->mb.cache.ref[0][x264_scan8[ 0]];
652         const int ref0b = h->mb.cache.ref[0][x264_scan8[12]];
653         const int ref1a = h->mb.cache.ref[1][x264_scan8[ 0]];
654         const int ref1b = h->mb.cache.ref[1][x264_scan8[12]];
655
656         if( h->mb.i_partition == D_16x16 )
657         {
658             if( ref0a >= 0 )
659                 if( ref1a >= 0 ) x264_mb_mc_01xywh( h, 0, 0, 4, 4 );
660                 else             x264_mb_mc_0xywh ( h, 0, 0, 4, 4 );
661             else                 x264_mb_mc_1xywh ( h, 0, 0, 4, 4 );
662         }
663         else if( h->mb.i_partition == D_16x8 )
664         {
665             if( ref0a >= 0 )
666                 if( ref1a >= 0 ) x264_mb_mc_01xywh( h, 0, 0, 4, 2 );
667                 else             x264_mb_mc_0xywh ( h, 0, 0, 4, 2 );
668             else                 x264_mb_mc_1xywh ( h, 0, 0, 4, 2 );
669
670             if( ref0b >= 0 )
671                 if( ref1b >= 0 ) x264_mb_mc_01xywh( h, 0, 2, 4, 2 );
672                 else             x264_mb_mc_0xywh ( h, 0, 2, 4, 2 );
673             else                 x264_mb_mc_1xywh ( h, 0, 2, 4, 2 );
674         }
675         else if( h->mb.i_partition == D_8x16 )
676         {
677             if( ref0a >= 0 )
678                 if( ref1a >= 0 ) x264_mb_mc_01xywh( h, 0, 0, 2, 4 );
679                 else             x264_mb_mc_0xywh ( h, 0, 0, 2, 4 );
680             else                 x264_mb_mc_1xywh ( h, 0, 0, 2, 4 );
681
682             if( ref0b >= 0 )
683                 if( ref1b >= 0 ) x264_mb_mc_01xywh( h, 2, 0, 2, 4 );
684                 else             x264_mb_mc_0xywh ( h, 2, 0, 2, 4 );
685             else                 x264_mb_mc_1xywh ( h, 2, 0, 2, 4 );
686         }
687     }
688 }
689
690 int x264_macroblock_cache_init( x264_t *h )
691 {
692     int i, j;
693     int i_mb_count = h->mb.i_mb_count;
694
695     h->mb.i_mb_stride = h->sps->i_mb_width;
696     h->mb.i_b8_stride = h->sps->i_mb_width * 2;
697     h->mb.i_b4_stride = h->sps->i_mb_width * 4;
698
699     h->mb.b_interlaced = h->param.b_interlaced;
700
701     CHECKED_MALLOC( h->mb.qp, i_mb_count * sizeof(int8_t) );
702     CHECKED_MALLOC( h->mb.cbp, i_mb_count * sizeof(int16_t) );
703     CHECKED_MALLOC( h->mb.skipbp, i_mb_count * sizeof(int8_t) );
704     CHECKED_MALLOC( h->mb.mb_transform_size, i_mb_count * sizeof(int8_t) );
705
706     /* 0 -> 3 top(4), 4 -> 6 : left(3) */
707     CHECKED_MALLOC( h->mb.intra4x4_pred_mode, i_mb_count * 8 * sizeof(int8_t) );
708
709     /* all coeffs */
710     CHECKED_MALLOC( h->mb.non_zero_count, i_mb_count * 24 * sizeof(uint8_t) );
711
712     if( h->param.b_cabac )
713     {
714         CHECKED_MALLOC( h->mb.chroma_pred_mode, i_mb_count * sizeof(int8_t) );
715         CHECKED_MALLOC( h->mb.mvd[0], 2*8 * i_mb_count * sizeof(uint8_t) );
716         CHECKED_MALLOC( h->mb.mvd[1], 2*8 * i_mb_count * sizeof(uint8_t) );
717     }
718
719     for( i=0; i<2; i++ )
720     {
721         int i_refs = X264_MIN(16, (i ? 1 + !!h->param.i_bframe_pyramid : h->param.i_frame_reference) ) << h->param.b_interlaced;
722         if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART )
723             i_refs = X264_MIN(16, i_refs + 2); //smart weights add two duplicate frames
724         else if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_BLIND )
725             i_refs = X264_MIN(16, i_refs + 1); //blind weights add one duplicate frame
726
727         for( j=0; j < i_refs; j++ )
728             CHECKED_MALLOC( h->mb.mvr[i][j], 2 * i_mb_count * sizeof(int16_t) );
729     }
730
731     if( h->param.analyse.i_weighted_pred )
732     {
733         int i_padv = PADV << h->param.b_interlaced;
734 #define ALIGN(x,a) (((x)+((a)-1))&~((a)-1))
735         int align = h->param.cpu&X264_CPU_CACHELINE_64 ? 64 : h->param.cpu&X264_CPU_CACHELINE_32 ? 32 : 16;
736         int i_stride, luma_plane_size;
737         int numweightbuf;
738
739         if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_FAKE )
740         {
741             // only need buffer for lookahead
742             if( !h->param.i_sync_lookahead || h == h->thread[h->param.i_threads] )
743             {
744                 // Fake analysis only works on lowres
745                 i_stride = ALIGN( h->sps->i_mb_width*8 + 2*PADH, align );
746                 luma_plane_size = i_stride * (h->sps->i_mb_height*8+2*i_padv);
747                 // Only need 1 buffer for analysis
748                 numweightbuf = 1;
749             }
750             else
751                 numweightbuf = 0;
752         }
753         else
754         {
755             i_stride = ALIGN( h->sps->i_mb_width*16 + 2*PADH, align );
756             luma_plane_size = i_stride * (h->sps->i_mb_height*16+2*i_padv);
757
758             if( h->param.analyse.i_weighted_pred == X264_WEIGHTP_SMART )
759                 //SMART can weight one ref and one offset -1
760                 numweightbuf = 2;
761             else
762                 //blind only has one weighted copy (offset -1)
763                 numweightbuf = 1;
764         }
765
766         for( i = 0; i < numweightbuf; i++ )
767             CHECKED_MALLOC( h->mb.p_weight_buf[i], luma_plane_size );
768 #undef ALIGN
769     }
770
771     for( i=0; i<=h->param.b_interlaced; i++ )
772         for( j=0; j<3; j++ )
773         {
774             /* shouldn't really be initialized, just silences a valgrind false-positive in predict_8x8_filter_mmx */
775             CHECKED_MALLOCZERO( h->mb.intra_border_backup[i][j], (h->sps->i_mb_width*16+32)>>!!j );
776             h->mb.intra_border_backup[i][j] += 8;
777         }
778
779     return 0;
780 fail: return -1;
781 }
782 void x264_macroblock_cache_end( x264_t *h )
783 {
784     int i, j;
785     for( i=0; i<=h->param.b_interlaced; i++ )
786         for( j=0; j<3; j++ )
787             x264_free( h->mb.intra_border_backup[i][j] - 8 );
788     for( i=0; i<2; i++ )
789         for( j=0; j<32; j++ )
790             x264_free( h->mb.mvr[i][j] );
791     for( i=0; i<16; i++ )
792         x264_free( h->mb.p_weight_buf[i] );
793
794     if( h->param.b_cabac )
795     {
796         x264_free( h->mb.chroma_pred_mode );
797         x264_free( h->mb.mvd[0] );
798         x264_free( h->mb.mvd[1] );
799     }
800     x264_free( h->mb.intra4x4_pred_mode );
801     x264_free( h->mb.non_zero_count );
802     x264_free( h->mb.mb_transform_size );
803     x264_free( h->mb.skipbp );
804     x264_free( h->mb.cbp );
805     x264_free( h->mb.qp );
806 }
807 void x264_macroblock_slice_init( x264_t *h )
808 {
809     int i, j;
810
811     h->mb.mv[0] = h->fdec->mv[0];
812     h->mb.mv[1] = h->fdec->mv[1];
813     h->mb.ref[0] = h->fdec->ref[0];
814     h->mb.ref[1] = h->fdec->ref[1];
815     h->mb.type = h->fdec->mb_type;
816     h->mb.partition = h->fdec->mb_partition;
817
818     h->fdec->i_ref[0] = h->i_ref0;
819     h->fdec->i_ref[1] = h->i_ref1;
820     for( i = 0; i < h->i_ref0; i++ )
821         h->fdec->ref_poc[0][i] = h->fref0[i]->i_poc;
822     if( h->sh.i_type == SLICE_TYPE_B )
823     {
824         for( i = 0; i < h->i_ref1; i++ )
825             h->fdec->ref_poc[1][i] = h->fref1[i]->i_poc;
826
827         map_col_to_list0(-1) = -1;
828         map_col_to_list0(-2) = -2;
829         for( i = 0; i < h->fref1[0]->i_ref[0]; i++ )
830         {
831             int poc = h->fref1[0]->ref_poc[0][i];
832             map_col_to_list0(i) = -2;
833             for( j = 0; j < h->i_ref0; j++ )
834                 if( h->fref0[j]->i_poc == poc )
835                 {
836                     map_col_to_list0(i) = j;
837                     break;
838                 }
839         }
840     }
841     if( h->sh.i_type == SLICE_TYPE_P )
842         memset( h->mb.cache.skip, 0, X264_SCAN8_SIZE * sizeof( int8_t ) );
843
844     /* init with not available (for top right idx=7,15) */
845     memset( h->mb.cache.ref[0], -2, X264_SCAN8_SIZE * sizeof( int8_t ) );
846     memset( h->mb.cache.ref[1], -2, X264_SCAN8_SIZE * sizeof( int8_t ) );
847
848     setup_inverse_delta_pocs( h );
849
850     h->mb.i_neighbour4[6] =
851     h->mb.i_neighbour4[9] =
852     h->mb.i_neighbour4[12] =
853     h->mb.i_neighbour4[14] = MB_LEFT|MB_TOP|MB_TOPLEFT|MB_TOPRIGHT;
854     h->mb.i_neighbour4[3] =
855     h->mb.i_neighbour4[7] =
856     h->mb.i_neighbour4[11] =
857     h->mb.i_neighbour4[13] =
858     h->mb.i_neighbour4[15] =
859     h->mb.i_neighbour8[3] = MB_LEFT|MB_TOP|MB_TOPLEFT;
860 }
861
862 void x264_macroblock_thread_init( x264_t *h )
863 {
864     /* fdec:      fenc:
865      * yyyyyyy
866      * yYYYY      YYYY
867      * yYYYY      YYYY
868      * yYYYY      YYYY
869      * yYYYY      YYYY
870      * uuu vvv    UUVV
871      * uUU vVV    UUVV
872      * uUU vVV
873      */
874     h->mb.pic.p_fenc[0] = h->mb.pic.fenc_buf;
875     h->mb.pic.p_fenc[1] = h->mb.pic.fenc_buf + 16*FENC_STRIDE;
876     h->mb.pic.p_fenc[2] = h->mb.pic.fenc_buf + 16*FENC_STRIDE + 8;
877     h->mb.pic.p_fdec[0] = h->mb.pic.fdec_buf + 2*FDEC_STRIDE;
878     h->mb.pic.p_fdec[1] = h->mb.pic.fdec_buf + 19*FDEC_STRIDE;
879     h->mb.pic.p_fdec[2] = h->mb.pic.fdec_buf + 19*FDEC_STRIDE + 16;
880 }
881
882 void x264_prefetch_fenc( x264_t *h, x264_frame_t *fenc, int i_mb_x, int i_mb_y )
883 {
884     int stride_y  = fenc->i_stride[0];
885     int stride_uv = fenc->i_stride[1];
886     int off_y = 16 * (i_mb_x + i_mb_y * stride_y);
887     int off_uv = 8 * (i_mb_x + i_mb_y * stride_uv);
888     h->mc.prefetch_fenc( fenc->plane[0]+off_y, stride_y,
889                          fenc->plane[1+(i_mb_x&1)]+off_uv, stride_uv, i_mb_x );
890 }
891
892 static NOINLINE void copy_column8( uint8_t *dst, uint8_t *src )
893 {
894     // input pointers are offset by 4 rows because that's faster (smaller instruction size on x86)
895     int i;
896     for( i = -4; i < 4; i++ )
897         dst[i*FDEC_STRIDE] = src[i*FDEC_STRIDE];
898 }
899
900 static void ALWAYS_INLINE x264_macroblock_load_pic_pointers( x264_t *h, int i_mb_x, int i_mb_y, int i)
901 {
902     const int w = (i == 0 ? 16 : 8);
903     const int i_stride = h->fdec->i_stride[!!i];
904     const int i_stride2 = i_stride << h->mb.b_interlaced;
905     const int i_pix_offset = h->mb.b_interlaced
906                            ? w * (i_mb_x + (i_mb_y&~1) * i_stride) + (i_mb_y&1) * i_stride
907                            : w * (i_mb_x + i_mb_y * i_stride);
908     const uint8_t *plane_fdec = &h->fdec->plane[i][i_pix_offset];
909     const uint8_t *intra_fdec = h->param.b_sliced_threads ? plane_fdec-i_stride2 :
910                                 &h->mb.intra_border_backup[i_mb_y & h->sh.b_mbaff][i][i_mb_x*16>>!!i];
911     int ref_pix_offset[2] = { i_pix_offset, i_pix_offset };
912     x264_frame_t **fref[2] = { h->fref0, h->fref1 };
913     int j, k;
914     if( h->mb.b_interlaced )
915         ref_pix_offset[1] += (1-2*(i_mb_y&1)) * i_stride;
916     h->mb.pic.i_stride[i] = i_stride2;
917     h->mb.pic.p_fenc_plane[i] = &h->fenc->plane[i][i_pix_offset];
918     h->mc.copy[i?PIXEL_8x8:PIXEL_16x16]( h->mb.pic.p_fenc[i], FENC_STRIDE,
919         h->mb.pic.p_fenc_plane[i], i_stride2, w );
920     if( i_mb_y > 0 )
921         memcpy( &h->mb.pic.p_fdec[i][-1-FDEC_STRIDE], intra_fdec-1, w*3/2+1 );
922     else
923         memset( &h->mb.pic.p_fdec[i][-1-FDEC_STRIDE], 0, w*3/2+1 );
924     if( h->mb.b_interlaced || h->mb.b_reencode_mb )
925         for( j = 0; j < w; j++ )
926             h->mb.pic.p_fdec[i][-1+j*FDEC_STRIDE] = plane_fdec[-1+j*i_stride2];
927     for( j = 0; j < h->mb.pic.i_fref[0]; j++ )
928     {
929         h->mb.pic.p_fref[0][j][i==0 ? 0:i+3] = &fref[0][j >> h->mb.b_interlaced]->plane[i][ref_pix_offset[j&1]];
930         if( i == 0 )
931         {
932             for( k = 1; k < 4; k++ )
933                 h->mb.pic.p_fref[0][j][k] = &fref[0][j >> h->mb.b_interlaced]->filtered[k][ref_pix_offset[j&1]];
934             if( h->sh.weight[j][0].weightfn )
935                 h->mb.pic.p_fref_w[j] = &h->fenc->weighted[j >> h->mb.b_interlaced][ref_pix_offset[j&1]];
936             else
937                 h->mb.pic.p_fref_w[j] = h->mb.pic.p_fref[0][j][0];
938         }
939     }
940     if( h->sh.i_type == SLICE_TYPE_B )
941         for( j = 0; j < h->mb.pic.i_fref[1]; j++ )
942         {
943             h->mb.pic.p_fref[1][j][i==0 ? 0:i+3] = &fref[1][j >> h->mb.b_interlaced]->plane[i][ref_pix_offset[j&1]];
944             if( i == 0 )
945                 for( k = 1; k < 4; k++ )
946                     h->mb.pic.p_fref[1][j][k] = &fref[1][j >> h->mb.b_interlaced]->filtered[k][ref_pix_offset[j&1]];
947         }
948 }
949
950 void x264_macroblock_cache_load( x264_t *h, int i_mb_x, int i_mb_y )
951 {
952     int i_mb_xy = i_mb_y * h->mb.i_mb_stride + i_mb_x;
953     int i_mb_4x4 = 4*(i_mb_y * h->mb.i_b4_stride + i_mb_x);
954     int i_mb_8x8 = 2*(i_mb_y * h->mb.i_b8_stride + i_mb_x);
955     int i_top_y = i_mb_y - (1 << h->mb.b_interlaced);
956     int i_top_xy = i_top_y * h->mb.i_mb_stride + i_mb_x;
957     int i_top_4x4 = (4*i_top_y+3) * h->mb.i_b4_stride + 4*i_mb_x;
958     int i_top_8x8 = (2*i_top_y+1) * h->mb.i_b8_stride + 2*i_mb_x;
959     int i_left_xy = -1;
960     int i_top_type = -1;    /* gcc warn */
961     int i_left_type= -1;
962
963     int i;
964
965     /* init index */
966     h->mb.i_mb_x = i_mb_x;
967     h->mb.i_mb_y = i_mb_y;
968     h->mb.i_mb_xy = i_mb_xy;
969     h->mb.i_b8_xy = i_mb_8x8;
970     h->mb.i_b4_xy = i_mb_4x4;
971     h->mb.i_mb_top_xy = i_top_xy;
972     h->mb.i_neighbour = 0;
973     h->mb.i_neighbour_intra = 0;
974
975     /* load cache */
976     if( i_top_xy >= h->sh.i_first_mb )
977     {
978         h->mb.i_mb_type_top =
979         i_top_type = h->mb.type[i_top_xy];
980         h->mb.cache.i_cbp_top = h->mb.cbp[i_top_xy];
981
982         h->mb.i_neighbour |= MB_TOP;
983
984         if( !h->param.b_constrained_intra || IS_INTRA( i_top_type ) )
985             h->mb.i_neighbour_intra |= MB_TOP;
986
987         /* load intra4x4 */
988         CP32( &h->mb.cache.intra4x4_pred_mode[x264_scan8[0] - 8], &h->mb.intra4x4_pred_mode[i_top_xy][0] );
989
990         /* load non_zero_count */
991         CP32( &h->mb.cache.non_zero_count[x264_scan8[0] - 8], &h->mb.non_zero_count[i_top_xy][12] );
992         /* shift because x264_scan8[16] is misaligned */
993         M32( &h->mb.cache.non_zero_count[x264_scan8[16+0] - 9] ) = M16( &h->mb.non_zero_count[i_top_xy][18] ) << 8;
994         M32( &h->mb.cache.non_zero_count[x264_scan8[16+4] - 9] ) = M16( &h->mb.non_zero_count[i_top_xy][22] ) << 8;
995     }
996     else
997     {
998         h->mb.i_mb_type_top = -1;
999         h->mb.cache.i_cbp_top = -1;
1000
1001         /* load intra4x4 */
1002         M32( &h->mb.cache.intra4x4_pred_mode[x264_scan8[0] - 8] ) = 0xFFFFFFFFU;
1003
1004         /* load non_zero_count */
1005         M32( &h->mb.cache.non_zero_count[x264_scan8[   0] - 8] ) = 0x80808080U;
1006         M32( &h->mb.cache.non_zero_count[x264_scan8[16+0] - 9] ) = 0x80808080U;
1007         M32( &h->mb.cache.non_zero_count[x264_scan8[16+4] - 9] ) = 0x80808080U;
1008     }
1009
1010     if( i_mb_x > 0 && i_mb_xy > h->sh.i_first_mb )
1011     {
1012         i_left_xy = i_mb_xy - 1;
1013         h->mb.i_mb_type_left =
1014         i_left_type = h->mb.type[i_left_xy];
1015         h->mb.cache.i_cbp_left = h->mb.cbp[h->mb.i_mb_xy - 1];
1016
1017         h->mb.i_neighbour |= MB_LEFT;
1018
1019         if( !h->param.b_constrained_intra || IS_INTRA( i_left_type ) )
1020             h->mb.i_neighbour_intra |= MB_LEFT;
1021
1022         /* load intra4x4 */
1023         h->mb.cache.intra4x4_pred_mode[x264_scan8[0 ] - 1] = h->mb.intra4x4_pred_mode[i_left_xy][4];
1024         h->mb.cache.intra4x4_pred_mode[x264_scan8[2 ] - 1] = h->mb.intra4x4_pred_mode[i_left_xy][5];
1025         h->mb.cache.intra4x4_pred_mode[x264_scan8[8 ] - 1] = h->mb.intra4x4_pred_mode[i_left_xy][6];
1026         h->mb.cache.intra4x4_pred_mode[x264_scan8[10] - 1] = h->mb.intra4x4_pred_mode[i_left_xy][3];
1027
1028         /* load non_zero_count */
1029         h->mb.cache.non_zero_count[x264_scan8[0 ] - 1] = h->mb.non_zero_count[i_left_xy][3];
1030         h->mb.cache.non_zero_count[x264_scan8[2 ] - 1] = h->mb.non_zero_count[i_left_xy][7];
1031         h->mb.cache.non_zero_count[x264_scan8[8 ] - 1] = h->mb.non_zero_count[i_left_xy][11];
1032         h->mb.cache.non_zero_count[x264_scan8[10] - 1] = h->mb.non_zero_count[i_left_xy][15];
1033
1034         h->mb.cache.non_zero_count[x264_scan8[16+0] - 1] = h->mb.non_zero_count[i_left_xy][16+1];
1035         h->mb.cache.non_zero_count[x264_scan8[16+2] - 1] = h->mb.non_zero_count[i_left_xy][16+3];
1036
1037         h->mb.cache.non_zero_count[x264_scan8[16+4+0] - 1] = h->mb.non_zero_count[i_left_xy][16+4+1];
1038         h->mb.cache.non_zero_count[x264_scan8[16+4+2] - 1] = h->mb.non_zero_count[i_left_xy][16+4+3];
1039     }
1040     else
1041     {
1042         h->mb.i_mb_type_left = -1;
1043         h->mb.cache.i_cbp_left = -1;
1044
1045         h->mb.cache.intra4x4_pred_mode[x264_scan8[0 ] - 1] =
1046         h->mb.cache.intra4x4_pred_mode[x264_scan8[2 ] - 1] =
1047         h->mb.cache.intra4x4_pred_mode[x264_scan8[8 ] - 1] =
1048         h->mb.cache.intra4x4_pred_mode[x264_scan8[10] - 1] = -1;
1049
1050         /* load non_zero_count */
1051         h->mb.cache.non_zero_count[x264_scan8[0 ] - 1] =
1052         h->mb.cache.non_zero_count[x264_scan8[2 ] - 1] =
1053         h->mb.cache.non_zero_count[x264_scan8[8 ] - 1] =
1054         h->mb.cache.non_zero_count[x264_scan8[10] - 1] =
1055         h->mb.cache.non_zero_count[x264_scan8[16+0] - 1] =
1056         h->mb.cache.non_zero_count[x264_scan8[16+2] - 1] =
1057         h->mb.cache.non_zero_count[x264_scan8[16+4+0] - 1] =
1058         h->mb.cache.non_zero_count[x264_scan8[16+4+2] - 1] = 0x80;
1059     }
1060
1061     if( i_mb_x < h->sps->i_mb_width - 1 && i_top_xy + 1 >= h->sh.i_first_mb )
1062     {
1063         h->mb.i_neighbour |= MB_TOPRIGHT;
1064         h->mb.i_mb_type_topright = h->mb.type[ i_top_xy + 1 ];
1065         if( !h->param.b_constrained_intra || IS_INTRA( h->mb.i_mb_type_topright ) )
1066             h->mb.i_neighbour_intra |= MB_TOPRIGHT;
1067     }
1068     else
1069         h->mb.i_mb_type_topright = -1;
1070     if( i_mb_x > 0 && i_top_xy - 1 >= h->sh.i_first_mb )
1071     {
1072         h->mb.i_neighbour |= MB_TOPLEFT;
1073         h->mb.i_mb_type_topleft = h->mb.type[ i_top_xy - 1 ];
1074         if( !h->param.b_constrained_intra || IS_INTRA( h->mb.i_mb_type_topleft ) )
1075             h->mb.i_neighbour_intra |= MB_TOPLEFT;
1076     }
1077     else
1078         h->mb.i_mb_type_topleft = -1;
1079
1080     if( h->pps->b_transform_8x8_mode )
1081     {
1082         h->mb.cache.i_neighbour_transform_size =
1083             ( i_left_type >= 0 && h->mb.mb_transform_size[i_left_xy] )
1084           + ( i_top_type  >= 0 && h->mb.mb_transform_size[i_top_xy]  );
1085     }
1086
1087     if( h->sh.b_mbaff )
1088     {
1089         h->mb.pic.i_fref[0] = h->i_ref0 << h->mb.b_interlaced;
1090         h->mb.pic.i_fref[1] = h->i_ref1 << h->mb.b_interlaced;
1091         h->mb.cache.i_neighbour_interlaced =
1092             !!(h->mb.i_neighbour & MB_LEFT)
1093           + !!(h->mb.i_neighbour & MB_TOP);
1094     }
1095
1096     if( !h->mb.b_interlaced && !h->mb.b_reencode_mb )
1097     {
1098         copy_column8( h->mb.pic.p_fdec[0]-1+ 4*FDEC_STRIDE, h->mb.pic.p_fdec[0]+15+ 4*FDEC_STRIDE );
1099         copy_column8( h->mb.pic.p_fdec[0]-1+12*FDEC_STRIDE, h->mb.pic.p_fdec[0]+15+12*FDEC_STRIDE );
1100         copy_column8( h->mb.pic.p_fdec[1]-1+ 4*FDEC_STRIDE, h->mb.pic.p_fdec[1]+ 7+ 4*FDEC_STRIDE );
1101         copy_column8( h->mb.pic.p_fdec[2]-1+ 4*FDEC_STRIDE, h->mb.pic.p_fdec[2]+ 7+ 4*FDEC_STRIDE );
1102     }
1103
1104     /* load picture pointers */
1105     x264_macroblock_load_pic_pointers( h, i_mb_x, i_mb_y, 0 );
1106     x264_macroblock_load_pic_pointers( h, i_mb_x, i_mb_y, 1 );
1107     x264_macroblock_load_pic_pointers( h, i_mb_x, i_mb_y, 2 );
1108
1109     if( h->fdec->integral )
1110     {
1111         assert( !h->mb.b_interlaced );
1112         for( i = 0; i < h->mb.pic.i_fref[0]; i++ )
1113             h->mb.pic.p_integral[0][i] = &h->fref0[i]->integral[ 16 * ( i_mb_x + i_mb_y * h->fdec->i_stride[0] )];
1114         for( i = 0; i < h->mb.pic.i_fref[1]; i++ )
1115             h->mb.pic.p_integral[1][i] = &h->fref1[i]->integral[ 16 * ( i_mb_x + i_mb_y * h->fdec->i_stride[0] )];
1116     }
1117
1118     x264_prefetch_fenc( h, h->fenc, i_mb_x, i_mb_y );
1119
1120     /* load ref/mv/mvd */
1121     if( h->sh.i_type != SLICE_TYPE_I )
1122     {
1123         const int s8x8 = h->mb.i_b8_stride;
1124         const int s4x4 = h->mb.i_b4_stride;
1125
1126         int i_list;
1127
1128         for( i_list = 0; i_list < (h->sh.i_type == SLICE_TYPE_B ? 2  : 1 ); i_list++ )
1129         {
1130             /*
1131             h->mb.cache.ref[i_list][x264_scan8[5 ]+1] =
1132             h->mb.cache.ref[i_list][x264_scan8[7 ]+1] =
1133             h->mb.cache.ref[i_list][x264_scan8[13]+1] = -2;
1134             */
1135
1136             if( h->mb.i_neighbour & MB_TOPLEFT )
1137             {
1138                 const int i8 = x264_scan8[0] - 1 - 1*8;
1139                 const int ir = i_top_8x8 - 1;
1140                 const int iv = i_top_4x4 - 1;
1141                 h->mb.cache.ref[i_list][i8]  = h->mb.ref[i_list][ir];
1142                 CP32( h->mb.cache.mv[i_list][i8], h->mb.mv[i_list][iv] );
1143             }
1144             else
1145             {
1146                 const int i8 = x264_scan8[0] - 1 - 1*8;
1147                 h->mb.cache.ref[i_list][i8] = -2;
1148                 M32( h->mb.cache.mv[i_list][i8] ) = 0;
1149             }
1150
1151             if( h->mb.i_neighbour & MB_TOP )
1152             {
1153                 const int i8 = x264_scan8[0] - 8;
1154                 const int ir = i_top_8x8;
1155                 const int iv = i_top_4x4;
1156                 h->mb.cache.ref[i_list][i8+0] =
1157                 h->mb.cache.ref[i_list][i8+1] = h->mb.ref[i_list][ir + 0];
1158                 h->mb.cache.ref[i_list][i8+2] =
1159                 h->mb.cache.ref[i_list][i8+3] = h->mb.ref[i_list][ir + 1];
1160                 CP64( h->mb.cache.mv[i_list][i8+0], h->mb.mv[i_list][iv+0] );
1161                 CP64( h->mb.cache.mv[i_list][i8+2], h->mb.mv[i_list][iv+2] );
1162             }
1163             else
1164             {
1165                 const int i8 = x264_scan8[0] - 8;
1166                 M64( h->mb.cache.mv[i_list][i8+0] ) = 0;
1167                 M64( h->mb.cache.mv[i_list][i8+2] ) = 0;
1168                 M32( &h->mb.cache.ref[i_list][i8] ) = (uint8_t)(-2) * 0x01010101U;
1169             }
1170
1171             if( h->mb.i_neighbour & MB_TOPRIGHT )
1172             {
1173                 const int i8 = x264_scan8[0] + 4 - 1*8;
1174                 const int ir = i_top_8x8 + 2;
1175                 const int iv = i_top_4x4 + 4;
1176                 h->mb.cache.ref[i_list][i8]  = h->mb.ref[i_list][ir];
1177                 CP32( h->mb.cache.mv[i_list][i8], h->mb.mv[i_list][iv] );
1178             }
1179             else
1180             {
1181                 const int i8 = x264_scan8[0] + 4 - 1*8;
1182                 h->mb.cache.ref[i_list][i8] = -2;
1183                 M32( h->mb.cache.mv[i_list][i8] ) = 0;
1184             }
1185
1186             if( h->mb.i_neighbour & MB_LEFT )
1187             {
1188                 const int i8 = x264_scan8[0] - 1;
1189                 const int ir = i_mb_8x8 - 1;
1190                 const int iv = i_mb_4x4 - 1;
1191                 h->mb.cache.ref[i_list][i8+0*8] =
1192                 h->mb.cache.ref[i_list][i8+1*8] = h->mb.ref[i_list][ir + 0*s8x8];
1193                 h->mb.cache.ref[i_list][i8+2*8] =
1194                 h->mb.cache.ref[i_list][i8+3*8] = h->mb.ref[i_list][ir + 1*s8x8];
1195
1196                 CP32( h->mb.cache.mv[i_list][i8+0*8], h->mb.mv[i_list][iv + 0*s4x4] );
1197                 CP32( h->mb.cache.mv[i_list][i8+1*8], h->mb.mv[i_list][iv + 1*s4x4] );
1198                 CP32( h->mb.cache.mv[i_list][i8+2*8], h->mb.mv[i_list][iv + 2*s4x4] );
1199                 CP32( h->mb.cache.mv[i_list][i8+3*8], h->mb.mv[i_list][iv + 3*s4x4] );
1200             }
1201             else
1202             {
1203                 const int i8 = x264_scan8[0] - 1;
1204                 for( i = 0; i < 4; i++ )
1205                 {
1206                     h->mb.cache.ref[i_list][i8+i*8] = -2;
1207                     M32( h->mb.cache.mv[i_list][i8+i*8] ) = 0;
1208                 }
1209             }
1210
1211             if( h->param.b_cabac )
1212             {
1213                 if( i_top_type >= 0 )
1214                     CP64( h->mb.cache.mvd[i_list][x264_scan8[0]-8], h->mb.mvd[i_list][i_top_xy*8] );
1215                 else
1216                     M64( h->mb.cache.mvd[i_list][x264_scan8[0]-8] ) = 0;
1217
1218                 if( i_left_type >= 0 )
1219                 {
1220                     CP16( h->mb.cache.mvd[i_list][x264_scan8[0]-1+0*8], h->mb.mvd[i_list][i_left_xy*8+4] );
1221                     CP16( h->mb.cache.mvd[i_list][x264_scan8[0]-1+1*8], h->mb.mvd[i_list][i_left_xy*8+5] );
1222                     CP16( h->mb.cache.mvd[i_list][x264_scan8[0]-1+2*8], h->mb.mvd[i_list][i_left_xy*8+6] );
1223                     CP16( h->mb.cache.mvd[i_list][x264_scan8[0]-1+3*8], h->mb.mvd[i_list][i_left_xy*8+3] );
1224                 }
1225                 else
1226                     for( i = 0; i < 4; i++ )
1227                         M16( h->mb.cache.mvd[i_list][x264_scan8[0]-1+i*8] ) = 0;
1228             }
1229         }
1230
1231         /* load skip */
1232         if( h->sh.i_type == SLICE_TYPE_B )
1233         {
1234             h->mb.bipred_weight = h->mb.bipred_weight_buf[h->mb.b_interlaced&(i_mb_y&1)];
1235             h->mb.dist_scale_factor = h->mb.dist_scale_factor_buf[h->mb.b_interlaced&(i_mb_y&1)];
1236             if( h->param.b_cabac )
1237             {
1238                 uint8_t skipbp;
1239                 x264_macroblock_cache_skip( h, 0, 0, 4, 4, 0 );
1240                 skipbp = i_left_type >= 0 ? h->mb.skipbp[i_left_xy] : 0;
1241                 h->mb.cache.skip[x264_scan8[0] - 1] = skipbp & 0x2;
1242                 h->mb.cache.skip[x264_scan8[8] - 1] = skipbp & 0x8;
1243                 skipbp = i_top_type >= 0 ? h->mb.skipbp[i_top_xy] : 0;
1244                 h->mb.cache.skip[x264_scan8[0] - 8] = skipbp & 0x4;
1245                 h->mb.cache.skip[x264_scan8[4] - 8] = skipbp & 0x8;
1246             }
1247         }
1248
1249         if( h->sh.i_type == SLICE_TYPE_P )
1250             x264_mb_predict_mv_pskip( h, h->mb.cache.pskip_mv );
1251     }
1252
1253     h->mb.i_neighbour4[0] =
1254     h->mb.i_neighbour8[0] = (h->mb.i_neighbour_intra & (MB_TOP|MB_LEFT|MB_TOPLEFT))
1255                             | ((h->mb.i_neighbour_intra & MB_TOP) ? MB_TOPRIGHT : 0);
1256     h->mb.i_neighbour4[4] =
1257     h->mb.i_neighbour4[1] = MB_LEFT | ((h->mb.i_neighbour_intra & MB_TOP) ? (MB_TOP|MB_TOPLEFT|MB_TOPRIGHT) : 0);
1258     h->mb.i_neighbour4[2] =
1259     h->mb.i_neighbour4[8] =
1260     h->mb.i_neighbour4[10] =
1261     h->mb.i_neighbour8[2] = MB_TOP|MB_TOPRIGHT | ((h->mb.i_neighbour_intra & MB_LEFT) ? (MB_LEFT|MB_TOPLEFT) : 0);
1262     h->mb.i_neighbour4[5] =
1263     h->mb.i_neighbour8[1] = MB_LEFT | (h->mb.i_neighbour_intra & MB_TOPRIGHT)
1264                             | ((h->mb.i_neighbour_intra & MB_TOP) ? MB_TOP|MB_TOPLEFT : 0);
1265 }
1266
1267 static void ALWAYS_INLINE x264_macroblock_store_pic( x264_t *h, int i )
1268 {
1269     int w = i ? 8 : 16;
1270     int i_stride = h->fdec->i_stride[!!i];
1271     int i_stride2 = i_stride << h->mb.b_interlaced;
1272     int i_pix_offset = h->mb.b_interlaced
1273                      ? w * (h->mb.i_mb_x + (h->mb.i_mb_y&~1) * i_stride) + (h->mb.i_mb_y&1) * i_stride
1274                      : w * (h->mb.i_mb_x + h->mb.i_mb_y * i_stride);
1275     h->mc.copy[i?PIXEL_8x8:PIXEL_16x16](
1276         &h->fdec->plane[i][i_pix_offset], i_stride2,
1277         h->mb.pic.p_fdec[i], FDEC_STRIDE, w );
1278 }
1279
1280 void x264_macroblock_cache_save( x264_t *h )
1281 {
1282     const int i_mb_xy = h->mb.i_mb_xy;
1283     const int i_mb_type = x264_mb_type_fix[h->mb.i_type];
1284     const int s8x8 = h->mb.i_b8_stride;
1285     const int s4x4 = h->mb.i_b4_stride;
1286     const int i_mb_4x4 = h->mb.i_b4_xy;
1287     const int i_mb_8x8 = h->mb.i_b8_xy;
1288
1289     /* GCC pessimizes direct stores to heap-allocated 8-bit arrays due to aliasing.*/
1290     /* By only dereferencing them once, we avoid this issue. */
1291     int8_t *intra4x4_pred_mode = h->mb.intra4x4_pred_mode[i_mb_xy];
1292     uint8_t *non_zero_count = h->mb.non_zero_count[i_mb_xy];
1293
1294     int y;
1295
1296     x264_macroblock_store_pic( h, 0 );
1297     x264_macroblock_store_pic( h, 1 );
1298     x264_macroblock_store_pic( h, 2 );
1299
1300     x264_prefetch_fenc( h, h->fdec, h->mb.i_mb_x, h->mb.i_mb_y );
1301
1302     h->mb.type[i_mb_xy] = i_mb_type;
1303     h->mb.partition[i_mb_xy] = IS_INTRA( i_mb_type ) ? D_16x16 : h->mb.i_partition;
1304     h->mb.i_mb_prev_xy = i_mb_xy;
1305
1306     /* save intra4x4 */
1307     if( i_mb_type == I_4x4 )
1308     {
1309         CP32( &intra4x4_pred_mode[0], &h->mb.cache.intra4x4_pred_mode[x264_scan8[10]] );
1310         M32( &intra4x4_pred_mode[4] ) = pack8to32(h->mb.cache.intra4x4_pred_mode[x264_scan8[5] ],
1311                                                   h->mb.cache.intra4x4_pred_mode[x264_scan8[7] ],
1312                                                   h->mb.cache.intra4x4_pred_mode[x264_scan8[13] ], 0);
1313     }
1314     else if( !h->param.b_constrained_intra || IS_INTRA(i_mb_type) )
1315         M64( intra4x4_pred_mode ) = I_PRED_4x4_DC * 0x0101010101010101ULL;
1316     else
1317         M64( intra4x4_pred_mode ) = (uint8_t)(-1) * 0x0101010101010101ULL;
1318
1319
1320     if( i_mb_type == I_PCM )
1321     {
1322         h->mb.qp[i_mb_xy] = 0;
1323         h->mb.i_last_dqp = 0;
1324         h->mb.i_cbp_chroma = 2;
1325         h->mb.i_cbp_luma = 0xf;
1326         h->mb.cbp[i_mb_xy] = 0x72f;   /* all set */
1327         h->mb.b_transform_8x8 = 0;
1328         memset( non_zero_count, 16, 24 );
1329     }
1330     else
1331     {
1332         /* save non zero count */
1333         CP32( &non_zero_count[0*4], &h->mb.cache.non_zero_count[x264_scan8[0]+0*8] );
1334         CP32( &non_zero_count[1*4], &h->mb.cache.non_zero_count[x264_scan8[0]+1*8] );
1335         CP32( &non_zero_count[2*4], &h->mb.cache.non_zero_count[x264_scan8[0]+2*8] );
1336         CP32( &non_zero_count[3*4], &h->mb.cache.non_zero_count[x264_scan8[0]+3*8] );
1337         M16( &non_zero_count[16+0*2] ) = M32( &h->mb.cache.non_zero_count[x264_scan8[16+0*2]-1] ) >> 8;
1338         M16( &non_zero_count[16+1*2] ) = M32( &h->mb.cache.non_zero_count[x264_scan8[16+1*2]-1] ) >> 8;
1339         M16( &non_zero_count[16+2*2] ) = M32( &h->mb.cache.non_zero_count[x264_scan8[16+2*2]-1] ) >> 8;
1340         M16( &non_zero_count[16+3*2] ) = M32( &h->mb.cache.non_zero_count[x264_scan8[16+3*2]-1] ) >> 8;
1341
1342         if( h->mb.i_type != I_16x16 && h->mb.i_cbp_luma == 0 && h->mb.i_cbp_chroma == 0 )
1343             h->mb.i_qp = h->mb.i_last_qp;
1344         h->mb.qp[i_mb_xy] = h->mb.i_qp;
1345         h->mb.i_last_dqp = h->mb.i_qp - h->mb.i_last_qp;
1346         h->mb.i_last_qp = h->mb.i_qp;
1347     }
1348
1349     if( h->mb.i_cbp_luma == 0 && h->mb.i_type != I_8x8 )
1350         h->mb.b_transform_8x8 = 0;
1351     h->mb.mb_transform_size[i_mb_xy] = h->mb.b_transform_8x8;
1352
1353     if( h->sh.i_type != SLICE_TYPE_I )
1354     {
1355         if( !IS_INTRA( i_mb_type ) )
1356         {
1357             h->mb.ref[0][i_mb_8x8+0+0*s8x8] = h->mb.cache.ref[0][x264_scan8[0]];
1358             h->mb.ref[0][i_mb_8x8+1+0*s8x8] = h->mb.cache.ref[0][x264_scan8[4]];
1359             h->mb.ref[0][i_mb_8x8+0+1*s8x8] = h->mb.cache.ref[0][x264_scan8[8]];
1360             h->mb.ref[0][i_mb_8x8+1+1*s8x8] = h->mb.cache.ref[0][x264_scan8[12]];
1361             for( y = 0; y < 4; y++ )
1362             {
1363                 CP64( h->mb.mv[0][i_mb_4x4+y*s4x4+0], h->mb.cache.mv[0][x264_scan8[0]+8*y+0] );
1364                 CP64( h->mb.mv[0][i_mb_4x4+y*s4x4+2], h->mb.cache.mv[0][x264_scan8[0]+8*y+2] );
1365             }
1366             if( h->sh.i_type == SLICE_TYPE_B )
1367             {
1368                 h->mb.ref[1][i_mb_8x8+0+0*s8x8] = h->mb.cache.ref[1][x264_scan8[0]];
1369                 h->mb.ref[1][i_mb_8x8+1+0*s8x8] = h->mb.cache.ref[1][x264_scan8[4]];
1370                 h->mb.ref[1][i_mb_8x8+0+1*s8x8] = h->mb.cache.ref[1][x264_scan8[8]];
1371                 h->mb.ref[1][i_mb_8x8+1+1*s8x8] = h->mb.cache.ref[1][x264_scan8[12]];
1372                 for( y = 0; y < 4; y++ )
1373                 {
1374                     CP64( h->mb.mv[1][i_mb_4x4+y*s4x4+0], h->mb.cache.mv[1][x264_scan8[0]+8*y+0] );
1375                     CP64( h->mb.mv[1][i_mb_4x4+y*s4x4+2], h->mb.cache.mv[1][x264_scan8[0]+8*y+2] );
1376                 }
1377             }
1378         }
1379         else
1380         {
1381             int i_list;
1382             for( i_list = 0; i_list < (h->sh.i_type == SLICE_TYPE_B ? 2  : 1 ); i_list++ )
1383             {
1384                 M16( &h->mb.ref[i_list][i_mb_8x8+0*s8x8] ) = (uint8_t)(-1) * 0x0101;
1385                 M16( &h->mb.ref[i_list][i_mb_8x8+1*s8x8] ) = (uint8_t)(-1) * 0x0101;
1386                 for( y = 0; y < 4; y++ )
1387                 {
1388                     M64( h->mb.mv[i_list][i_mb_4x4+y*s4x4+0] ) = 0;
1389                     M64( h->mb.mv[i_list][i_mb_4x4+y*s4x4+2] ) = 0;
1390                 }
1391             }
1392         }
1393     }
1394
1395     if( h->param.b_cabac )
1396     {
1397         if( IS_INTRA(i_mb_type) && i_mb_type != I_PCM )
1398             h->mb.chroma_pred_mode[i_mb_xy] = x264_mb_pred_mode8x8c_fix[ h->mb.i_chroma_pred_mode ];
1399         else
1400             h->mb.chroma_pred_mode[i_mb_xy] = I_PRED_CHROMA_DC;
1401
1402         if( !IS_INTRA( i_mb_type ) && !IS_SKIP( i_mb_type ) && !IS_DIRECT( i_mb_type ) )
1403         {
1404             CP64( h->mb.mvd[0][i_mb_xy*8+0], h->mb.cache.mvd[0][x264_scan8[0]+8*3] );
1405             CP16( h->mb.mvd[0][i_mb_xy*8+4], h->mb.cache.mvd[0][x264_scan8[0]+8*0+3] );
1406             CP16( h->mb.mvd[0][i_mb_xy*8+5], h->mb.cache.mvd[0][x264_scan8[0]+8*1+3] );
1407             CP16( h->mb.mvd[0][i_mb_xy*8+6], h->mb.cache.mvd[0][x264_scan8[0]+8*2+3] );
1408             if( h->sh.i_type == SLICE_TYPE_B )
1409             {
1410                 CP64( h->mb.mvd[1][i_mb_xy*8+0], h->mb.cache.mvd[1][x264_scan8[0]+8*3] );
1411                 CP16( h->mb.mvd[1][i_mb_xy*8+4], h->mb.cache.mvd[1][x264_scan8[0]+8*0+3] );
1412                 CP16( h->mb.mvd[1][i_mb_xy*8+5], h->mb.cache.mvd[1][x264_scan8[0]+8*1+3] );
1413                 CP16( h->mb.mvd[1][i_mb_xy*8+6], h->mb.cache.mvd[1][x264_scan8[0]+8*2+3] );
1414             }
1415         }
1416         else
1417         {
1418             M64( h->mb.mvd[0][i_mb_xy*8+0] ) = 0;
1419             M64( h->mb.mvd[0][i_mb_xy*8+4] ) = 0;
1420             if( h->sh.i_type == SLICE_TYPE_B )
1421             {
1422                 M64( h->mb.mvd[1][i_mb_xy*8+0] ) = 0;
1423                 M64( h->mb.mvd[1][i_mb_xy*8+4] ) = 0;
1424             }
1425         }
1426
1427         if( h->sh.i_type == SLICE_TYPE_B )
1428         {
1429             if( i_mb_type == B_SKIP || i_mb_type == B_DIRECT )
1430                 h->mb.skipbp[i_mb_xy] = 0xf;
1431             else if( i_mb_type == B_8x8 )
1432             {
1433                 int skipbp = ( h->mb.i_sub_partition[0] == D_DIRECT_8x8 ) << 0;
1434                 skipbp    |= ( h->mb.i_sub_partition[1] == D_DIRECT_8x8 ) << 1;
1435                 skipbp    |= ( h->mb.i_sub_partition[2] == D_DIRECT_8x8 ) << 2;
1436                 skipbp    |= ( h->mb.i_sub_partition[3] == D_DIRECT_8x8 ) << 3;
1437                 h->mb.skipbp[i_mb_xy] = skipbp;
1438             }
1439             else
1440                 h->mb.skipbp[i_mb_xy] = 0;
1441         }
1442     }
1443 }
1444
1445
1446 void x264_macroblock_bipred_init( x264_t *h )
1447 {
1448     int i_ref0, i_ref1, field;
1449     for( field = 0; field <= h->sh.b_mbaff; field++ )
1450         for( i_ref0 = 0; i_ref0 < (h->i_ref0<<h->sh.b_mbaff); i_ref0++ )
1451         {
1452             int poc0 = h->fref0[i_ref0>>h->sh.b_mbaff]->i_poc;
1453             if( h->sh.b_mbaff && field^(i_ref0&1) )
1454                 poc0 += h->sh.i_delta_poc_bottom;
1455             for( i_ref1 = 0; i_ref1 < (h->i_ref1<<h->sh.b_mbaff); i_ref1++ )
1456             {
1457                 int dist_scale_factor;
1458                 int poc1 = h->fref1[i_ref1>>h->sh.b_mbaff]->i_poc;
1459                 if( h->sh.b_mbaff && field^(i_ref1&1) )
1460                     poc1 += h->sh.i_delta_poc_bottom;
1461                 int cur_poc = h->fdec->i_poc + field*h->sh.i_delta_poc_bottom;
1462                 int td = x264_clip3( poc1 - poc0, -128, 127 );
1463                 if( td == 0 /* || pic0 is a long-term ref */ )
1464                     dist_scale_factor = 256;
1465                 else
1466                 {
1467                     int tb = x264_clip3( cur_poc - poc0, -128, 127 );
1468                     int tx = (16384 + (abs(td) >> 1)) / td;
1469                     dist_scale_factor = x264_clip3( (tb * tx + 32) >> 6, -1024, 1023 );
1470                 }
1471
1472                 h->mb.dist_scale_factor_buf[field][i_ref0][i_ref1] = dist_scale_factor;
1473
1474                 dist_scale_factor >>= 2;
1475                 if( h->param.analyse.b_weighted_bipred
1476                       && dist_scale_factor >= -64
1477                       && dist_scale_factor <= 128 )
1478                 {
1479                     h->mb.bipred_weight_buf[field][i_ref0][i_ref1] = 64 - dist_scale_factor;
1480                     // ssse3 implementation of biweight doesn't support the extrema.
1481                     // if we ever generate them, we'll have to drop that optimization.
1482                     assert( dist_scale_factor >= -63 && dist_scale_factor <= 127 );
1483                 }
1484                 else
1485                     h->mb.bipred_weight_buf[field][i_ref0][i_ref1] = 32;
1486             }
1487         }
1488 }
1489