]> git.sesse.net Git - x264/blob - common/deblock.c
Bump dates to 2012
[x264] / common / deblock.c
1 /*****************************************************************************
2  * deblock.c: deblocking
3  *****************************************************************************
4  * Copyright (C) 2003-2012 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  *          Henrik Gramner <hengar-6@student.ltu.se>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
24  *
25  * This program is also available under a commercial proprietary license.
26  * For more information, contact us at licensing@x264.com.
27  *****************************************************************************/
28
29 #include "common.h"
30
31 /* Deblocking filter */
32 static const uint8_t i_alpha_table[52+12*3] =
33 {
34      0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
35      0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
36      0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
37      0,  0,  0,  0,  0,  0,  4,  4,  5,  6,
38      7,  8,  9, 10, 12, 13, 15, 17, 20, 22,
39     25, 28, 32, 36, 40, 45, 50, 56, 63, 71,
40     80, 90,101,113,127,144,162,182,203,226,
41    255,255,
42    255,255,255,255,255,255,255,255,255,255,255,255,
43 };
44 static const uint8_t i_beta_table[52+12*3] =
45 {
46      0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
47      0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
48      0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
49      0,  0,  0,  0,  0,  0,  2,  2,  2,  3,
50      3,  3,  3,  4,  4,  4,  6,  6,  7,  7,
51      8,  8,  9,  9, 10, 10, 11, 11, 12, 12,
52     13, 13, 14, 14, 15, 15, 16, 16, 17, 17,
53     18, 18,
54     18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18,
55 };
56 static const int8_t i_tc0_table[52+12*3][4] =
57 {
58     {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 },
59     {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 },
60     {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 },
61     {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 },
62     {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 },
63     {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 },
64     {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 0 }, {-1, 0, 0, 1 },
65     {-1, 0, 0, 1 }, {-1, 0, 0, 1 }, {-1, 0, 0, 1 }, {-1, 0, 1, 1 }, {-1, 0, 1, 1 }, {-1, 1, 1, 1 },
66     {-1, 1, 1, 1 }, {-1, 1, 1, 1 }, {-1, 1, 1, 1 }, {-1, 1, 1, 2 }, {-1, 1, 1, 2 }, {-1, 1, 1, 2 },
67     {-1, 1, 1, 2 }, {-1, 1, 2, 3 }, {-1, 1, 2, 3 }, {-1, 2, 2, 3 }, {-1, 2, 2, 4 }, {-1, 2, 3, 4 },
68     {-1, 2, 3, 4 }, {-1, 3, 3, 5 }, {-1, 3, 4, 6 }, {-1, 3, 4, 6 }, {-1, 4, 5, 7 }, {-1, 4, 5, 8 },
69     {-1, 4, 6, 9 }, {-1, 5, 7,10 }, {-1, 6, 8,11 }, {-1, 6, 8,13 }, {-1, 7,10,14 }, {-1, 8,11,16 },
70     {-1, 9,12,18 }, {-1,10,13,20 }, {-1,11,15,23 }, {-1,13,17,25 },
71     {-1,13,17,25 }, {-1,13,17,25 }, {-1,13,17,25 }, {-1,13,17,25 }, {-1,13,17,25 }, {-1,13,17,25 },
72     {-1,13,17,25 }, {-1,13,17,25 }, {-1,13,17,25 }, {-1,13,17,25 }, {-1,13,17,25 }, {-1,13,17,25 },
73 };
74 #define alpha_table(x) i_alpha_table[(x)+24]
75 #define beta_table(x)  i_beta_table[(x)+24]
76 #define tc0_table(x)   i_tc0_table[(x)+24]
77
78 /* From ffmpeg */
79 static ALWAYS_INLINE void deblock_edge_luma_c( pixel *pix, int xstride, int alpha, int beta, int8_t tc0 )
80 {
81     int p2 = pix[-3*xstride];
82     int p1 = pix[-2*xstride];
83     int p0 = pix[-1*xstride];
84     int q0 = pix[ 0*xstride];
85     int q1 = pix[ 1*xstride];
86     int q2 = pix[ 2*xstride];
87
88     if( abs( p0 - q0 ) < alpha && abs( p1 - p0 ) < beta && abs( q1 - q0 ) < beta )
89     {
90         int tc = tc0;
91         int delta;
92         if( abs( p2 - p0 ) < beta )
93         {
94             if( tc0 )
95                 pix[-2*xstride] = p1 + x264_clip3( (( p2 + ((p0 + q0 + 1) >> 1)) >> 1) - p1, -tc0, tc0 );
96             tc++;
97         }
98         if( abs( q2 - q0 ) < beta )
99         {
100             if( tc0 )
101                 pix[ 1*xstride] = q1 + x264_clip3( (( q2 + ((p0 + q0 + 1) >> 1)) >> 1) - q1, -tc0, tc0 );
102             tc++;
103         }
104
105         delta = x264_clip3( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );
106         pix[-1*xstride] = x264_clip_pixel( p0 + delta );    /* p0' */
107         pix[ 0*xstride] = x264_clip_pixel( q0 - delta );    /* q0' */
108     }
109 }
110 static inline void deblock_luma_c( pixel *pix, int xstride, int ystride, int alpha, int beta, int8_t *tc0 )
111 {
112     for( int i = 0; i < 4; i++ )
113     {
114         if( tc0[i] < 0 )
115         {
116             pix += 4*ystride;
117             continue;
118         }
119         for( int d = 0; d < 4; d++, pix += ystride )
120             deblock_edge_luma_c( pix, xstride, alpha, beta, tc0[i] );
121     }
122 }
123 static void deblock_h_luma_mbaff_c( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 )
124 {
125     for( int d = 0; d < 8; d++, pix += stride )
126         deblock_edge_luma_c( pix, 1, alpha, beta, tc0[d>>1] );
127 }
128 static void deblock_v_luma_c( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 )
129 {
130     deblock_luma_c( pix, stride, 1, alpha, beta, tc0 );
131 }
132 static void deblock_h_luma_c( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 )
133 {
134     deblock_luma_c( pix, 1, stride, alpha, beta, tc0 );
135 }
136
137 static ALWAYS_INLINE void deblock_edge_chroma_c( pixel *pix, int xstride, int alpha, int beta, int8_t tc )
138 {
139     int p1 = pix[-2*xstride];
140     int p0 = pix[-1*xstride];
141     int q0 = pix[ 0*xstride];
142     int q1 = pix[ 1*xstride];
143
144     if( abs( p0 - q0 ) < alpha && abs( p1 - p0 ) < beta && abs( q1 - q0 ) < beta )
145     {
146         int delta = x264_clip3( (((q0 - p0 ) << 2) + (p1 - q1) + 4) >> 3, -tc, tc );
147         pix[-1*xstride] = x264_clip_pixel( p0 + delta );    /* p0' */
148         pix[ 0*xstride] = x264_clip_pixel( q0 - delta );    /* q0' */
149     }
150 }
151 static ALWAYS_INLINE void deblock_chroma_c( pixel *pix, int height, int xstride, int ystride, int alpha, int beta, int8_t *tc0 )
152 {
153     for( int i = 0; i < 4; i++ )
154     {
155         int tc = tc0[i];
156         if( tc <= 0 )
157         {
158             pix += height*ystride;
159             continue;
160         }
161         for( int d = 0; d < height; d++, pix += ystride-2 )
162             for( int e = 0; e < 2; e++, pix++ )
163                 deblock_edge_chroma_c( pix, xstride, alpha, beta, tc0[i] );
164     }
165 }
166 static void deblock_h_chroma_mbaff_c( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 )
167 {
168     deblock_chroma_c( pix, 1, 2, stride, alpha, beta, tc0 );
169 }
170 static void deblock_v_chroma_c( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 )
171 {
172     deblock_chroma_c( pix, 2, stride, 2, alpha, beta, tc0 );
173 }
174 static void deblock_h_chroma_c( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 )
175 {
176     deblock_chroma_c( pix, 2, 2, stride, alpha, beta, tc0 );
177 }
178 static void deblock_h_chroma_422_c( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 )
179 {
180     deblock_chroma_c( pix, 4, 2, stride, alpha, beta, tc0 );
181 }
182
183 static ALWAYS_INLINE void deblock_edge_luma_intra_c( pixel *pix, int xstride, int alpha, int beta )
184 {
185     int p2 = pix[-3*xstride];
186     int p1 = pix[-2*xstride];
187     int p0 = pix[-1*xstride];
188     int q0 = pix[ 0*xstride];
189     int q1 = pix[ 1*xstride];
190     int q2 = pix[ 2*xstride];
191
192     if( abs( p0 - q0 ) < alpha && abs( p1 - p0 ) < beta && abs( q1 - q0 ) < beta )
193     {
194         if( abs( p0 - q0 ) < ((alpha >> 2) + 2) )
195         {
196             if( abs( p2 - p0 ) < beta ) /* p0', p1', p2' */
197             {
198                 const int p3 = pix[-4*xstride];
199                 pix[-1*xstride] = ( p2 + 2*p1 + 2*p0 + 2*q0 + q1 + 4 ) >> 3;
200                 pix[-2*xstride] = ( p2 + p1 + p0 + q0 + 2 ) >> 2;
201                 pix[-3*xstride] = ( 2*p3 + 3*p2 + p1 + p0 + q0 + 4 ) >> 3;
202             }
203             else /* p0' */
204                 pix[-1*xstride] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
205             if( abs( q2 - q0 ) < beta ) /* q0', q1', q2' */
206             {
207                 const int q3 = pix[3*xstride];
208                 pix[0*xstride] = ( p1 + 2*p0 + 2*q0 + 2*q1 + q2 + 4 ) >> 3;
209                 pix[1*xstride] = ( p0 + q0 + q1 + q2 + 2 ) >> 2;
210                 pix[2*xstride] = ( 2*q3 + 3*q2 + q1 + q0 + p0 + 4 ) >> 3;
211             }
212             else /* q0' */
213                 pix[0*xstride] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
214         }
215         else /* p0', q0' */
216         {
217             pix[-1*xstride] = ( 2*p1 + p0 + q1 + 2 ) >> 2;
218             pix[ 0*xstride] = ( 2*q1 + q0 + p1 + 2 ) >> 2;
219         }
220     }
221 }
222 static inline void deblock_luma_intra_c( pixel *pix, int xstride, int ystride, int alpha, int beta )
223 {
224     for( int d = 0; d < 16; d++, pix += ystride )
225         deblock_edge_luma_intra_c( pix, xstride, alpha, beta );
226 }
227 static void deblock_h_luma_intra_mbaff_c( pixel *pix, int ystride, int alpha, int beta )
228 {
229     for( int d = 0; d < 8; d++, pix += ystride )
230         deblock_edge_luma_intra_c( pix, 1, alpha, beta );
231 }
232 static void deblock_v_luma_intra_c( pixel *pix, int stride, int alpha, int beta )
233 {
234     deblock_luma_intra_c( pix, stride, 1, alpha, beta );
235 }
236 static void deblock_h_luma_intra_c( pixel *pix, int stride, int alpha, int beta )
237 {
238     deblock_luma_intra_c( pix, 1, stride, alpha, beta );
239 }
240
241 static ALWAYS_INLINE void deblock_edge_chroma_intra_c( pixel *pix, int xstride, int alpha, int beta )
242 {
243     int p1 = pix[-2*xstride];
244     int p0 = pix[-1*xstride];
245     int q0 = pix[ 0*xstride];
246     int q1 = pix[ 1*xstride];
247
248     if( abs( p0 - q0 ) < alpha && abs( p1 - p0 ) < beta && abs( q1 - q0 ) < beta )
249     {
250         pix[-1*xstride] = (2*p1 + p0 + q1 + 2) >> 2;   /* p0' */
251         pix[ 0*xstride] = (2*q1 + q0 + p1 + 2) >> 2;   /* q0' */
252     }
253 }
254 static ALWAYS_INLINE void deblock_chroma_intra_c( pixel *pix, int width, int height, int xstride, int ystride, int alpha, int beta )
255 {
256     for( int d = 0; d < height; d++, pix += ystride-2 )
257         for( int e = 0; e < width; e++, pix++ )
258             deblock_edge_chroma_intra_c( pix, xstride, alpha, beta );
259 }
260 static void deblock_h_chroma_intra_mbaff_c( pixel *pix, int stride, int alpha, int beta )
261 {
262     deblock_chroma_intra_c( pix, 2, 4, 2, stride, alpha, beta );
263 }
264 static void deblock_v_chroma_intra_c( pixel *pix, int stride, int alpha, int beta )
265 {
266     deblock_chroma_intra_c( pix, 1, 16, stride, 2, alpha, beta );
267 }
268 static void deblock_h_chroma_intra_c( pixel *pix, int stride, int alpha, int beta )
269 {
270     deblock_chroma_intra_c( pix, 2, 8, 2, stride, alpha, beta );
271 }
272 static void deblock_h_chroma_422_intra_c( pixel *pix, int stride, int alpha, int beta )
273 {
274     deblock_chroma_intra_c( pix, 2, 16, 2, stride, alpha, beta );
275 }
276
277 static void deblock_strength_c( uint8_t nnz[X264_SCAN8_SIZE], int8_t ref[2][X264_SCAN8_LUMA_SIZE],
278                                 int16_t mv[2][X264_SCAN8_LUMA_SIZE][2], uint8_t bs[2][8][4], int mvy_limit,
279                                 int bframe )
280 {
281     for( int dir = 0; dir < 2; dir++ )
282     {
283         int s1 = dir ? 1 : 8;
284         int s2 = dir ? 8 : 1;
285         for( int edge = 0; edge < 4; edge++ )
286             for( int i = 0, loc = X264_SCAN8_0+edge*s2; i < 4; i++, loc += s1 )
287             {
288                 int locn = loc - s2;
289                 if( nnz[loc] || nnz[locn] )
290                     bs[dir][edge][i] = 2;
291                 else if( ref[0][loc] != ref[0][locn] ||
292                          abs( mv[0][loc][0] - mv[0][locn][0] ) >= 4 ||
293                          abs( mv[0][loc][1] - mv[0][locn][1] ) >= mvy_limit ||
294                         (bframe && (ref[1][loc] != ref[1][locn] ||
295                          abs( mv[1][loc][0] - mv[1][locn][0] ) >= 4 ||
296                          abs( mv[1][loc][1] - mv[1][locn][1] ) >= mvy_limit )))
297                 {
298                     bs[dir][edge][i] = 1;
299                 }
300                 else
301                     bs[dir][edge][i] = 0;
302             }
303     }
304 }
305
306 static ALWAYS_INLINE void deblock_edge( x264_t *h, pixel *pix, int i_stride, uint8_t bS[4], int i_qp, int a, int b, int b_chroma, x264_deblock_inter_t pf_inter )
307 {
308     int index_a = i_qp + a;
309     int index_b = i_qp + b;
310     int alpha = alpha_table(index_a) << (BIT_DEPTH-8);
311     int beta  = beta_table(index_b) << (BIT_DEPTH-8);
312     int8_t tc[4];
313
314     if( !M32(bS) || !alpha || !beta )
315         return;
316
317     tc[0] = (tc0_table(index_a)[bS[0]] << (BIT_DEPTH-8)) + b_chroma;
318     tc[1] = (tc0_table(index_a)[bS[1]] << (BIT_DEPTH-8)) + b_chroma;
319     tc[2] = (tc0_table(index_a)[bS[2]] << (BIT_DEPTH-8)) + b_chroma;
320     tc[3] = (tc0_table(index_a)[bS[3]] << (BIT_DEPTH-8)) + b_chroma;
321
322     pf_inter( pix, i_stride, alpha, beta, tc );
323 }
324
325 static ALWAYS_INLINE void deblock_edge_intra( x264_t *h, pixel *pix, int i_stride, uint8_t bS[4], int i_qp, int a, int b, int b_chroma, x264_deblock_intra_t pf_intra )
326 {
327     int index_a = i_qp + a;
328     int index_b = i_qp + b;
329     int alpha = alpha_table(index_a) << (BIT_DEPTH-8);
330     int beta  = beta_table(index_b) << (BIT_DEPTH-8);
331
332     if( !alpha || !beta )
333         return;
334
335     pf_intra( pix, i_stride, alpha, beta );
336 }
337
338 static ALWAYS_INLINE void x264_macroblock_cache_load_neighbours_deblock( x264_t *h, int mb_x, int mb_y )
339 {
340     int deblock_on_slice_edges = h->sh.i_disable_deblocking_filter_idc != 2;
341
342     h->mb.i_neighbour = 0;
343     h->mb.i_mb_xy = mb_y * h->mb.i_mb_stride + mb_x;
344     h->mb.b_interlaced = PARAM_INTERLACED && h->mb.field[h->mb.i_mb_xy];
345     h->mb.i_mb_top_y = mb_y - (1 << MB_INTERLACED);
346     h->mb.i_mb_top_xy = mb_x + h->mb.i_mb_stride*h->mb.i_mb_top_y;
347     h->mb.i_mb_left_xy[1] =
348     h->mb.i_mb_left_xy[0] = h->mb.i_mb_xy - 1;
349     if( SLICE_MBAFF )
350     {
351         if( mb_y&1 )
352         {
353             if( mb_x && h->mb.field[h->mb.i_mb_xy - 1] != MB_INTERLACED )
354                 h->mb.i_mb_left_xy[0] -= h->mb.i_mb_stride;
355         }
356         else
357         {
358             if( h->mb.i_mb_top_xy >= 0 && MB_INTERLACED && !h->mb.field[h->mb.i_mb_top_xy] )
359             {
360                 h->mb.i_mb_top_xy += h->mb.i_mb_stride;
361                 h->mb.i_mb_top_y++;
362             }
363             if( mb_x && h->mb.field[h->mb.i_mb_xy - 1] != MB_INTERLACED )
364                 h->mb.i_mb_left_xy[1] += h->mb.i_mb_stride;
365         }
366     }
367
368     if( mb_x > 0 && (deblock_on_slice_edges ||
369         h->mb.slice_table[h->mb.i_mb_left_xy[0]] == h->mb.slice_table[h->mb.i_mb_xy]) )
370         h->mb.i_neighbour |= MB_LEFT;
371     if( mb_y > MB_INTERLACED && (deblock_on_slice_edges
372         || h->mb.slice_table[h->mb.i_mb_top_xy] == h->mb.slice_table[h->mb.i_mb_xy]) )
373         h->mb.i_neighbour |= MB_TOP;
374 }
375
376 void x264_frame_deblock_row( x264_t *h, int mb_y )
377 {
378     int b_interlaced = SLICE_MBAFF;
379     int a = h->sh.i_alpha_c0_offset - QP_BD_OFFSET;
380     int b = h->sh.i_beta_offset - QP_BD_OFFSET;
381     int qp_thresh = 15 - X264_MIN( a, b ) - X264_MAX( 0, h->pps->i_chroma_qp_index_offset );
382     int stridey   = h->fdec->i_stride[0];
383     int strideuv  = h->fdec->i_stride[1];
384     int chroma444 = CHROMA444;
385     int chroma_height = 16 >> CHROMA_V_SHIFT;
386     intptr_t uvdiff = chroma444 ? h->fdec->plane[2] - h->fdec->plane[1] : 1;
387
388     for( int mb_x = 0; mb_x < h->mb.i_mb_width; mb_x += (~b_interlaced | mb_y)&1, mb_y ^= b_interlaced )
389     {
390         x264_prefetch_fenc( h, h->fdec, mb_x, mb_y );
391         x264_macroblock_cache_load_neighbours_deblock( h, mb_x, mb_y );
392
393         int mb_xy = h->mb.i_mb_xy;
394         int transform_8x8 = h->mb.mb_transform_size[h->mb.i_mb_xy];
395         int intra_cur = IS_INTRA( h->mb.type[mb_xy] );
396         uint8_t (*bs)[8][4] = h->deblock_strength[mb_y&1][mb_x];
397
398         pixel *pixy = h->fdec->plane[0] + 16*mb_y*stridey  + 16*mb_x;
399         pixel *pixuv = h->fdec->plane[1] + chroma_height*mb_y*strideuv + 16*mb_x;
400
401         if( mb_y & MB_INTERLACED )
402         {
403             pixy -= 15*stridey;
404             pixuv -= (chroma_height-1)*strideuv;
405         }
406
407         int stride2y  = stridey << MB_INTERLACED;
408         int stride2uv = strideuv << MB_INTERLACED;
409         int qp = h->mb.qp[mb_xy];
410         int qpc = h->chroma_qp_table[qp];
411         int first_edge_only = (h->mb.partition[mb_xy] == D_16x16 && !h->mb.cbp[mb_xy] && !intra_cur) || qp <= qp_thresh;
412
413         #define FILTER( intra, dir, edge, qp, chroma_qp )\
414         do\
415         {\
416             if( !(edge & 1) || !transform_8x8 )\
417             {\
418                 deblock_edge##intra( h, pixy + 4*edge*(dir?stride2y:1),\
419                                      stride2y, bs[dir][edge], qp, a, b, 0,\
420                                      h->loopf.deblock_luma##intra[dir] );\
421                 if( CHROMA_FORMAT == CHROMA_444 )\
422                 {\
423                     deblock_edge##intra( h, pixuv          + 4*edge*(dir?stride2uv:1),\
424                                          stride2uv, bs[dir][edge], chroma_qp, a, b, 0,\
425                                          h->loopf.deblock_luma##intra[dir] );\
426                     deblock_edge##intra( h, pixuv + uvdiff + 4*edge*(dir?stride2uv:1),\
427                                          stride2uv, bs[dir][edge], chroma_qp, a, b, 0,\
428                                          h->loopf.deblock_luma##intra[dir] );\
429                 }\
430                 else if( CHROMA_FORMAT == CHROMA_420 && !(edge & 1) )\
431                 {\
432                     deblock_edge##intra( h, pixuv + edge*(dir?2*stride2uv:4),\
433                                          stride2uv, bs[dir][edge], chroma_qp, a, b, 1,\
434                                          h->loopf.deblock_chroma##intra[dir] );\
435                 }\
436             }\
437             if( CHROMA_FORMAT == CHROMA_422 && (dir || !(edge & 1)) )\
438             {\
439                 deblock_edge##intra( h, pixuv + edge*(dir?4*stride2uv:4),\
440                                      stride2uv, bs[dir][edge], chroma_qp, a, b, 1,\
441                                      h->loopf.deblock_chroma##intra[dir] );\
442             }\
443         } while(0)
444
445         if( h->mb.i_neighbour & MB_LEFT )
446         {
447             if( b_interlaced && h->mb.field[h->mb.i_mb_left_xy[0]] != MB_INTERLACED )
448             {
449                 int luma_qp[2];
450                 int chroma_qp[2];
451                 int left_qp[2];
452                 x264_deblock_inter_t luma_deblock = h->loopf.deblock_luma_mbaff;
453                 x264_deblock_inter_t chroma_deblock = h->loopf.deblock_chroma_mbaff;
454                 x264_deblock_intra_t luma_intra_deblock = h->loopf.deblock_luma_intra_mbaff;
455                 x264_deblock_intra_t chroma_intra_deblock = h->loopf.deblock_chroma_intra_mbaff;
456                 int c = chroma444 ? 0 : 1;
457
458                 left_qp[0] = h->mb.qp[h->mb.i_mb_left_xy[0]];
459                 luma_qp[0] = (qp + left_qp[0] + 1) >> 1;
460                 chroma_qp[0] = (qpc + h->chroma_qp_table[left_qp[0]] + 1) >> 1;
461                 if( intra_cur || IS_INTRA( h->mb.type[h->mb.i_mb_left_xy[0]] ) )
462                 {
463                     deblock_edge_intra( h, pixy,           2*stridey,  bs[0][0], luma_qp[0],   a, b, 0, luma_intra_deblock );
464                     deblock_edge_intra( h, pixuv,          2*strideuv, bs[0][0], chroma_qp[0], a, b, c, chroma_intra_deblock );
465                     if( chroma444 )
466                         deblock_edge_intra( h, pixuv + uvdiff, 2*strideuv, bs[0][0], chroma_qp[0], a, b, c, chroma_intra_deblock );
467                 }
468                 else
469                 {
470                     deblock_edge( h, pixy,           2*stridey,  bs[0][0], luma_qp[0],   a, b, 0, luma_deblock );
471                     deblock_edge( h, pixuv,          2*strideuv, bs[0][0], chroma_qp[0], a, b, c, chroma_deblock );
472                     if( chroma444 )
473                         deblock_edge( h, pixuv + uvdiff, 2*strideuv, bs[0][0], chroma_qp[0], a, b, c, chroma_deblock );
474                 }
475
476                 int offy = MB_INTERLACED ? 4 : 0;
477                 int offuv = MB_INTERLACED ? 4-CHROMA_V_SHIFT : 0;
478                 left_qp[1] = h->mb.qp[h->mb.i_mb_left_xy[1]];
479                 luma_qp[1] = (qp + left_qp[1] + 1) >> 1;
480                 chroma_qp[1] = (qpc + h->chroma_qp_table[left_qp[1]] + 1) >> 1;
481                 if( intra_cur || IS_INTRA( h->mb.type[h->mb.i_mb_left_xy[1]] ) )
482                 {
483                     deblock_edge_intra( h, pixy           + (stridey<<offy),   2*stridey,  bs[0][4], luma_qp[1],   a, b, 0, luma_intra_deblock );
484                     deblock_edge_intra( h, pixuv          + (strideuv<<offuv), 2*strideuv, bs[0][4], chroma_qp[1], a, b, c, chroma_intra_deblock );
485                     if( chroma444 )
486                         deblock_edge_intra( h, pixuv + uvdiff + (strideuv<<offuv), 2*strideuv, bs[0][4], chroma_qp[1], a, b, c, chroma_intra_deblock );
487                 }
488                 else
489                 {
490                     deblock_edge( h, pixy           + (stridey<<offy),   2*stridey,  bs[0][4], luma_qp[1],   a, b, 0, luma_deblock );
491                     deblock_edge( h, pixuv          + (strideuv<<offuv), 2*strideuv, bs[0][4], chroma_qp[1], a, b, c, chroma_deblock );
492                     if( chroma444 )
493                         deblock_edge( h, pixuv + uvdiff + (strideuv<<offuv), 2*strideuv, bs[0][4], chroma_qp[1], a, b, c, chroma_deblock );
494                 }
495             }
496             else
497             {
498                 int qpl = h->mb.qp[h->mb.i_mb_xy-1];
499                 int qp_left = (qp + qpl + 1) >> 1;
500                 int qpc_left = (qpc + h->chroma_qp_table[qpl] + 1) >> 1;
501                 int intra_left = IS_INTRA( h->mb.type[h->mb.i_mb_xy-1] );
502
503                 if( intra_cur || intra_left )
504                     FILTER( _intra, 0, 0, qp_left, qpc_left );
505                 else
506                     FILTER(       , 0, 0, qp_left, qpc_left );
507             }
508         }
509         if( !first_edge_only )
510         {
511             FILTER( , 0, 1, qp, qpc );
512             FILTER( , 0, 2, qp, qpc );
513             FILTER( , 0, 3, qp, qpc );
514         }
515
516         if( h->mb.i_neighbour & MB_TOP )
517         {
518             if( b_interlaced && !(mb_y&1) && !MB_INTERLACED && h->mb.field[h->mb.i_mb_top_xy] )
519             {
520                 int mbn_xy = mb_xy - 2 * h->mb.i_mb_stride;
521
522                 for( int j = 0; j < 2; j++, mbn_xy += h->mb.i_mb_stride )
523                 {
524                     int qpt = h->mb.qp[mbn_xy];
525                     int qp_top = (qp + qpt + 1) >> 1;
526                     int qpc_top = (qpc + h->chroma_qp_table[qpt] + 1) >> 1;
527                     int intra_top = IS_INTRA( h->mb.type[mbn_xy] );
528                     if( intra_cur || intra_top )
529                         M32( bs[1][4*j] ) = 0x03030303;
530
531                     // deblock the first horizontal edge of the even rows, then the first horizontal edge of the odd rows
532                     deblock_edge( h, pixy      + j*stridey,  2* stridey, bs[1][4*j], qp_top, a, b, 0, h->loopf.deblock_luma[1] );
533                     if( chroma444 )
534                     {
535                         deblock_edge( h, pixuv          + j*strideuv, 2*strideuv, bs[1][4*j], qpc_top, a, b, 0, h->loopf.deblock_luma[1] );
536                         deblock_edge( h, pixuv + uvdiff + j*strideuv, 2*strideuv, bs[1][4*j], qpc_top, a, b, 0, h->loopf.deblock_luma[1] );
537                     }
538                     else
539                         deblock_edge( h, pixuv          + j*strideuv, 2*strideuv, bs[1][4*j], qpc_top, a, b, 1, h->loopf.deblock_chroma[1] );
540                 }
541             }
542             else
543             {
544                 int qpt = h->mb.qp[h->mb.i_mb_top_xy];
545                 int qp_top = (qp + qpt + 1) >> 1;
546                 int qpc_top = (qpc + h->chroma_qp_table[qpt] + 1) >> 1;
547                 int intra_top = IS_INTRA( h->mb.type[h->mb.i_mb_top_xy] );
548
549                 if( (!b_interlaced || (!MB_INTERLACED && !h->mb.field[h->mb.i_mb_top_xy]))
550                     && (intra_cur || intra_top) )
551                 {
552                     FILTER( _intra, 1, 0, qp_top, qpc_top );
553                 }
554                 else
555                 {
556                     if( intra_cur || intra_top )
557                         M32( bs[1][0] ) = 0x03030303;
558                     FILTER(       , 1, 0, qp_top, qpc_top );
559                 }
560             }
561         }
562
563         if( !first_edge_only )
564         {
565             FILTER( , 1, 1, qp, qpc );
566             FILTER( , 1, 2, qp, qpc );
567             FILTER( , 1, 3, qp, qpc );
568         }
569
570         #undef FILTER
571     }
572 }
573
574 /* For deblock-aware RD.
575  * TODO:
576  *  deblock macroblock edges
577  *  support analysis partitions smaller than 16x16
578  *  deblock chroma for 4:2:0/4:2:2
579  *  handle duplicate refs correctly
580  *  handle cavlc+8x8dct correctly
581  */
582 void x264_macroblock_deblock( x264_t *h )
583 {
584     int a = h->sh.i_alpha_c0_offset - QP_BD_OFFSET;
585     int b = h->sh.i_beta_offset - QP_BD_OFFSET;
586     int qp_thresh = 15 - X264_MIN( a, b ) - X264_MAX( 0, h->pps->i_chroma_qp_index_offset );
587     int intra_cur = IS_INTRA( h->mb.i_type );
588     int qp = h->mb.i_qp;
589     int qpc = h->mb.i_chroma_qp;
590     if( (h->mb.i_partition == D_16x16 && !h->mb.i_cbp_luma && !intra_cur) || qp <= qp_thresh )
591         return;
592
593     uint8_t (*bs)[8][4] = h->deblock_strength[h->mb.i_mb_y&1][h->mb.i_mb_x];
594     if( intra_cur )
595     {
596         memset( &bs[0][1], 3, 3*4*sizeof(uint8_t) );
597         memset( &bs[1][1], 3, 3*4*sizeof(uint8_t) );
598     }
599     else
600         h->loopf.deblock_strength( h->mb.cache.non_zero_count, h->mb.cache.ref, h->mb.cache.mv,
601                                    bs, 4 >> MB_INTERLACED, h->sh.i_type == SLICE_TYPE_B );
602
603     int transform_8x8 = h->mb.b_transform_8x8;
604
605     #define FILTER( dir, edge )\
606     do\
607     {\
608         deblock_edge( h, h->mb.pic.p_fdec[0] + 4*edge*(dir?FDEC_STRIDE:1),\
609                       FDEC_STRIDE, bs[dir][edge], qp, a, b, 0,\
610                       h->loopf.deblock_luma[dir] );\
611         if( CHROMA444 )\
612         {\
613             deblock_edge( h, h->mb.pic.p_fdec[1] + 4*edge*(dir?FDEC_STRIDE:1),\
614                           FDEC_STRIDE, bs[dir][edge], qpc, a, b, 0,\
615                           h->loopf.deblock_luma[dir] );\
616             deblock_edge( h, h->mb.pic.p_fdec[2] + 4*edge*(dir?FDEC_STRIDE:1),\
617                           FDEC_STRIDE, bs[dir][edge], qpc, a, b, 0,\
618                           h->loopf.deblock_luma[dir] );\
619         }\
620     } while(0)
621
622     if( !transform_8x8 ) FILTER( 0, 1 );
623                          FILTER( 0, 2 );
624     if( !transform_8x8 ) FILTER( 0, 3 );
625
626     if( !transform_8x8 ) FILTER( 1, 1 );
627                          FILTER( 1, 2 );
628     if( !transform_8x8 ) FILTER( 1, 3 );
629
630     #undef FILTER
631 }
632
633 #if HAVE_MMX
634 void x264_deblock_v_luma_sse2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
635 void x264_deblock_v_luma_avx ( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
636 void x264_deblock_h_luma_sse2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
637 void x264_deblock_h_luma_avx ( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
638 void x264_deblock_v_chroma_sse2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
639 void x264_deblock_v_chroma_avx ( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
640 void x264_deblock_h_chroma_sse2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
641 void x264_deblock_h_chroma_avx ( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
642 void x264_deblock_h_chroma_mbaff_sse2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
643 void x264_deblock_h_chroma_mbaff_avx ( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
644 void x264_deblock_h_chroma_422_mmx2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
645 void x264_deblock_h_chroma_422_sse2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
646 void x264_deblock_h_chroma_422_avx ( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
647 void x264_deblock_v_luma_intra_sse2( pixel *pix, int stride, int alpha, int beta );
648 void x264_deblock_v_luma_intra_avx ( pixel *pix, int stride, int alpha, int beta );
649 void x264_deblock_h_luma_intra_sse2( pixel *pix, int stride, int alpha, int beta );
650 void x264_deblock_h_luma_intra_avx ( pixel *pix, int stride, int alpha, int beta );
651 void x264_deblock_v_chroma_intra_sse2( pixel *pix, int stride, int alpha, int beta );
652 void x264_deblock_v_chroma_intra_avx ( pixel *pix, int stride, int alpha, int beta );
653 void x264_deblock_h_chroma_intra_sse2( pixel *pix, int stride, int alpha, int beta );
654 void x264_deblock_h_chroma_intra_avx ( pixel *pix, int stride, int alpha, int beta );
655 void x264_deblock_h_chroma_422_intra_mmx2( pixel *pix, int stride, int alpha, int beta );
656 void x264_deblock_h_chroma_422_intra_sse2( pixel *pix, int stride, int alpha, int beta );
657 void x264_deblock_h_chroma_422_intra_avx ( pixel *pix, int stride, int alpha, int beta );
658 void x264_deblock_strength_mmx2 ( uint8_t nnz[X264_SCAN8_SIZE], int8_t ref[2][X264_SCAN8_LUMA_SIZE],
659                                   int16_t mv[2][X264_SCAN8_LUMA_SIZE][2], uint8_t bs[2][8][4],
660                                   int mvy_limit, int bframe );
661 void x264_deblock_strength_sse2 ( uint8_t nnz[X264_SCAN8_SIZE], int8_t ref[2][X264_SCAN8_LUMA_SIZE],
662                                   int16_t mv[2][X264_SCAN8_LUMA_SIZE][2], uint8_t bs[2][8][4],
663                                   int mvy_limit, int bframe );
664 void x264_deblock_strength_ssse3( uint8_t nnz[X264_SCAN8_SIZE], int8_t ref[2][X264_SCAN8_LUMA_SIZE],
665                                   int16_t mv[2][X264_SCAN8_LUMA_SIZE][2], uint8_t bs[2][8][4],
666                                   int mvy_limit, int bframe );
667 void x264_deblock_strength_avx  ( uint8_t nnz[X264_SCAN8_SIZE], int8_t ref[2][X264_SCAN8_LUMA_SIZE],
668                                   int16_t mv[2][X264_SCAN8_LUMA_SIZE][2], uint8_t bs[2][8][4],
669                                   int mvy_limit, int bframe );
670
671 void x264_deblock_h_chroma_intra_mbaff_mmx2( pixel *pix, int stride, int alpha, int beta );
672 void x264_deblock_h_chroma_intra_mbaff_sse2( pixel *pix, int stride, int alpha, int beta );
673 void x264_deblock_h_chroma_intra_mbaff_avx ( pixel *pix, int stride, int alpha, int beta );
674 #if ARCH_X86
675 void x264_deblock_h_luma_mmx2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
676 void x264_deblock_v8_luma_mmx2( uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0 );
677 void x264_deblock_v_chroma_mmx2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
678 void x264_deblock_h_chroma_mmx2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
679 void x264_deblock_h_chroma_mbaff_mmx2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
680 void x264_deblock_h_luma_intra_mmx2( pixel *pix, int stride, int alpha, int beta );
681 void x264_deblock_v8_luma_intra_mmx2( uint8_t *pix, int stride, int alpha, int beta );
682 void x264_deblock_v_chroma_intra_mmx2( pixel *pix, int stride, int alpha, int beta );
683 void x264_deblock_h_chroma_intra_mmx2( pixel *pix, int stride, int alpha, int beta );
684 void x264_deblock_h_chroma_intra_mbaff_mmx2( pixel *pix, int stride, int alpha, int beta );
685
686 #if HIGH_BIT_DEPTH
687 void x264_deblock_v_luma_mmx2( pixel *pix, int stride, int alpha, int beta, int8_t *tc0 );
688 void x264_deblock_v_luma_intra_mmx2( pixel *pix, int stride, int alpha, int beta );
689 #else
690 // FIXME this wrapper has a significant cpu cost
691 static void x264_deblock_v_luma_mmx2( uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0 )
692 {
693     x264_deblock_v8_luma_mmx2( pix,   stride, alpha, beta, tc0   );
694     x264_deblock_v8_luma_mmx2( pix+8, stride, alpha, beta, tc0+2 );
695 }
696 static void x264_deblock_v_luma_intra_mmx2( uint8_t *pix, int stride, int alpha, int beta )
697 {
698     x264_deblock_v8_luma_intra_mmx2( pix,   stride, alpha, beta );
699     x264_deblock_v8_luma_intra_mmx2( pix+8, stride, alpha, beta );
700 }
701 #endif // HIGH_BIT_DEPTH
702 #endif
703 #endif
704
705 #if ARCH_PPC
706 void x264_deblock_v_luma_altivec( uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0 );
707 void x264_deblock_h_luma_altivec( uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0 );
708 #endif // ARCH_PPC
709
710 #if HAVE_ARMV6
711 void x264_deblock_v_luma_neon( uint8_t *, int, int, int, int8_t * );
712 void x264_deblock_h_luma_neon( uint8_t *, int, int, int, int8_t * );
713 void x264_deblock_v_chroma_neon( uint8_t *, int, int, int, int8_t * );
714 void x264_deblock_h_chroma_neon( uint8_t *, int, int, int, int8_t * );
715 #endif
716
717 void x264_deblock_init( int cpu, x264_deblock_function_t *pf, int b_mbaff )
718 {
719     pf->deblock_luma[1] = deblock_v_luma_c;
720     pf->deblock_luma[0] = deblock_h_luma_c;
721     pf->deblock_chroma[1] = deblock_v_chroma_c;
722     pf->deblock_h_chroma_420 = deblock_h_chroma_c;
723     pf->deblock_h_chroma_422 = deblock_h_chroma_422_c;
724     pf->deblock_luma_intra[1] = deblock_v_luma_intra_c;
725     pf->deblock_luma_intra[0] = deblock_h_luma_intra_c;
726     pf->deblock_chroma_intra[1] = deblock_v_chroma_intra_c;
727     pf->deblock_h_chroma_420_intra = deblock_h_chroma_intra_c;
728     pf->deblock_h_chroma_422_intra = deblock_h_chroma_422_intra_c;
729     pf->deblock_luma_mbaff = deblock_h_luma_mbaff_c;
730     pf->deblock_chroma_420_mbaff = deblock_h_chroma_mbaff_c;
731     pf->deblock_luma_intra_mbaff = deblock_h_luma_intra_mbaff_c;
732     pf->deblock_chroma_420_intra_mbaff = deblock_h_chroma_intra_mbaff_c;
733     pf->deblock_strength = deblock_strength_c;
734
735 #if HAVE_MMX
736     if( cpu&X264_CPU_MMX2 )
737     {
738 #if ARCH_X86
739         pf->deblock_luma[1] = x264_deblock_v_luma_mmx2;
740         pf->deblock_luma[0] = x264_deblock_h_luma_mmx2;
741         pf->deblock_chroma[1] = x264_deblock_v_chroma_mmx2;
742         pf->deblock_h_chroma_420 = x264_deblock_h_chroma_mmx2;
743         pf->deblock_chroma_420_mbaff = x264_deblock_h_chroma_mbaff_mmx2;
744         pf->deblock_h_chroma_422 = x264_deblock_h_chroma_422_mmx2;
745         pf->deblock_h_chroma_422_intra = x264_deblock_h_chroma_422_intra_mmx2;
746         pf->deblock_luma_intra[1] = x264_deblock_v_luma_intra_mmx2;
747         pf->deblock_luma_intra[0] = x264_deblock_h_luma_intra_mmx2;
748         pf->deblock_chroma_intra[1] = x264_deblock_v_chroma_intra_mmx2;
749         pf->deblock_h_chroma_420_intra = x264_deblock_h_chroma_intra_mmx2;
750         pf->deblock_chroma_420_intra_mbaff = x264_deblock_h_chroma_intra_mbaff_mmx2;
751 #endif
752 #if !HIGH_BIT_DEPTH
753         pf->deblock_chroma_420_intra_mbaff = x264_deblock_h_chroma_intra_mbaff_mmx2;
754 #endif
755         pf->deblock_strength = x264_deblock_strength_mmx2;
756         if( cpu&X264_CPU_SSE2 )
757         {
758             pf->deblock_strength = x264_deblock_strength_sse2;
759             pf->deblock_h_chroma_420 = x264_deblock_h_chroma_sse2;
760             pf->deblock_h_chroma_422 = x264_deblock_h_chroma_422_sse2;
761             pf->deblock_h_chroma_422_intra = x264_deblock_h_chroma_422_intra_sse2;
762             pf->deblock_chroma_420_mbaff = x264_deblock_h_chroma_mbaff_sse2;
763             if( !(cpu&X264_CPU_STACK_MOD4) )
764             {
765                 pf->deblock_luma[1] = x264_deblock_v_luma_sse2;
766                 pf->deblock_luma[0] = x264_deblock_h_luma_sse2;
767                 pf->deblock_chroma[1] = x264_deblock_v_chroma_sse2;
768                 pf->deblock_luma_intra[1] = x264_deblock_v_luma_intra_sse2;
769                 pf->deblock_luma_intra[0] = x264_deblock_h_luma_intra_sse2;
770                 pf->deblock_chroma_intra[1] = x264_deblock_v_chroma_intra_sse2;
771                 pf->deblock_h_chroma_420_intra = x264_deblock_h_chroma_intra_sse2;
772 #if HIGH_BIT_DEPTH
773                 pf->deblock_chroma_420_intra_mbaff= x264_deblock_h_chroma_intra_mbaff_sse2;
774 #endif
775             }
776         }
777         if( cpu&X264_CPU_SSSE3 )
778             pf->deblock_strength = x264_deblock_strength_ssse3;
779         if( cpu&X264_CPU_AVX )
780         {
781             pf->deblock_strength = x264_deblock_strength_avx;
782             pf->deblock_h_chroma_420 = x264_deblock_h_chroma_avx;
783             pf->deblock_h_chroma_422 = x264_deblock_h_chroma_422_avx;
784             pf->deblock_h_chroma_422_intra = x264_deblock_h_chroma_422_intra_avx;
785             if( !(cpu&X264_CPU_STACK_MOD4) )
786             {
787                 pf->deblock_luma[1] = x264_deblock_v_luma_avx;
788                 pf->deblock_luma[0] = x264_deblock_h_luma_avx;
789                 pf->deblock_chroma[1] = x264_deblock_v_chroma_avx;
790                 pf->deblock_luma_intra[1] = x264_deblock_v_luma_intra_avx;
791                 pf->deblock_luma_intra[0] = x264_deblock_h_luma_intra_avx;
792                 pf->deblock_chroma_intra[1] = x264_deblock_v_chroma_intra_avx;
793                 pf->deblock_h_chroma_420_intra = x264_deblock_h_chroma_intra_avx;
794 #if HIGH_BIT_DEPTH
795                 pf->deblock_chroma_420_mbaff = x264_deblock_h_chroma_mbaff_avx;
796                 pf->deblock_chroma_420_intra_mbaff = x264_deblock_h_chroma_intra_mbaff_avx;
797 #endif
798             }
799         }
800     }
801 #endif
802
803 #if !HIGH_BIT_DEPTH
804 #if HAVE_ALTIVEC
805     if( cpu&X264_CPU_ALTIVEC )
806     {
807         pf->deblock_luma[1] = x264_deblock_v_luma_altivec;
808         pf->deblock_luma[0] = x264_deblock_h_luma_altivec;
809    }
810 #endif // HAVE_ALTIVEC
811
812 #if HAVE_ARMV6
813    if( cpu&X264_CPU_NEON )
814    {
815         pf->deblock_luma[1] = x264_deblock_v_luma_neon;
816         pf->deblock_luma[0] = x264_deblock_h_luma_neon;
817         pf->deblock_chroma[1] = x264_deblock_v_chroma_neon;
818         pf->deblock_h_chroma_420 = x264_deblock_h_chroma_neon;
819    }
820 #endif
821 #endif // !HIGH_BIT_DEPTH
822
823     /* These functions are equivalent, so don't duplicate them. */
824     pf->deblock_chroma_422_mbaff = pf->deblock_h_chroma_420;
825     pf->deblock_chroma_422_intra_mbaff = pf->deblock_h_chroma_420_intra;
826 }