Coverage Report

Created: 2026-04-01 07:49

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/x264/common/macroblock.h
Line
Count
Source
1
/*****************************************************************************
2
 * macroblock.h: macroblock common functions
3
 *****************************************************************************
4
 * Copyright (C) 2005-2025 x264 project
5
 *
6
 * Authors: Loren Merritt <lorenm@u.washington.edu>
7
 *          Laurent Aimar <fenrir@via.ecp.fr>
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
 * This program is also available under a commercial proprietary license.
25
 * For more information, contact us at licensing@x264.com.
26
 *****************************************************************************/
27
28
#ifndef X264_MACROBLOCK_H
29
#define X264_MACROBLOCK_H
30
31
enum macroblock_position_e
32
{
33
    MB_LEFT     = 0x01,
34
    MB_TOP      = 0x02,
35
    MB_TOPRIGHT = 0x04,
36
    MB_TOPLEFT  = 0x08,
37
38
    MB_PRIVATE  = 0x10,
39
40
    ALL_NEIGHBORS = 0xf,
41
};
42
43
static const uint8_t x264_pred_i4x4_neighbors[12] =
44
{
45
    MB_TOP,                         // I_PRED_4x4_V
46
    MB_LEFT,                        // I_PRED_4x4_H
47
    MB_LEFT | MB_TOP,               // I_PRED_4x4_DC
48
    MB_TOP  | MB_TOPRIGHT,          // I_PRED_4x4_DDL
49
    MB_LEFT | MB_TOPLEFT | MB_TOP,  // I_PRED_4x4_DDR
50
    MB_LEFT | MB_TOPLEFT | MB_TOP,  // I_PRED_4x4_VR
51
    MB_LEFT | MB_TOPLEFT | MB_TOP,  // I_PRED_4x4_HD
52
    MB_TOP  | MB_TOPRIGHT,          // I_PRED_4x4_VL
53
    MB_LEFT,                        // I_PRED_4x4_HU
54
    MB_LEFT,                        // I_PRED_4x4_DC_LEFT
55
    MB_TOP,                         // I_PRED_4x4_DC_TOP
56
    0                               // I_PRED_4x4_DC_128
57
};
58
59
60
/* XXX mb_type isn't the one written in the bitstream -> only internal usage */
61
0
#define IS_INTRA(type) ( (type) == I_4x4 || (type) == I_8x8 || (type) == I_16x16 || (type) == I_PCM )
62
0
#define IS_SKIP(type)  ( (type) == P_SKIP || (type) == B_SKIP )
63
0
#define IS_DIRECT(type)  ( (type) == B_DIRECT )
64
enum mb_class_e
65
{
66
    I_4x4           = 0,
67
    I_8x8           = 1,
68
    I_16x16         = 2,
69
    I_PCM           = 3,
70
71
    P_L0            = 4,
72
    P_8x8           = 5,
73
    P_SKIP          = 6,
74
75
    B_DIRECT        = 7,
76
    B_L0_L0         = 8,
77
    B_L0_L1         = 9,
78
    B_L0_BI         = 10,
79
    B_L1_L0         = 11,
80
    B_L1_L1         = 12,
81
    B_L1_BI         = 13,
82
    B_BI_L0         = 14,
83
    B_BI_L1         = 15,
84
    B_BI_BI         = 16,
85
    B_8x8           = 17,
86
    B_SKIP          = 18,
87
88
    X264_MBTYPE_MAX = 19
89
};
90
static const uint8_t x264_mb_type_fix[X264_MBTYPE_MAX] =
91
{
92
    I_4x4, I_4x4, I_16x16, I_PCM,
93
    P_L0, P_8x8, P_SKIP,
94
    B_DIRECT, B_L0_L0, B_L0_L1, B_L0_BI, B_L1_L0, B_L1_L1,
95
    B_L1_BI, B_BI_L0, B_BI_L1, B_BI_BI, B_8x8, B_SKIP
96
};
97
static const uint8_t x264_mb_type_list_table[X264_MBTYPE_MAX][2][2] =
98
{
99
    {{0,0},{0,0}}, {{0,0},{0,0}}, {{0,0},{0,0}}, {{0,0},{0,0}}, /* INTRA */
100
    {{1,1},{0,0}},                                              /* P_L0 */
101
    {{0,0},{0,0}},                                              /* P_8x8 */
102
    {{1,1},{0,0}},                                              /* P_SKIP */
103
    {{0,0},{0,0}},                                              /* B_DIRECT */
104
    {{1,1},{0,0}}, {{1,0},{0,1}}, {{1,1},{0,1}},                /* B_L0_* */
105
    {{0,1},{1,0}}, {{0,0},{1,1}}, {{0,1},{1,1}},                /* B_L1_* */
106
    {{1,1},{1,0}}, {{1,0},{1,1}}, {{1,1},{1,1}},                /* B_BI_* */
107
    {{0,0},{0,0}},                                              /* B_8x8 */
108
    {{0,0},{0,0}}                                               /* B_SKIP */
109
};
110
111
#define IS_SUB4x4(type) ( (type == D_L0_4x4)||(type == D_L1_4x4)||(type == D_BI_4x4) )
112
#define IS_SUB4x8(type) ( (type == D_L0_4x8)||(type == D_L1_4x8)||(type == D_BI_4x8) )
113
#define IS_SUB8x4(type) ( (type == D_L0_8x4)||(type == D_L1_8x4)||(type == D_BI_8x4) )
114
#define IS_SUB8x8(type) ( (type == D_L0_8x8)||(type == D_L1_8x8)||(type == D_BI_8x8)||(type == D_DIRECT_8x8) )
115
enum mb_partition_e
116
{
117
    /* sub partition type for P_8x8 and B_8x8 */
118
    D_L0_4x4          = 0,
119
    D_L0_8x4          = 1,
120
    D_L0_4x8          = 2,
121
    D_L0_8x8          = 3,
122
123
    /* sub partition type for B_8x8 only */
124
    D_L1_4x4          = 4,
125
    D_L1_8x4          = 5,
126
    D_L1_4x8          = 6,
127
    D_L1_8x8          = 7,
128
129
    D_BI_4x4          = 8,
130
    D_BI_8x4          = 9,
131
    D_BI_4x8          = 10,
132
    D_BI_8x8          = 11,
133
    D_DIRECT_8x8      = 12,
134
135
    /* partition */
136
    D_8x8             = 13,
137
    D_16x8            = 14,
138
    D_8x16            = 15,
139
    D_16x16           = 16,
140
    X264_PARTTYPE_MAX = 17,
141
};
142
143
static const uint8_t x264_mb_partition_listX_table[2][17] =
144
{{
145
    1, 1, 1, 1, /* D_L0_* */
146
    0, 0, 0, 0, /* D_L1_* */
147
    1, 1, 1, 1, /* D_BI_* */
148
    0,          /* D_DIRECT_8x8 */
149
    0, 0, 0, 0  /* 8x8 .. 16x16 */
150
},
151
{
152
    0, 0, 0, 0, /* D_L0_* */
153
    1, 1, 1, 1, /* D_L1_* */
154
    1, 1, 1, 1, /* D_BI_* */
155
    0,          /* D_DIRECT_8x8 */
156
    0, 0, 0, 0  /* 8x8 .. 16x16 */
157
}};
158
static const uint8_t x264_mb_partition_count_table[17] =
159
{
160
    /* sub L0 */
161
    4, 2, 2, 1,
162
    /* sub L1 */
163
    4, 2, 2, 1,
164
    /* sub BI */
165
    4, 2, 2, 1,
166
    /* Direct */
167
    1,
168
    /* Partition */
169
    4, 2, 2, 1
170
};
171
static const uint8_t x264_mb_partition_pixel_table[17] =
172
{
173
    PIXEL_4x4, PIXEL_8x4,  PIXEL_4x8,  PIXEL_8x8,   /* D_L0_* */
174
    PIXEL_4x4, PIXEL_8x4,  PIXEL_4x8,  PIXEL_8x8,   /* D_L1_* */
175
    PIXEL_4x4, PIXEL_8x4,  PIXEL_4x8,  PIXEL_8x8,   /* D_BI_* */
176
    PIXEL_8x8,                                      /* D_DIRECT_8x8 */
177
    PIXEL_8x8, PIXEL_16x8, PIXEL_8x16, PIXEL_16x16, /* 8x8 .. 16x16 */
178
};
179
180
/* zigzags are transposed with respect to the tables in the standard */
181
static const uint8_t x264_zigzag_scan4[2][16] =
182
{{ // frame
183
    0,  4,  1,  2,  5,  8, 12,  9,  6,  3,  7, 10, 13, 14, 11, 15
184
},
185
{  // field
186
    0,  1,  4,  2,  3,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15
187
}};
188
static const uint8_t x264_zigzag_scan8[2][64] =
189
{{
190
    0,  8,  1,  2,  9, 16, 24, 17, 10,  3,  4, 11, 18, 25, 32, 40,
191
   33, 26, 19, 12,  5,  6, 13, 20, 27, 34, 41, 48, 56, 49, 42, 35,
192
   28, 21, 14,  7, 15, 22, 29, 36, 43, 50, 57, 58, 51, 44, 37, 30,
193
   23, 31, 38, 45, 52, 59, 60, 53, 46, 39, 47, 54, 61, 62, 55, 63
194
},
195
{
196
    0,  1,  2,  8,  9,  3,  4, 10, 16, 11,  5,  6,  7, 12, 17, 24,
197
   18, 13, 14, 15, 19, 25, 32, 26, 20, 21, 22, 23, 27, 33, 40, 34,
198
   28, 29, 30, 31, 35, 41, 48, 42, 36, 37, 38, 39, 43, 49, 50, 44,
199
   45, 46, 47, 51, 56, 57, 52, 53, 54, 55, 58, 59, 60, 61, 62, 63
200
}};
201
202
static const uint8_t block_idx_x[16] =
203
{
204
    0, 1, 0, 1, 2, 3, 2, 3, 0, 1, 0, 1, 2, 3, 2, 3
205
};
206
static const uint8_t block_idx_y[16] =
207
{
208
    0, 0, 1, 1, 0, 0, 1, 1, 2, 2, 3, 3, 2, 2, 3, 3
209
};
210
static const uint8_t block_idx_xy[4][4] =
211
{
212
    { 0, 2, 8,  10 },
213
    { 1, 3, 9,  11 },
214
    { 4, 6, 12, 14 },
215
    { 5, 7, 13, 15 }
216
};
217
static const uint8_t block_idx_xy_1d[16] =
218
{
219
    0, 1, 4, 5, 2, 3, 6, 7, 8, 9, 12, 13, 10, 11, 14, 15
220
};
221
static const uint8_t block_idx_yx_1d[16] =
222
{
223
    0, 4, 1, 5, 8, 12, 9, 13, 2, 6, 3, 7, 10, 14, 11, 15
224
};
225
static const uint8_t block_idx_xy_fenc[16] =
226
{
227
    0*4 + 0*4*FENC_STRIDE, 1*4 + 0*4*FENC_STRIDE,
228
    0*4 + 1*4*FENC_STRIDE, 1*4 + 1*4*FENC_STRIDE,
229
    2*4 + 0*4*FENC_STRIDE, 3*4 + 0*4*FENC_STRIDE,
230
    2*4 + 1*4*FENC_STRIDE, 3*4 + 1*4*FENC_STRIDE,
231
    0*4 + 2*4*FENC_STRIDE, 1*4 + 2*4*FENC_STRIDE,
232
    0*4 + 3*4*FENC_STRIDE, 1*4 + 3*4*FENC_STRIDE,
233
    2*4 + 2*4*FENC_STRIDE, 3*4 + 2*4*FENC_STRIDE,
234
    2*4 + 3*4*FENC_STRIDE, 3*4 + 3*4*FENC_STRIDE
235
};
236
static const uint16_t block_idx_xy_fdec[16] =
237
{
238
    0*4 + 0*4*FDEC_STRIDE, 1*4 + 0*4*FDEC_STRIDE,
239
    0*4 + 1*4*FDEC_STRIDE, 1*4 + 1*4*FDEC_STRIDE,
240
    2*4 + 0*4*FDEC_STRIDE, 3*4 + 0*4*FDEC_STRIDE,
241
    2*4 + 1*4*FDEC_STRIDE, 3*4 + 1*4*FDEC_STRIDE,
242
    0*4 + 2*4*FDEC_STRIDE, 1*4 + 2*4*FDEC_STRIDE,
243
    0*4 + 3*4*FDEC_STRIDE, 1*4 + 3*4*FDEC_STRIDE,
244
    2*4 + 2*4*FDEC_STRIDE, 3*4 + 2*4*FDEC_STRIDE,
245
    2*4 + 3*4*FDEC_STRIDE, 3*4 + 3*4*FDEC_STRIDE
246
};
247
248
#define QP(qP) ( (qP)+QP_BD_OFFSET )
249
static const uint8_t i_chroma_qp_table[QP_MAX+1+12*2] =
250
{
251
         0,      0,      0,      0,      0,      0,
252
         0,      0,      0,      0,      0,      0,
253
#if BIT_DEPTH > 9
254
   QP(-12),QP(-11),QP(-10), QP(-9), QP(-8), QP(-7),
255
#endif
256
#if BIT_DEPTH > 8
257
    QP(-6), QP(-5), QP(-4), QP(-3), QP(-2), QP(-1),
258
#endif
259
     QP(0),  QP(1),  QP(2),  QP(3),  QP(4),  QP(5),
260
     QP(6),  QP(7),  QP(8),  QP(9), QP(10), QP(11),
261
    QP(12), QP(13), QP(14), QP(15), QP(16), QP(17),
262
    QP(18), QP(19), QP(20), QP(21), QP(22), QP(23),
263
    QP(24), QP(25), QP(26), QP(27), QP(28), QP(29),
264
    QP(29), QP(30), QP(31), QP(32), QP(32), QP(33),
265
    QP(34), QP(34), QP(35), QP(35), QP(36), QP(36),
266
    QP(37), QP(37), QP(37), QP(38), QP(38), QP(38),
267
    QP(39), QP(39), QP(39), QP(39),
268
    QP(39), QP(39), QP(39), QP(39), QP(39), QP(39),
269
    QP(39), QP(39), QP(39), QP(39), QP(39), QP(39),
270
};
271
#undef QP
272
273
enum cabac_ctx_block_cat_e
274
{
275
    DCT_LUMA_DC     = 0,
276
    DCT_LUMA_AC     = 1,
277
    DCT_LUMA_4x4    = 2,
278
    DCT_CHROMA_DC   = 3,
279
    DCT_CHROMA_AC   = 4,
280
    DCT_LUMA_8x8    = 5,
281
    DCT_CHROMAU_DC  = 6,
282
    DCT_CHROMAU_AC  = 7,
283
    DCT_CHROMAU_4x4 = 8,
284
    DCT_CHROMAU_8x8 = 9,
285
    DCT_CHROMAV_DC  = 10,
286
    DCT_CHROMAV_AC  = 11,
287
    DCT_CHROMAV_4x4 = 12,
288
    DCT_CHROMAV_8x8 = 13,
289
};
290
291
static const uint8_t ctx_cat_plane[6][3] =
292
{
293
    { DCT_LUMA_DC,  DCT_CHROMAU_DC,  DCT_CHROMAV_DC},
294
    { DCT_LUMA_AC,  DCT_CHROMAU_AC,  DCT_CHROMAV_AC},
295
    {DCT_LUMA_4x4, DCT_CHROMAU_4x4, DCT_CHROMAV_4x4},
296
    {0},
297
    {0},
298
    {DCT_LUMA_8x8, DCT_CHROMAU_8x8, DCT_CHROMAV_8x8}
299
};
300
301
/* Per-frame allocation: is allocated per-thread only in frame-threads mode. */
302
0
#define x264_macroblock_cache_allocate x264_template(macroblock_cache_allocate)
303
int  x264_macroblock_cache_allocate( x264_t *h );
304
0
#define x264_macroblock_cache_free x264_template(macroblock_cache_free)
305
void x264_macroblock_cache_free( x264_t *h );
306
307
/* Per-thread allocation: is allocated per-thread even in sliced-threads mode. */
308
0
#define x264_macroblock_thread_allocate x264_template(macroblock_thread_allocate)
309
int  x264_macroblock_thread_allocate( x264_t *h, int b_lookahead );
310
0
#define x264_macroblock_thread_free x264_template(macroblock_thread_free)
311
void x264_macroblock_thread_free( x264_t *h, int b_lookahead );
312
313
0
#define x264_macroblock_slice_init x264_template(macroblock_slice_init)
314
void x264_macroblock_slice_init( x264_t *h );
315
0
#define x264_macroblock_thread_init x264_template(macroblock_thread_init)
316
void x264_macroblock_thread_init( x264_t *h );
317
0
#define x264_macroblock_cache_load_interlaced x264_template(macroblock_cache_load_interlaced)
318
void x264_macroblock_cache_load_progressive( x264_t *h, int mb_x, int mb_y );
319
0
#define x264_macroblock_cache_load_progressive x264_template(macroblock_cache_load_progressive)
320
void x264_macroblock_cache_load_interlaced( x264_t *h, int mb_x, int mb_y );
321
0
#define x264_macroblock_deblock_strength x264_template(macroblock_deblock_strength)
322
void x264_macroblock_deblock_strength( x264_t *h );
323
0
#define x264_macroblock_cache_save x264_template(macroblock_cache_save)
324
void x264_macroblock_cache_save( x264_t *h );
325
326
0
#define x264_macroblock_bipred_init x264_template(macroblock_bipred_init)
327
void x264_macroblock_bipred_init( x264_t *h );
328
329
0
#define x264_prefetch_fenc x264_template(prefetch_fenc)
330
void x264_prefetch_fenc( x264_t *h, x264_frame_t *fenc, int i_mb_x, int i_mb_y );
331
332
0
#define x264_copy_column8 x264_template(copy_column8)
333
void x264_copy_column8( pixel *dst, pixel *src );
334
335
/* x264_mb_predict_mv_16x16:
336
 *      set mvp with predicted mv for D_16x16 block
337
 *      h->mb. need only valid values from other blocks */
338
0
#define x264_mb_predict_mv_16x16 x264_template(mb_predict_mv_16x16)
339
void x264_mb_predict_mv_16x16( x264_t *h, int i_list, int i_ref, int16_t mvp[2] );
340
/* x264_mb_predict_mv_pskip:
341
 *      set mvp with predicted mv for P_SKIP
342
 *      h->mb. need only valid values from other blocks */
343
0
#define x264_mb_predict_mv_pskip x264_template(mb_predict_mv_pskip)
344
void x264_mb_predict_mv_pskip( x264_t *h, int16_t mv[2] );
345
/* x264_mb_predict_mv:
346
 *      set mvp with predicted mv for all blocks except SKIP and DIRECT
347
 *      h->mb. need valid ref/partition/sub of current block to be valid
348
 *      and valid mv/ref from other blocks. */
349
0
#define x264_mb_predict_mv x264_template(mb_predict_mv)
350
void x264_mb_predict_mv( x264_t *h, int i_list, int idx, int i_width, int16_t mvp[2] );
351
/* x264_mb_predict_mv_direct16x16:
352
 *      set h->mb.cache.mv and h->mb.cache.ref for B_SKIP or B_DIRECT
353
 *      h->mb. need only valid values from other blocks.
354
 *      return 1 on success, 0 on failure.
355
 *      if b_changed != NULL, set it to whether refs or mvs differ from
356
 *      before this functioncall. */
357
0
#define x264_mb_predict_mv_direct16x16 x264_template(mb_predict_mv_direct16x16)
358
int x264_mb_predict_mv_direct16x16( x264_t *h, int *b_changed );
359
/* x264_mb_predict_mv_ref16x16:
360
 *      set mvc with D_16x16 prediction.
361
 *      uses all neighbors, even those that didn't end up using this ref.
362
 *      h->mb. need only valid values from other blocks */
363
0
#define x264_mb_predict_mv_ref16x16 x264_template(mb_predict_mv_ref16x16)
364
void x264_mb_predict_mv_ref16x16( x264_t *h, int i_list, int i_ref, int16_t (*mvc)[2], int *i_mvc );
365
366
0
#define x264_mb_mc x264_template(mb_mc)
367
void x264_mb_mc( x264_t *h );
368
0
#define x264_mb_mc_8x8 x264_template(mb_mc_8x8)
369
void x264_mb_mc_8x8( x264_t *h, int i8 );
370
371
static ALWAYS_INLINE uint32_t pack16to32( uint32_t a, uint32_t b )
372
0
{
373
#if WORDS_BIGENDIAN
374
   return b + (a<<16);
375
#else
376
0
   return a + (b<<16);
377
0
#endif
378
0
}
Unexecuted instantiation: bitstream.c:pack16to32
Unexecuted instantiation: encoder.c:pack16to32
Unexecuted instantiation: lookahead.c:pack16to32
Unexecuted instantiation: threadpool.c:pack16to32
Unexecuted instantiation: mc.c:pack16to32
Unexecuted instantiation: predict.c:pack16to32
Unexecuted instantiation: pixel.c:pack16to32
Unexecuted instantiation: macroblock.c:pack16to32
Unexecuted instantiation: frame.c:pack16to32
Unexecuted instantiation: dct.c:pack16to32
Unexecuted instantiation: cabac.c:pack16to32
Unexecuted instantiation: common.c:pack16to32
Unexecuted instantiation: set.c:pack16to32
Unexecuted instantiation: quant.c:pack16to32
Unexecuted instantiation: deblock.c:pack16to32
Unexecuted instantiation: vlc.c:pack16to32
Unexecuted instantiation: mvpred.c:pack16to32
Unexecuted instantiation: analyse.c:pack16to32
Unexecuted instantiation: me.c:pack16to32
Unexecuted instantiation: ratecontrol.c:pack16to32
Unexecuted instantiation: cavlc.c:pack16to32
Unexecuted instantiation: rectangle.c:pack16to32
379
static ALWAYS_INLINE uint32_t pack8to16( uint32_t a, uint32_t b )
380
0
{
381
#if WORDS_BIGENDIAN
382
   return b + (a<<8);
383
#else
384
0
   return a + (b<<8);
385
0
#endif
386
0
}
Unexecuted instantiation: bitstream.c:pack8to16
Unexecuted instantiation: encoder.c:pack8to16
Unexecuted instantiation: lookahead.c:pack8to16
Unexecuted instantiation: threadpool.c:pack8to16
Unexecuted instantiation: mc.c:pack8to16
Unexecuted instantiation: predict.c:pack8to16
Unexecuted instantiation: pixel.c:pack8to16
Unexecuted instantiation: macroblock.c:pack8to16
Unexecuted instantiation: frame.c:pack8to16
Unexecuted instantiation: dct.c:pack8to16
Unexecuted instantiation: cabac.c:pack8to16
Unexecuted instantiation: common.c:pack8to16
Unexecuted instantiation: set.c:pack8to16
Unexecuted instantiation: quant.c:pack8to16
Unexecuted instantiation: deblock.c:pack8to16
Unexecuted instantiation: vlc.c:pack8to16
Unexecuted instantiation: mvpred.c:pack8to16
Unexecuted instantiation: analyse.c:pack8to16
Unexecuted instantiation: me.c:pack8to16
Unexecuted instantiation: ratecontrol.c:pack8to16
Unexecuted instantiation: cavlc.c:pack8to16
Unexecuted instantiation: rectangle.c:pack8to16
387
static ALWAYS_INLINE uint32_t pack8to32( uint32_t a, uint32_t b, uint32_t c, uint32_t d )
388
0
{
389
#if WORDS_BIGENDIAN
390
   return d + (c<<8) + (b<<16) + (a<<24);
391
#else
392
0
   return a + (b<<8) + (c<<16) + (d<<24);
393
0
#endif
394
0
}
Unexecuted instantiation: bitstream.c:pack8to32
Unexecuted instantiation: encoder.c:pack8to32
Unexecuted instantiation: lookahead.c:pack8to32
Unexecuted instantiation: threadpool.c:pack8to32
Unexecuted instantiation: mc.c:pack8to32
Unexecuted instantiation: predict.c:pack8to32
Unexecuted instantiation: pixel.c:pack8to32
Unexecuted instantiation: macroblock.c:pack8to32
Unexecuted instantiation: frame.c:pack8to32
Unexecuted instantiation: dct.c:pack8to32
Unexecuted instantiation: cabac.c:pack8to32
Unexecuted instantiation: common.c:pack8to32
Unexecuted instantiation: set.c:pack8to32
Unexecuted instantiation: quant.c:pack8to32
Unexecuted instantiation: deblock.c:pack8to32
Unexecuted instantiation: vlc.c:pack8to32
Unexecuted instantiation: mvpred.c:pack8to32
Unexecuted instantiation: analyse.c:pack8to32
Unexecuted instantiation: me.c:pack8to32
Unexecuted instantiation: ratecontrol.c:pack8to32
Unexecuted instantiation: cavlc.c:pack8to32
Unexecuted instantiation: rectangle.c:pack8to32
395
static ALWAYS_INLINE uint32_t pack16to32_mask( int a, int b )
396
0
{
397
#if WORDS_BIGENDIAN
398
   return (b&0xFFFF) + ((uint32_t)a<<16);
399
#else
400
0
   return (a&0xFFFF) + ((uint32_t)b<<16);
401
0
#endif
402
0
}
Unexecuted instantiation: bitstream.c:pack16to32_mask
Unexecuted instantiation: encoder.c:pack16to32_mask
Unexecuted instantiation: lookahead.c:pack16to32_mask
Unexecuted instantiation: threadpool.c:pack16to32_mask
Unexecuted instantiation: mc.c:pack16to32_mask
Unexecuted instantiation: predict.c:pack16to32_mask
Unexecuted instantiation: pixel.c:pack16to32_mask
Unexecuted instantiation: macroblock.c:pack16to32_mask
Unexecuted instantiation: frame.c:pack16to32_mask
Unexecuted instantiation: dct.c:pack16to32_mask
Unexecuted instantiation: cabac.c:pack16to32_mask
Unexecuted instantiation: common.c:pack16to32_mask
Unexecuted instantiation: set.c:pack16to32_mask
Unexecuted instantiation: quant.c:pack16to32_mask
Unexecuted instantiation: deblock.c:pack16to32_mask
Unexecuted instantiation: vlc.c:pack16to32_mask
Unexecuted instantiation: mvpred.c:pack16to32_mask
Unexecuted instantiation: analyse.c:pack16to32_mask
Unexecuted instantiation: me.c:pack16to32_mask
Unexecuted instantiation: ratecontrol.c:pack16to32_mask
Unexecuted instantiation: cavlc.c:pack16to32_mask
Unexecuted instantiation: rectangle.c:pack16to32_mask
403
static ALWAYS_INLINE uint64_t pack32to64( uint32_t a, uint32_t b )
404
0
{
405
#if WORDS_BIGENDIAN
406
   return b + ((uint64_t)a<<32);
407
#else
408
0
   return a + ((uint64_t)b<<32);
409
0
#endif
410
0
}
Unexecuted instantiation: bitstream.c:pack32to64
Unexecuted instantiation: encoder.c:pack32to64
Unexecuted instantiation: lookahead.c:pack32to64
Unexecuted instantiation: threadpool.c:pack32to64
Unexecuted instantiation: mc.c:pack32to64
Unexecuted instantiation: predict.c:pack32to64
Unexecuted instantiation: pixel.c:pack32to64
Unexecuted instantiation: macroblock.c:pack32to64
Unexecuted instantiation: frame.c:pack32to64
Unexecuted instantiation: dct.c:pack32to64
Unexecuted instantiation: cabac.c:pack32to64
Unexecuted instantiation: common.c:pack32to64
Unexecuted instantiation: set.c:pack32to64
Unexecuted instantiation: quant.c:pack32to64
Unexecuted instantiation: deblock.c:pack32to64
Unexecuted instantiation: vlc.c:pack32to64
Unexecuted instantiation: mvpred.c:pack32to64
Unexecuted instantiation: analyse.c:pack32to64
Unexecuted instantiation: me.c:pack32to64
Unexecuted instantiation: ratecontrol.c:pack32to64
Unexecuted instantiation: cavlc.c:pack32to64
Unexecuted instantiation: rectangle.c:pack32to64
411
412
#if HIGH_BIT_DEPTH
413
#   define pack_pixel_1to2 pack16to32
414
#   define pack_pixel_2to4 pack32to64
415
#else
416
0
#   define pack_pixel_1to2 pack8to16
417
0
#   define pack_pixel_2to4 pack16to32
418
#endif
419
420
static ALWAYS_INLINE int x264_mb_predict_intra4x4_mode( x264_t *h, int idx )
421
0
{
422
0
    const int ma = h->mb.cache.intra4x4_pred_mode[x264_scan8[idx] - 1];
423
0
    const int mb = h->mb.cache.intra4x4_pred_mode[x264_scan8[idx] - 8];
424
0
    const int m  = X264_MIN( x264_mb_pred_mode4x4_fix(ma),
425
0
                             x264_mb_pred_mode4x4_fix(mb) );
426
427
0
    if( m < 0 )
428
0
        return I_PRED_4x4_DC;
429
430
0
    return m;
431
0
}
Unexecuted instantiation: bitstream.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: encoder.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: lookahead.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: threadpool.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: mc.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: predict.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: pixel.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: macroblock.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: frame.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: dct.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: cabac.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: common.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: set.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: quant.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: deblock.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: vlc.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: mvpred.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: analyse.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: me.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: ratecontrol.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: cavlc.c:x264_mb_predict_intra4x4_mode
Unexecuted instantiation: rectangle.c:x264_mb_predict_intra4x4_mode
432
static ALWAYS_INLINE int x264_mb_predict_non_zero_code( x264_t *h, int idx )
433
0
{
434
0
    const int za = h->mb.cache.non_zero_count[x264_scan8[idx] - 1];
435
0
    const int zb = h->mb.cache.non_zero_count[x264_scan8[idx] - 8];
436
437
0
    int i_ret = za + zb;
438
439
0
    if( i_ret < 0x80 )
440
0
        i_ret = ( i_ret + 1 ) >> 1;
441
0
    return i_ret & 0x7f;
442
0
}
Unexecuted instantiation: bitstream.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: encoder.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: lookahead.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: threadpool.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: mc.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: predict.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: pixel.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: macroblock.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: frame.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: dct.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: cabac.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: common.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: set.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: quant.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: deblock.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: vlc.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: mvpred.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: analyse.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: me.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: ratecontrol.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: cavlc.c:x264_mb_predict_non_zero_code
Unexecuted instantiation: rectangle.c:x264_mb_predict_non_zero_code
443
444
/* intra and skip are disallowed, p8x8 is conditional. */
445
static const uint8_t x264_transform_allowed[X264_MBTYPE_MAX] =
446
{
447
    0,0,0,0,1,2,0,1,1,1,1,1,1,1,1,1,1,1,0
448
};
449
450
/* x264_mb_transform_8x8_allowed:
451
 *      check whether any partition is smaller than 8x8 (or at least
452
 *      might be, according to just partition type.)
453
 *      doesn't check for cbp */
454
static ALWAYS_INLINE int x264_mb_transform_8x8_allowed( x264_t *h )
455
0
{
456
0
    if( !h->pps->b_transform_8x8_mode )
457
0
        return 0;
458
0
    if( h->mb.i_type != P_8x8 )
459
0
        return x264_transform_allowed[h->mb.i_type];
460
0
    return M32( h->mb.i_sub_partition ) == D_L0_8x8*0x01010101;
461
0
}
Unexecuted instantiation: bitstream.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: encoder.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: lookahead.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: threadpool.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: mc.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: predict.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: pixel.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: macroblock.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: frame.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: dct.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: cabac.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: common.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: set.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: quant.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: deblock.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: vlc.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: mvpred.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: analyse.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: me.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: ratecontrol.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: cavlc.c:x264_mb_transform_8x8_allowed
Unexecuted instantiation: rectangle.c:x264_mb_transform_8x8_allowed
462
463
#endif