Coverage Report

Created: 2026-05-16 06:41

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/work/x264/encoder/cabac.c
Line
Count
Source
1
/*****************************************************************************
2
 * cabac.c: cabac bitstream writing
3
 *****************************************************************************
4
 * Copyright (C) 2003-2025 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
 * This program is also available under a commercial proprietary license.
25
 * For more information, contact us at licensing@x264.com.
26
 *****************************************************************************/
27
28
#include "common/common.h"
29
#include "macroblock.h"
30
31
#ifndef RDO_SKIP_BS
32
#define RDO_SKIP_BS 0
33
#endif
34
35
static inline void cabac_mb_type_intra( x264_t *h, x264_cabac_t *cb, int i_mb_type,
36
                                        int ctx0, int ctx1, int ctx2, int ctx3, int ctx4, int ctx5 )
37
44.5k
{
38
44.5k
    if( i_mb_type == I_4x4 || i_mb_type == I_8x8 )
39
222
    {
40
222
        x264_cabac_encode_decision_noup( cb, ctx0, 0 );
41
222
    }
42
#if !RDO_SKIP_BS
43
21.3k
    else if( i_mb_type == I_PCM )
44
0
    {
45
0
        x264_cabac_encode_decision_noup( cb, ctx0, 1 );
46
0
        x264_cabac_encode_flush( h, cb );
47
0
    }
48
21.3k
#endif
49
21.3k
    else
50
44.3k
    {
51
44.3k
        int i_pred = x264_mb_pred_mode16x16_fix[h->mb.i_intra16x16_pred_mode];
52
53
44.3k
        x264_cabac_encode_decision_noup( cb, ctx0, 1 );
54
44.3k
        x264_cabac_encode_terminal( cb );
55
56
44.3k
        x264_cabac_encode_decision_noup( cb, ctx1, !!h->mb.i_cbp_luma );
57
44.3k
        if( h->mb.i_cbp_chroma == 0 )
58
43.9k
            x264_cabac_encode_decision_noup( cb, ctx2, 0 );
59
168
        else
60
415
        {
61
415
            x264_cabac_encode_decision( cb, ctx2, 1 );
62
415
            x264_cabac_encode_decision_noup( cb, ctx3, h->mb.i_cbp_chroma>>1 );
63
415
        }
64
44.3k
        x264_cabac_encode_decision( cb, ctx4, i_pred>>1 );
65
44.3k
        x264_cabac_encode_decision_noup( cb, ctx5, i_pred&1 );
66
44.3k
    }
67
44.5k
}
analyse.c:cabac_mb_type_intra
Line
Count
Source
37
23.2k
{
38
23.2k
    if( i_mb_type == I_4x4 || i_mb_type == I_8x8 )
39
169
    {
40
169
        x264_cabac_encode_decision_noup( cb, ctx0, 0 );
41
169
    }
42
#if !RDO_SKIP_BS
43
    else if( i_mb_type == I_PCM )
44
    {
45
        x264_cabac_encode_decision_noup( cb, ctx0, 1 );
46
        x264_cabac_encode_flush( h, cb );
47
    }
48
#endif
49
23.0k
    else
50
23.0k
    {
51
23.0k
        int i_pred = x264_mb_pred_mode16x16_fix[h->mb.i_intra16x16_pred_mode];
52
53
23.0k
        x264_cabac_encode_decision_noup( cb, ctx0, 1 );
54
23.0k
        x264_cabac_encode_terminal( cb );
55
56
23.0k
        x264_cabac_encode_decision_noup( cb, ctx1, !!h->mb.i_cbp_luma );
57
23.0k
        if( h->mb.i_cbp_chroma == 0 )
58
22.8k
            x264_cabac_encode_decision_noup( cb, ctx2, 0 );
59
247
        else
60
247
        {
61
247
            x264_cabac_encode_decision( cb, ctx2, 1 );
62
247
            x264_cabac_encode_decision_noup( cb, ctx3, h->mb.i_cbp_chroma>>1 );
63
247
        }
64
23.0k
        x264_cabac_encode_decision( cb, ctx4, i_pred>>1 );
65
23.0k
        x264_cabac_encode_decision_noup( cb, ctx5, i_pred&1 );
66
23.0k
    }
67
23.2k
}
cabac.c:cabac_mb_type_intra
Line
Count
Source
37
21.3k
{
38
21.3k
    if( i_mb_type == I_4x4 || i_mb_type == I_8x8 )
39
53
    {
40
53
        x264_cabac_encode_decision_noup( cb, ctx0, 0 );
41
53
    }
42
21.3k
#if !RDO_SKIP_BS
43
21.3k
    else if( i_mb_type == I_PCM )
44
0
    {
45
0
        x264_cabac_encode_decision_noup( cb, ctx0, 1 );
46
0
        x264_cabac_encode_flush( h, cb );
47
0
    }
48
21.3k
#endif
49
21.3k
    else
50
21.3k
    {
51
21.3k
        int i_pred = x264_mb_pred_mode16x16_fix[h->mb.i_intra16x16_pred_mode];
52
53
21.3k
        x264_cabac_encode_decision_noup( cb, ctx0, 1 );
54
21.3k
        x264_cabac_encode_terminal( cb );
55
56
21.3k
        x264_cabac_encode_decision_noup( cb, ctx1, !!h->mb.i_cbp_luma );
57
21.3k
        if( h->mb.i_cbp_chroma == 0 )
58
21.1k
            x264_cabac_encode_decision_noup( cb, ctx2, 0 );
59
168
        else
60
168
        {
61
168
            x264_cabac_encode_decision( cb, ctx2, 1 );
62
168
            x264_cabac_encode_decision_noup( cb, ctx3, h->mb.i_cbp_chroma>>1 );
63
168
        }
64
21.3k
        x264_cabac_encode_decision( cb, ctx4, i_pred>>1 );
65
21.3k
        x264_cabac_encode_decision_noup( cb, ctx5, i_pred&1 );
66
21.3k
    }
67
21.3k
}
68
69
#if !RDO_SKIP_BS
70
static void cabac_field_decoding_flag( x264_t *h, x264_cabac_t *cb )
71
0
{
72
0
    int ctx = 0;
73
0
    ctx += h->mb.field_decoding_flag & !!h->mb.i_mb_x;
74
0
    ctx += (h->mb.i_mb_top_mbpair_xy >= 0
75
0
            && h->mb.slice_table[h->mb.i_mb_top_mbpair_xy] == h->sh.i_first_mb
76
0
            && h->mb.field[h->mb.i_mb_top_mbpair_xy]);
77
78
0
    x264_cabac_encode_decision_noup( cb, 70 + ctx, MB_INTERLACED );
79
0
    h->mb.field_decoding_flag = MB_INTERLACED;
80
0
}
81
#endif
82
83
static void cabac_intra4x4_pred_mode( x264_cabac_t *cb, int i_pred, int i_mode )
84
9.01k
{
85
9.01k
    if( i_pred == i_mode )
86
4.40k
        x264_cabac_encode_decision( cb, 68, 1 );
87
0
    else
88
4.61k
    {
89
4.61k
        x264_cabac_encode_decision( cb, 68, 0 );
90
4.61k
        if( i_mode > i_pred  )
91
3.33k
            i_mode--;
92
4.61k
        x264_cabac_encode_decision( cb, 69, (i_mode     )&0x01 );
93
4.61k
        x264_cabac_encode_decision( cb, 69, (i_mode >> 1)&0x01 );
94
4.61k
        x264_cabac_encode_decision( cb, 69, (i_mode >> 2)      );
95
4.61k
    }
96
9.01k
}
analyse.c:cabac_intra4x4_pred_mode
Line
Count
Source
84
8.16k
{
85
8.16k
    if( i_pred == i_mode )
86
3.55k
        x264_cabac_encode_decision( cb, 68, 1 );
87
4.61k
    else
88
4.61k
    {
89
4.61k
        x264_cabac_encode_decision( cb, 68, 0 );
90
4.61k
        if( i_mode > i_pred  )
91
3.33k
            i_mode--;
92
4.61k
        x264_cabac_encode_decision( cb, 69, (i_mode     )&0x01 );
93
4.61k
        x264_cabac_encode_decision( cb, 69, (i_mode >> 1)&0x01 );
94
4.61k
        x264_cabac_encode_decision( cb, 69, (i_mode >> 2)      );
95
4.61k
    }
96
8.16k
}
cabac.c:cabac_intra4x4_pred_mode
Line
Count
Source
84
848
{
85
848
    if( i_pred == i_mode )
86
848
        x264_cabac_encode_decision( cb, 68, 1 );
87
0
    else
88
0
    {
89
0
        x264_cabac_encode_decision( cb, 68, 0 );
90
0
        if( i_mode > i_pred  )
91
0
            i_mode--;
92
0
        x264_cabac_encode_decision( cb, 69, (i_mode     )&0x01 );
93
0
        x264_cabac_encode_decision( cb, 69, (i_mode >> 1)&0x01 );
94
0
        x264_cabac_encode_decision( cb, 69, (i_mode >> 2)      );
95
0
    }
96
848
}
97
98
static void cabac_intra_chroma_pred_mode( x264_t *h, x264_cabac_t *cb )
99
44.7k
{
100
44.7k
    int i_mode = x264_mb_chroma_pred_mode_fix[h->mb.i_chroma_pred_mode];
101
44.7k
    int ctx = 0;
102
103
    /* No need to test for I4x4 or I_16x16 as cache_save handle that */
104
44.7k
    if( (h->mb.i_neighbour & MB_LEFT) && h->mb.chroma_pred_mode[h->mb.i_mb_left_xy[0]] != 0 )
105
0
        ctx++;
106
44.7k
    if( (h->mb.i_neighbour & MB_TOP) && h->mb.chroma_pred_mode[h->mb.i_mb_top_xy] != 0 )
107
0
        ctx++;
108
109
44.7k
    x264_cabac_encode_decision_noup( cb, 64 + ctx, i_mode > 0 );
110
44.7k
    if( i_mode > 0 )
111
52
    {
112
52
        x264_cabac_encode_decision( cb, 64 + 3, i_mode > 1 );
113
52
        if( i_mode > 1 )
114
26
            x264_cabac_encode_decision_noup( cb, 64 + 3, i_mode > 2 );
115
52
    }
116
44.7k
}
analyse.c:cabac_intra_chroma_pred_mode
Line
Count
Source
99
23.3k
{
100
23.3k
    int i_mode = x264_mb_chroma_pred_mode_fix[h->mb.i_chroma_pred_mode];
101
23.3k
    int ctx = 0;
102
103
    /* No need to test for I4x4 or I_16x16 as cache_save handle that */
104
23.3k
    if( (h->mb.i_neighbour & MB_LEFT) && h->mb.chroma_pred_mode[h->mb.i_mb_left_xy[0]] != 0 )
105
0
        ctx++;
106
23.3k
    if( (h->mb.i_neighbour & MB_TOP) && h->mb.chroma_pred_mode[h->mb.i_mb_top_xy] != 0 )
107
0
        ctx++;
108
109
23.3k
    x264_cabac_encode_decision_noup( cb, 64 + ctx, i_mode > 0 );
110
23.3k
    if( i_mode > 0 )
111
52
    {
112
52
        x264_cabac_encode_decision( cb, 64 + 3, i_mode > 1 );
113
52
        if( i_mode > 1 )
114
26
            x264_cabac_encode_decision_noup( cb, 64 + 3, i_mode > 2 );
115
52
    }
116
23.3k
}
cabac.c:cabac_intra_chroma_pred_mode
Line
Count
Source
99
21.3k
{
100
21.3k
    int i_mode = x264_mb_chroma_pred_mode_fix[h->mb.i_chroma_pred_mode];
101
21.3k
    int ctx = 0;
102
103
    /* No need to test for I4x4 or I_16x16 as cache_save handle that */
104
21.3k
    if( (h->mb.i_neighbour & MB_LEFT) && h->mb.chroma_pred_mode[h->mb.i_mb_left_xy[0]] != 0 )
105
0
        ctx++;
106
21.3k
    if( (h->mb.i_neighbour & MB_TOP) && h->mb.chroma_pred_mode[h->mb.i_mb_top_xy] != 0 )
107
0
        ctx++;
108
109
21.3k
    x264_cabac_encode_decision_noup( cb, 64 + ctx, i_mode > 0 );
110
21.3k
    if( i_mode > 0 )
111
0
    {
112
0
        x264_cabac_encode_decision( cb, 64 + 3, i_mode > 1 );
113
0
        if( i_mode > 1 )
114
0
            x264_cabac_encode_decision_noup( cb, 64 + 3, i_mode > 2 );
115
0
    }
116
21.3k
}
117
118
static void cabac_cbp_luma( x264_t *h, x264_cabac_t *cb )
119
222
{
120
222
    int cbp = h->mb.i_cbp_luma;
121
222
    int cbp_l = h->mb.cache.i_cbp_left;
122
222
    int cbp_t = h->mb.cache.i_cbp_top;
123
222
    x264_cabac_encode_decision     ( cb, 76 - ((cbp_l >> 1) & 1) - ((cbp_t >> 1) & 2), (cbp >> 0) & 1 );
124
222
    x264_cabac_encode_decision     ( cb, 76 - ((cbp   >> 0) & 1) - ((cbp_t >> 2) & 2), (cbp >> 1) & 1 );
125
222
    x264_cabac_encode_decision     ( cb, 76 - ((cbp_l >> 3) & 1) - ((cbp   << 1) & 2), (cbp >> 2) & 1 );
126
222
    x264_cabac_encode_decision_noup( cb, 76 - ((cbp   >> 2) & 1) - ((cbp   >> 0) & 2), (cbp >> 3) & 1 );
127
222
}
analyse.c:cabac_cbp_luma
Line
Count
Source
119
169
{
120
169
    int cbp = h->mb.i_cbp_luma;
121
169
    int cbp_l = h->mb.cache.i_cbp_left;
122
169
    int cbp_t = h->mb.cache.i_cbp_top;
123
169
    x264_cabac_encode_decision     ( cb, 76 - ((cbp_l >> 1) & 1) - ((cbp_t >> 1) & 2), (cbp >> 0) & 1 );
124
169
    x264_cabac_encode_decision     ( cb, 76 - ((cbp   >> 0) & 1) - ((cbp_t >> 2) & 2), (cbp >> 1) & 1 );
125
169
    x264_cabac_encode_decision     ( cb, 76 - ((cbp_l >> 3) & 1) - ((cbp   << 1) & 2), (cbp >> 2) & 1 );
126
169
    x264_cabac_encode_decision_noup( cb, 76 - ((cbp   >> 2) & 1) - ((cbp   >> 0) & 2), (cbp >> 3) & 1 );
127
169
}
cabac.c:cabac_cbp_luma
Line
Count
Source
119
53
{
120
53
    int cbp = h->mb.i_cbp_luma;
121
53
    int cbp_l = h->mb.cache.i_cbp_left;
122
53
    int cbp_t = h->mb.cache.i_cbp_top;
123
53
    x264_cabac_encode_decision     ( cb, 76 - ((cbp_l >> 1) & 1) - ((cbp_t >> 1) & 2), (cbp >> 0) & 1 );
124
53
    x264_cabac_encode_decision     ( cb, 76 - ((cbp   >> 0) & 1) - ((cbp_t >> 2) & 2), (cbp >> 1) & 1 );
125
53
    x264_cabac_encode_decision     ( cb, 76 - ((cbp_l >> 3) & 1) - ((cbp   << 1) & 2), (cbp >> 2) & 1 );
126
53
    x264_cabac_encode_decision_noup( cb, 76 - ((cbp   >> 2) & 1) - ((cbp   >> 0) & 2), (cbp >> 3) & 1 );
127
53
}
128
129
static void cabac_cbp_chroma( x264_t *h, x264_cabac_t *cb )
130
326
{
131
326
    int cbp_a = h->mb.cache.i_cbp_left & 0x30;
132
326
    int cbp_b = h->mb.cache.i_cbp_top  & 0x30;
133
326
    int ctx = 0;
134
135
326
    if( cbp_a && h->mb.cache.i_cbp_left != -1 ) ctx++;
136
326
    if( cbp_b && h->mb.cache.i_cbp_top  != -1 ) ctx+=2;
137
326
    if( h->mb.i_cbp_chroma == 0 )
138
0
        x264_cabac_encode_decision_noup( cb, 77 + ctx, 0 );
139
53
    else
140
326
    {
141
326
        x264_cabac_encode_decision_noup( cb, 77 + ctx, 1 );
142
143
326
        ctx = 4;
144
326
        if( cbp_a == 0x20 ) ctx++;
145
326
        if( cbp_b == 0x20 ) ctx += 2;
146
326
        x264_cabac_encode_decision_noup( cb, 77 + ctx, h->mb.i_cbp_chroma >> 1 );
147
326
    }
148
326
}
analyse.c:cabac_cbp_chroma
Line
Count
Source
130
273
{
131
273
    int cbp_a = h->mb.cache.i_cbp_left & 0x30;
132
273
    int cbp_b = h->mb.cache.i_cbp_top  & 0x30;
133
273
    int ctx = 0;
134
135
273
    if( cbp_a && h->mb.cache.i_cbp_left != -1 ) ctx++;
136
273
    if( cbp_b && h->mb.cache.i_cbp_top  != -1 ) ctx+=2;
137
273
    if( h->mb.i_cbp_chroma == 0 )
138
0
        x264_cabac_encode_decision_noup( cb, 77 + ctx, 0 );
139
273
    else
140
273
    {
141
273
        x264_cabac_encode_decision_noup( cb, 77 + ctx, 1 );
142
143
273
        ctx = 4;
144
273
        if( cbp_a == 0x20 ) ctx++;
145
273
        if( cbp_b == 0x20 ) ctx += 2;
146
273
        x264_cabac_encode_decision_noup( cb, 77 + ctx, h->mb.i_cbp_chroma >> 1 );
147
273
    }
148
273
}
cabac.c:cabac_cbp_chroma
Line
Count
Source
130
53
{
131
53
    int cbp_a = h->mb.cache.i_cbp_left & 0x30;
132
53
    int cbp_b = h->mb.cache.i_cbp_top  & 0x30;
133
53
    int ctx = 0;
134
135
53
    if( cbp_a && h->mb.cache.i_cbp_left != -1 ) ctx++;
136
53
    if( cbp_b && h->mb.cache.i_cbp_top  != -1 ) ctx+=2;
137
53
    if( h->mb.i_cbp_chroma == 0 )
138
0
        x264_cabac_encode_decision_noup( cb, 77 + ctx, 0 );
139
53
    else
140
53
    {
141
53
        x264_cabac_encode_decision_noup( cb, 77 + ctx, 1 );
142
143
53
        ctx = 4;
144
53
        if( cbp_a == 0x20 ) ctx++;
145
53
        if( cbp_b == 0x20 ) ctx += 2;
146
53
        x264_cabac_encode_decision_noup( cb, 77 + ctx, h->mb.i_cbp_chroma >> 1 );
147
53
    }
148
53
}
149
150
static void cabac_qp_delta( x264_t *h, x264_cabac_t *cb )
151
44.5k
{
152
44.5k
    int i_dqp = h->mb.i_qp - h->mb.i_last_qp;
153
44.5k
    int ctx;
154
155
    /* Avoid writing a delta quant if we have an empty i16x16 block, e.g. in a completely
156
     * flat background area. Don't do this if it would raise the quantizer, since that could
157
     * cause unexpected deblocking artifacts. */
158
44.5k
    if( h->mb.i_type == I_16x16 && !h->mb.cbp[h->mb.i_mb_xy] && h->mb.i_qp > h->mb.i_last_qp )
159
0
    {
160
#if !RDO_SKIP_BS
161
        h->mb.i_qp = h->mb.i_last_qp;
162
#endif
163
0
        i_dqp = 0;
164
0
    }
165
166
44.5k
    ctx = h->mb.i_last_dqp && (h->mb.type[h->mb.i_mb_prev_xy] == I_16x16 || (h->mb.cbp[h->mb.i_mb_prev_xy]&0x3f));
167
168
44.5k
    if( i_dqp != 0 )
169
0
    {
170
        /* Faster than (i_dqp <= 0 ? (-2*i_dqp) : (2*i_dqp-1)).
171
         * If you so much as sneeze on these lines, gcc will compile this suboptimally. */
172
0
        i_dqp *= 2;
173
0
        int val = 1 - i_dqp;
174
0
        if( val < 0 ) val = i_dqp;
175
0
        val--;
176
        /* dqp is interpreted modulo (QP_MAX_SPEC+1) */
177
0
        if( val >= QP_MAX_SPEC && val != QP_MAX_SPEC+1 )
178
0
            val = 2*QP_MAX_SPEC+1 - val;
179
0
        do
180
0
        {
181
0
            x264_cabac_encode_decision( cb, 60 + ctx, 1 );
182
0
            ctx = 2+(ctx>>1);
183
0
        } while( --val );
184
0
    }
185
44.5k
    x264_cabac_encode_decision_noup( cb, 60 + ctx, 0 );
186
44.5k
}
analyse.c:cabac_qp_delta
Line
Count
Source
151
23.2k
{
152
23.2k
    int i_dqp = h->mb.i_qp - h->mb.i_last_qp;
153
23.2k
    int ctx;
154
155
    /* Avoid writing a delta quant if we have an empty i16x16 block, e.g. in a completely
156
     * flat background area. Don't do this if it would raise the quantizer, since that could
157
     * cause unexpected deblocking artifacts. */
158
23.2k
    if( h->mb.i_type == I_16x16 && !h->mb.cbp[h->mb.i_mb_xy] && h->mb.i_qp > h->mb.i_last_qp )
159
0
    {
160
#if !RDO_SKIP_BS
161
        h->mb.i_qp = h->mb.i_last_qp;
162
#endif
163
0
        i_dqp = 0;
164
0
    }
165
166
23.2k
    ctx = h->mb.i_last_dqp && (h->mb.type[h->mb.i_mb_prev_xy] == I_16x16 || (h->mb.cbp[h->mb.i_mb_prev_xy]&0x3f));
167
168
23.2k
    if( i_dqp != 0 )
169
0
    {
170
        /* Faster than (i_dqp <= 0 ? (-2*i_dqp) : (2*i_dqp-1)).
171
         * If you so much as sneeze on these lines, gcc will compile this suboptimally. */
172
0
        i_dqp *= 2;
173
0
        int val = 1 - i_dqp;
174
0
        if( val < 0 ) val = i_dqp;
175
0
        val--;
176
        /* dqp is interpreted modulo (QP_MAX_SPEC+1) */
177
0
        if( val >= QP_MAX_SPEC && val != QP_MAX_SPEC+1 )
178
0
            val = 2*QP_MAX_SPEC+1 - val;
179
0
        do
180
0
        {
181
0
            x264_cabac_encode_decision( cb, 60 + ctx, 1 );
182
0
            ctx = 2+(ctx>>1);
183
0
        } while( --val );
184
0
    }
185
23.2k
    x264_cabac_encode_decision_noup( cb, 60 + ctx, 0 );
186
23.2k
}
cabac.c:cabac_qp_delta
Line
Count
Source
151
21.3k
{
152
21.3k
    int i_dqp = h->mb.i_qp - h->mb.i_last_qp;
153
21.3k
    int ctx;
154
155
    /* Avoid writing a delta quant if we have an empty i16x16 block, e.g. in a completely
156
     * flat background area. Don't do this if it would raise the quantizer, since that could
157
     * cause unexpected deblocking artifacts. */
158
21.3k
    if( h->mb.i_type == I_16x16 && !h->mb.cbp[h->mb.i_mb_xy] && h->mb.i_qp > h->mb.i_last_qp )
159
0
    {
160
0
#if !RDO_SKIP_BS
161
0
        h->mb.i_qp = h->mb.i_last_qp;
162
0
#endif
163
0
        i_dqp = 0;
164
0
    }
165
166
21.3k
    ctx = h->mb.i_last_dqp && (h->mb.type[h->mb.i_mb_prev_xy] == I_16x16 || (h->mb.cbp[h->mb.i_mb_prev_xy]&0x3f));
167
168
21.3k
    if( i_dqp != 0 )
169
0
    {
170
        /* Faster than (i_dqp <= 0 ? (-2*i_dqp) : (2*i_dqp-1)).
171
         * If you so much as sneeze on these lines, gcc will compile this suboptimally. */
172
0
        i_dqp *= 2;
173
0
        int val = 1 - i_dqp;
174
0
        if( val < 0 ) val = i_dqp;
175
0
        val--;
176
        /* dqp is interpreted modulo (QP_MAX_SPEC+1) */
177
0
        if( val >= QP_MAX_SPEC && val != QP_MAX_SPEC+1 )
178
0
            val = 2*QP_MAX_SPEC+1 - val;
179
0
        do
180
0
        {
181
0
            x264_cabac_encode_decision( cb, 60 + ctx, 1 );
182
0
            ctx = 2+(ctx>>1);
183
0
        } while( --val );
184
0
    }
185
21.3k
    x264_cabac_encode_decision_noup( cb, 60 + ctx, 0 );
186
21.3k
}
187
188
#if !RDO_SKIP_BS
189
void x264_cabac_mb_skip( x264_t *h, int b_skip )
190
0
{
191
0
    int ctx = h->mb.cache.i_neighbour_skip + 11;
192
0
    if( h->sh.i_type != SLICE_TYPE_P )
193
0
       ctx += 13;
194
0
    x264_cabac_encode_decision( &h->cabac, ctx, b_skip );
195
0
}
Unexecuted instantiation: x264_8_cabac_mb_skip
Unexecuted instantiation: x264_10_cabac_mb_skip
196
#endif
197
198
static inline void cabac_subpartition_p( x264_cabac_t *cb, int i_sub )
199
0
{
200
0
    if( i_sub == D_L0_8x8 )
201
0
    {
202
0
        x264_cabac_encode_decision( cb, 21, 1 );
203
0
        return;
204
0
    }
205
0
    x264_cabac_encode_decision( cb, 21, 0 );
206
0
    if( i_sub == D_L0_8x4 )
207
0
        x264_cabac_encode_decision( cb, 22, 0 );
208
0
    else
209
0
    {
210
0
        x264_cabac_encode_decision( cb, 22, 1 );
211
0
        x264_cabac_encode_decision( cb, 23, i_sub == D_L0_4x8 );
212
0
    }
213
0
}
Unexecuted instantiation: analyse.c:cabac_subpartition_p
Unexecuted instantiation: cabac.c:cabac_subpartition_p
214
215
static ALWAYS_INLINE void cabac_subpartition_b( x264_cabac_t *cb, int i_sub )
216
0
{
217
0
    if( i_sub == D_DIRECT_8x8 )
218
0
    {
219
0
        x264_cabac_encode_decision( cb, 36, 0 );
220
0
        return;
221
0
    }
222
0
    x264_cabac_encode_decision( cb, 36, 1 );
223
0
    if( i_sub == D_BI_8x8 )
224
0
    {
225
0
        x264_cabac_encode_decision( cb, 37, 1 );
226
0
        x264_cabac_encode_decision( cb, 38, 0 );
227
0
        x264_cabac_encode_decision( cb, 39, 0 );
228
0
        x264_cabac_encode_decision( cb, 39, 0 );
229
0
        return;
230
0
    }
231
0
    x264_cabac_encode_decision( cb, 37, 0 );
232
0
    x264_cabac_encode_decision( cb, 39, i_sub == D_L1_8x8 );
233
0
}
Unexecuted instantiation: analyse.c:cabac_subpartition_b
Unexecuted instantiation: cabac.c:cabac_subpartition_b
234
235
static ALWAYS_INLINE void cabac_transform_size( x264_t *h, x264_cabac_t *cb )
236
0
{
237
0
    int ctx = 399 + h->mb.cache.i_neighbour_transform_size;
238
0
    x264_cabac_encode_decision_noup( cb, ctx, h->mb.b_transform_8x8 );
239
0
}
Unexecuted instantiation: analyse.c:cabac_transform_size
Unexecuted instantiation: cabac.c:cabac_transform_size
240
241
static ALWAYS_INLINE void cabac_ref_internal( x264_t *h, x264_cabac_t *cb, int i_list, int idx, int bframe )
242
0
{
243
0
    const int i8 = x264_scan8[idx];
244
0
    const int i_refa = h->mb.cache.ref[i_list][i8 - 1];
245
0
    const int i_refb = h->mb.cache.ref[i_list][i8 - 8];
246
0
    int ctx = 0;
247
248
0
    if( i_refa > 0 && (!bframe || !h->mb.cache.skip[i8 - 1]) )
249
0
        ctx++;
250
0
    if( i_refb > 0 && (!bframe || !h->mb.cache.skip[i8 - 8]) )
251
0
        ctx += 2;
252
253
0
    for( int i_ref = h->mb.cache.ref[i_list][i8]; i_ref > 0; i_ref-- )
254
0
    {
255
0
        x264_cabac_encode_decision( cb, 54 + ctx, 1 );
256
0
        ctx = (ctx>>2)+4;
257
0
    }
258
0
    x264_cabac_encode_decision( cb, 54 + ctx, 0 );
259
0
}
Unexecuted instantiation: analyse.c:cabac_ref_internal
Unexecuted instantiation: cabac.c:cabac_ref_internal
260
261
static NOINLINE void cabac_ref_p( x264_t *h, x264_cabac_t *cb, int idx )
262
0
{
263
0
    cabac_ref_internal( h, cb, 0, idx, 0 );
264
0
}
Unexecuted instantiation: analyse.c:cabac_ref_p
Unexecuted instantiation: cabac.c:cabac_ref_p
265
static NOINLINE void cabac_ref_b( x264_t *h, x264_cabac_t *cb, int i_list, int idx )
266
0
{
267
0
    cabac_ref_internal( h, cb, i_list, idx, 1 );
268
0
}
Unexecuted instantiation: analyse.c:cabac_ref_b
Unexecuted instantiation: cabac.c:cabac_ref_b
269
270
static ALWAYS_INLINE int cabac_mvd_cpn( x264_t *h, x264_cabac_t *cb, int i_list, int idx, int l, int mvd, int ctx )
271
0
{
272
0
    int ctxbase = l ? 47 : 40;
273
274
0
    if( mvd == 0 )
275
0
    {
276
0
        x264_cabac_encode_decision( cb, ctxbase + ctx, 0 );
277
0
        return 0;
278
0
    }
279
280
0
    int i_abs = abs( mvd );
281
0
    x264_cabac_encode_decision( cb, ctxbase + ctx, 1 );
282
#if RDO_SKIP_BS
283
0
    if( i_abs <= 3 )
284
0
    {
285
0
        for( int i = 1; i < i_abs; i++ )
286
0
            x264_cabac_encode_decision( cb, ctxbase + i + 2, 1 );
287
0
        x264_cabac_encode_decision( cb, ctxbase + i_abs + 2, 0 );
288
0
        x264_cabac_encode_bypass( cb, mvd >> 31 );
289
0
    }
290
0
    else
291
0
    {
292
0
        x264_cabac_encode_decision( cb, ctxbase + 3, 1 );
293
0
        x264_cabac_encode_decision( cb, ctxbase + 4, 1 );
294
0
        x264_cabac_encode_decision( cb, ctxbase + 5, 1 );
295
0
        if( i_abs < 9 )
296
0
        {
297
0
            cb->f8_bits_encoded += x264_cabac_size_unary[i_abs - 3][cb->state[ctxbase+6]];
298
0
            cb->state[ctxbase+6] = x264_cabac_transition_unary[i_abs - 3][cb->state[ctxbase+6]];
299
0
        }
300
0
        else
301
0
        {
302
0
            cb->f8_bits_encoded += cabac_size_5ones[cb->state[ctxbase+6]];
303
0
            cb->state[ctxbase+6] = cabac_transition_5ones[cb->state[ctxbase+6]];
304
0
            x264_cabac_encode_ue_bypass( cb, 3, i_abs - 9 );
305
0
        }
306
0
    }
307
#else
308
    static const uint8_t ctxes[8] = { 3,4,5,6,6,6,6,6 };
309
310
0
    if( i_abs < 9 )
311
0
    {
312
0
        for( int i = 1; i < i_abs; i++ )
313
0
            x264_cabac_encode_decision( cb, ctxbase + ctxes[i-1], 1 );
314
0
        x264_cabac_encode_decision( cb, ctxbase + ctxes[i_abs-1], 0 );
315
0
    }
316
0
    else
317
0
    {
318
0
        for( int i = 1; i < 9; i++ )
319
0
            x264_cabac_encode_decision( cb, ctxbase + ctxes[i-1], 1 );
320
0
        x264_cabac_encode_ue_bypass( cb, 3, i_abs - 9 );
321
0
    }
322
0
    x264_cabac_encode_bypass( cb, mvd >> 31 );
323
#endif
324
    /* Since we don't need to keep track of MVDs larger than 66, just cap the value.
325
     * This lets us store MVDs as 8-bit values instead of 16-bit. */
326
0
    return X264_MIN( i_abs, 66 );
327
0
}
Unexecuted instantiation: analyse.c:cabac_mvd_cpn
Unexecuted instantiation: cabac.c:cabac_mvd_cpn
328
329
static NOINLINE uint16_t cabac_mvd( x264_t *h, x264_cabac_t *cb, int i_list, int idx, int width )
330
0
{
331
0
    ALIGNED_4( int16_t mvp[2] );
332
0
    int mdx, mdy;
333
334
    /* Calculate mvd */
335
0
    x264_mb_predict_mv( h, i_list, idx, width, mvp );
336
0
    mdx = h->mb.cache.mv[i_list][x264_scan8[idx]][0] - mvp[0];
337
0
    mdy = h->mb.cache.mv[i_list][x264_scan8[idx]][1] - mvp[1];
338
0
    uint16_t amvd = x264_cabac_mvd_sum(h->mb.cache.mvd[i_list][x264_scan8[idx] - 1],
339
0
                                       h->mb.cache.mvd[i_list][x264_scan8[idx] - 8]);
340
341
    /* encode */
342
0
    mdx = cabac_mvd_cpn( h, cb, i_list, idx, 0, mdx, amvd&0xFF );
343
0
    mdy = cabac_mvd_cpn( h, cb, i_list, idx, 1, mdy, amvd>>8 );
344
345
0
    return pack8to16(mdx,mdy);
346
0
}
Unexecuted instantiation: analyse.c:cabac_mvd
Unexecuted instantiation: cabac.c:cabac_mvd
347
348
0
#define cabac_mvd(h,cb,i_list,idx,width,height)\
349
0
do\
350
0
{\
351
0
    uint16_t mvd = cabac_mvd(h,cb,i_list,idx,width);\
352
0
    x264_macroblock_cache_mvd( h, block_idx_x[idx], block_idx_y[idx], width, height, i_list, mvd );\
353
0
} while( 0 )
354
355
static inline void cabac_8x8_mvd( x264_t *h, x264_cabac_t *cb, int i )
356
0
{
357
0
    switch( h->mb.i_sub_partition[i] )
358
0
    {
359
0
        case D_L0_8x8:
360
0
            cabac_mvd( h, cb, 0, 4*i, 2, 2 );
361
0
            break;
362
0
        case D_L0_8x4:
363
0
            cabac_mvd( h, cb, 0, 4*i+0, 2, 1 );
364
0
            cabac_mvd( h, cb, 0, 4*i+2, 2, 1 );
365
0
            break;
366
0
        case D_L0_4x8:
367
0
            cabac_mvd( h, cb, 0, 4*i+0, 1, 2 );
368
0
            cabac_mvd( h, cb, 0, 4*i+1, 1, 2 );
369
0
            break;
370
0
        case D_L0_4x4:
371
0
            cabac_mvd( h, cb, 0, 4*i+0, 1, 1 );
372
0
            cabac_mvd( h, cb, 0, 4*i+1, 1, 1 );
373
0
            cabac_mvd( h, cb, 0, 4*i+2, 1, 1 );
374
0
            cabac_mvd( h, cb, 0, 4*i+3, 1, 1 );
375
0
            break;
376
0
        default:
377
0
            assert(0);
378
0
    }
379
0
}
Unexecuted instantiation: analyse.c:cabac_8x8_mvd
Unexecuted instantiation: cabac.c:cabac_8x8_mvd
380
381
static ALWAYS_INLINE void cabac_mb_header_i( x264_t *h, x264_cabac_t *cb, int i_mb_type, int slice_type, int chroma )
382
44.5k
{
383
44.5k
    if( slice_type == SLICE_TYPE_I )
384
44.5k
    {
385
44.5k
        int ctx = 0;
386
44.5k
        if( (h->mb.i_neighbour & MB_LEFT) && h->mb.i_mb_type_left[0] != I_4x4 )
387
40.4k
            ctx++;
388
44.5k
        if( (h->mb.i_neighbour & MB_TOP) && h->mb.i_mb_type_top != I_4x4 )
389
38.8k
            ctx++;
390
391
44.5k
        cabac_mb_type_intra( h, cb, i_mb_type, 3+ctx, 3+3, 3+4, 3+5, 3+6, 3+7 );
392
44.5k
    }
393
0
    else if( slice_type == SLICE_TYPE_P )
394
0
    {
395
        /* prefix */
396
0
        x264_cabac_encode_decision_noup( cb, 14, 1 );
397
398
        /* suffix */
399
0
        cabac_mb_type_intra( h, cb, i_mb_type, 17+0, 17+1, 17+2, 17+2, 17+3, 17+3 );
400
0
    }
401
0
    else if( slice_type == SLICE_TYPE_B )
402
0
    {
403
        /* prefix */
404
0
        x264_cabac_encode_decision_noup( cb, 27+3,   1 );
405
0
        x264_cabac_encode_decision_noup( cb, 27+4,   1 );
406
0
        x264_cabac_encode_decision( cb, 27+5,   1 );
407
0
        x264_cabac_encode_decision( cb, 27+5,   0 );
408
0
        x264_cabac_encode_decision( cb, 27+5,   1 );
409
410
        /* suffix */
411
0
        cabac_mb_type_intra( h, cb, i_mb_type, 32+0, 32+1, 32+2, 32+2, 32+3, 32+3 );
412
0
    }
413
414
44.5k
    if( i_mb_type == I_PCM )
415
0
        return;
416
417
44.5k
    if( i_mb_type != I_16x16 )
418
222
    {
419
222
        if( h->pps->b_transform_8x8_mode )
420
0
            cabac_transform_size( h, cb );
421
422
222
        int di = h->mb.b_transform_8x8 ? 4 : 1;
423
3.77k
        for( int i = 0; i < 16; i += di )
424
3.55k
        {
425
3.55k
            const int i_pred = x264_mb_predict_intra4x4_mode( h, i );
426
3.55k
            const int i_mode = x264_mb_pred_mode4x4_fix( h->mb.cache.intra4x4_pred_mode[x264_scan8[i]] );
427
3.55k
            cabac_intra4x4_pred_mode( cb, i_pred, i_mode );
428
3.55k
        }
429
222
    }
430
431
44.5k
    if( chroma )
432
44.5k
        cabac_intra_chroma_pred_mode( h, cb );
433
44.5k
}
analyse.c:cabac_mb_header_i
Line
Count
Source
382
23.2k
{
383
23.2k
    if( slice_type == SLICE_TYPE_I )
384
23.2k
    {
385
23.2k
        int ctx = 0;
386
23.2k
        if( (h->mb.i_neighbour & MB_LEFT) && h->mb.i_mb_type_left[0] != I_4x4 )
387
21.0k
            ctx++;
388
23.2k
        if( (h->mb.i_neighbour & MB_TOP) && h->mb.i_mb_type_top != I_4x4 )
389
19.4k
            ctx++;
390
391
23.2k
        cabac_mb_type_intra( h, cb, i_mb_type, 3+ctx, 3+3, 3+4, 3+5, 3+6, 3+7 );
392
23.2k
    }
393
0
    else if( slice_type == SLICE_TYPE_P )
394
0
    {
395
        /* prefix */
396
0
        x264_cabac_encode_decision_noup( cb, 14, 1 );
397
398
        /* suffix */
399
0
        cabac_mb_type_intra( h, cb, i_mb_type, 17+0, 17+1, 17+2, 17+2, 17+3, 17+3 );
400
0
    }
401
0
    else if( slice_type == SLICE_TYPE_B )
402
0
    {
403
        /* prefix */
404
0
        x264_cabac_encode_decision_noup( cb, 27+3,   1 );
405
0
        x264_cabac_encode_decision_noup( cb, 27+4,   1 );
406
0
        x264_cabac_encode_decision( cb, 27+5,   1 );
407
0
        x264_cabac_encode_decision( cb, 27+5,   0 );
408
0
        x264_cabac_encode_decision( cb, 27+5,   1 );
409
410
        /* suffix */
411
0
        cabac_mb_type_intra( h, cb, i_mb_type, 32+0, 32+1, 32+2, 32+2, 32+3, 32+3 );
412
0
    }
413
414
23.2k
    if( i_mb_type == I_PCM )
415
0
        return;
416
417
23.2k
    if( i_mb_type != I_16x16 )
418
169
    {
419
169
        if( h->pps->b_transform_8x8_mode )
420
0
            cabac_transform_size( h, cb );
421
422
169
        int di = h->mb.b_transform_8x8 ? 4 : 1;
423
2.87k
        for( int i = 0; i < 16; i += di )
424
2.70k
        {
425
2.70k
            const int i_pred = x264_mb_predict_intra4x4_mode( h, i );
426
2.70k
            const int i_mode = x264_mb_pred_mode4x4_fix( h->mb.cache.intra4x4_pred_mode[x264_scan8[i]] );
427
2.70k
            cabac_intra4x4_pred_mode( cb, i_pred, i_mode );
428
2.70k
        }
429
169
    }
430
431
23.2k
    if( chroma )
432
23.2k
        cabac_intra_chroma_pred_mode( h, cb );
433
23.2k
}
cabac.c:cabac_mb_header_i
Line
Count
Source
382
21.3k
{
383
21.3k
    if( slice_type == SLICE_TYPE_I )
384
21.3k
    {
385
21.3k
        int ctx = 0;
386
21.3k
        if( (h->mb.i_neighbour & MB_LEFT) && h->mb.i_mb_type_left[0] != I_4x4 )
387
19.4k
            ctx++;
388
21.3k
        if( (h->mb.i_neighbour & MB_TOP) && h->mb.i_mb_type_top != I_4x4 )
389
19.4k
            ctx++;
390
391
21.3k
        cabac_mb_type_intra( h, cb, i_mb_type, 3+ctx, 3+3, 3+4, 3+5, 3+6, 3+7 );
392
21.3k
    }
393
0
    else if( slice_type == SLICE_TYPE_P )
394
0
    {
395
        /* prefix */
396
0
        x264_cabac_encode_decision_noup( cb, 14, 1 );
397
398
        /* suffix */
399
0
        cabac_mb_type_intra( h, cb, i_mb_type, 17+0, 17+1, 17+2, 17+2, 17+3, 17+3 );
400
0
    }
401
0
    else if( slice_type == SLICE_TYPE_B )
402
0
    {
403
        /* prefix */
404
0
        x264_cabac_encode_decision_noup( cb, 27+3,   1 );
405
0
        x264_cabac_encode_decision_noup( cb, 27+4,   1 );
406
0
        x264_cabac_encode_decision( cb, 27+5,   1 );
407
0
        x264_cabac_encode_decision( cb, 27+5,   0 );
408
0
        x264_cabac_encode_decision( cb, 27+5,   1 );
409
410
        /* suffix */
411
0
        cabac_mb_type_intra( h, cb, i_mb_type, 32+0, 32+1, 32+2, 32+2, 32+3, 32+3 );
412
0
    }
413
414
21.3k
    if( i_mb_type == I_PCM )
415
0
        return;
416
417
21.3k
    if( i_mb_type != I_16x16 )
418
53
    {
419
53
        if( h->pps->b_transform_8x8_mode )
420
0
            cabac_transform_size( h, cb );
421
422
53
        int di = h->mb.b_transform_8x8 ? 4 : 1;
423
901
        for( int i = 0; i < 16; i += di )
424
848
        {
425
848
            const int i_pred = x264_mb_predict_intra4x4_mode( h, i );
426
848
            const int i_mode = x264_mb_pred_mode4x4_fix( h->mb.cache.intra4x4_pred_mode[x264_scan8[i]] );
427
848
            cabac_intra4x4_pred_mode( cb, i_pred, i_mode );
428
848
        }
429
53
    }
430
431
21.3k
    if( chroma )
432
21.3k
        cabac_intra_chroma_pred_mode( h, cb );
433
21.3k
}
434
435
static ALWAYS_INLINE void cabac_mb_header_p( x264_t *h, x264_cabac_t *cb, int i_mb_type, int chroma )
436
0
{
437
0
    if( i_mb_type == P_L0 )
438
0
    {
439
0
        x264_cabac_encode_decision_noup( cb, 14, 0 );
440
0
        if( h->mb.i_partition == D_16x16 )
441
0
        {
442
0
            x264_cabac_encode_decision_noup( cb, 15, 0 );
443
0
            x264_cabac_encode_decision_noup( cb, 16, 0 );
444
0
            if( h->mb.pic.i_fref[0] > 1 )
445
0
                cabac_ref_p( h, cb, 0 );
446
0
            cabac_mvd( h, cb, 0, 0, 4, 4 );
447
0
        }
448
0
        else if( h->mb.i_partition == D_16x8 )
449
0
        {
450
0
            x264_cabac_encode_decision_noup( cb, 15, 1 );
451
0
            x264_cabac_encode_decision_noup( cb, 17, 1 );
452
0
            if( h->mb.pic.i_fref[0] > 1 )
453
0
            {
454
0
                cabac_ref_p( h, cb, 0 );
455
0
                cabac_ref_p( h, cb, 8 );
456
0
            }
457
0
            cabac_mvd( h, cb, 0, 0, 4, 2 );
458
0
            cabac_mvd( h, cb, 0, 8, 4, 2 );
459
0
        }
460
0
        else //if( h->mb.i_partition == D_8x16 )
461
0
        {
462
0
            x264_cabac_encode_decision_noup( cb, 15, 1 );
463
0
            x264_cabac_encode_decision_noup( cb, 17, 0 );
464
0
            if( h->mb.pic.i_fref[0] > 1 )
465
0
            {
466
0
                cabac_ref_p( h, cb, 0 );
467
0
                cabac_ref_p( h, cb, 4 );
468
0
            }
469
0
            cabac_mvd( h, cb, 0, 0, 2, 4 );
470
0
            cabac_mvd( h, cb, 0, 4, 2, 4 );
471
0
        }
472
0
    }
473
0
    else if( i_mb_type == P_8x8 )
474
0
    {
475
0
        x264_cabac_encode_decision_noup( cb, 14, 0 );
476
0
        x264_cabac_encode_decision_noup( cb, 15, 0 );
477
0
        x264_cabac_encode_decision_noup( cb, 16, 1 );
478
479
        /* sub mb type */
480
0
        for( int i = 0; i < 4; i++ )
481
0
            cabac_subpartition_p( cb, h->mb.i_sub_partition[i] );
482
483
        /* ref 0 */
484
0
        if( h->mb.pic.i_fref[0] > 1 )
485
0
        {
486
0
            cabac_ref_p( h, cb,  0 );
487
0
            cabac_ref_p( h, cb,  4 );
488
0
            cabac_ref_p( h, cb,  8 );
489
0
            cabac_ref_p( h, cb, 12 );
490
0
        }
491
492
0
        for( int i = 0; i < 4; i++ )
493
0
            cabac_8x8_mvd( h, cb, i );
494
0
    }
495
0
    else /* intra */
496
0
        cabac_mb_header_i( h, cb, i_mb_type, SLICE_TYPE_P, chroma );
497
0
}
Unexecuted instantiation: analyse.c:cabac_mb_header_p
Unexecuted instantiation: cabac.c:cabac_mb_header_p
498
499
static ALWAYS_INLINE void cabac_mb_header_b( x264_t *h, x264_cabac_t *cb, int i_mb_type, int chroma )
500
0
{
501
0
    int ctx = 0;
502
0
    if( (h->mb.i_neighbour & MB_LEFT) && h->mb.i_mb_type_left[0] != B_SKIP && h->mb.i_mb_type_left[0] != B_DIRECT )
503
0
        ctx++;
504
0
    if( (h->mb.i_neighbour & MB_TOP) && h->mb.i_mb_type_top != B_SKIP && h->mb.i_mb_type_top != B_DIRECT )
505
0
        ctx++;
506
507
0
    if( i_mb_type == B_DIRECT )
508
0
    {
509
0
        x264_cabac_encode_decision_noup( cb, 27+ctx, 0 );
510
0
        return;
511
0
    }
512
0
    x264_cabac_encode_decision_noup( cb, 27+ctx, 1 );
513
514
0
    if( i_mb_type == B_8x8 )
515
0
    {
516
0
        x264_cabac_encode_decision_noup( cb, 27+3,   1 );
517
0
        x264_cabac_encode_decision_noup( cb, 27+4,   1 );
518
0
        x264_cabac_encode_decision( cb, 27+5,   1 );
519
0
        x264_cabac_encode_decision( cb, 27+5,   1 );
520
0
        x264_cabac_encode_decision_noup( cb, 27+5,   1 );
521
522
        /* sub mb type */
523
0
        for( int i = 0; i < 4; i++ )
524
0
            cabac_subpartition_b( cb, h->mb.i_sub_partition[i] );
525
526
        /* ref */
527
0
        if( h->mb.pic.i_fref[0] > 1 )
528
0
            for( int i = 0; i < 4; i++ )
529
0
                if( x264_mb_partition_listX_table[0][ h->mb.i_sub_partition[i] ] )
530
0
                    cabac_ref_b( h, cb, 0, 4*i );
531
532
0
        if( h->mb.pic.i_fref[1] > 1 )
533
0
            for( int i = 0; i < 4; i++ )
534
0
                if( x264_mb_partition_listX_table[1][ h->mb.i_sub_partition[i] ] )
535
0
                    cabac_ref_b( h, cb, 1, 4*i );
536
537
0
        for( int i = 0; i < 4; i++ )
538
0
            if( x264_mb_partition_listX_table[0][ h->mb.i_sub_partition[i] ] )
539
0
                cabac_mvd( h, cb, 0, 4*i, 2, 2 );
540
541
0
        for( int i = 0; i < 4; i++ )
542
0
            if( x264_mb_partition_listX_table[1][ h->mb.i_sub_partition[i] ] )
543
0
                cabac_mvd( h, cb, 1, 4*i, 2, 2 );
544
0
    }
545
0
    else if( i_mb_type >= B_L0_L0 && i_mb_type <= B_BI_BI )
546
0
    {
547
        /* All B modes */
548
0
        static const uint8_t i_mb_bits[9*3] =
549
0
        {
550
0
            0x31, 0x29, 0x4, /* L0 L0 */
551
0
            0x35, 0x2d, 0,   /* L0 L1 */
552
0
            0x43, 0x63, 0,   /* L0 BI */
553
0
            0x3d, 0x2f, 0,   /* L1 L0 */
554
0
            0x39, 0x25, 0x6, /* L1 L1 */
555
0
            0x53, 0x73, 0,   /* L1 BI */
556
0
            0x4b, 0x6b, 0,   /* BI L0 */
557
0
            0x5b, 0x7b, 0,   /* BI L1 */
558
0
            0x47, 0x67, 0x21 /* BI BI */
559
0
        };
560
561
0
        const int idx = (i_mb_type - B_L0_L0) * 3 + (h->mb.i_partition - D_16x8);
562
0
        int bits = i_mb_bits[idx];
563
564
0
        x264_cabac_encode_decision_noup( cb, 27+3, bits&1 );
565
0
        x264_cabac_encode_decision( cb, 27+5-(bits&1), (bits>>1)&1 ); bits >>= 2;
566
0
        if( bits != 1 )
567
0
        {
568
0
            x264_cabac_encode_decision( cb, 27+5, bits&1 ); bits >>= 1;
569
0
            x264_cabac_encode_decision( cb, 27+5, bits&1 ); bits >>= 1;
570
0
            x264_cabac_encode_decision( cb, 27+5, bits&1 ); bits >>= 1;
571
0
            if( bits != 1 )
572
0
                x264_cabac_encode_decision_noup( cb, 27+5, bits&1 );
573
0
        }
574
575
0
        const uint8_t (*b_list)[2] = x264_mb_type_list_table[i_mb_type];
576
0
        if( h->mb.pic.i_fref[0] > 1 )
577
0
        {
578
0
            if( b_list[0][0] )
579
0
                cabac_ref_b( h, cb, 0, 0 );
580
0
            if( b_list[0][1] && h->mb.i_partition != D_16x16 )
581
0
                cabac_ref_b( h, cb, 0, 8 >> (h->mb.i_partition == D_8x16) );
582
0
        }
583
0
        if( h->mb.pic.i_fref[1] > 1 )
584
0
        {
585
0
            if( b_list[1][0] )
586
0
                cabac_ref_b( h, cb, 1, 0 );
587
0
            if( b_list[1][1] && h->mb.i_partition != D_16x16 )
588
0
                cabac_ref_b( h, cb, 1, 8 >> (h->mb.i_partition == D_8x16) );
589
0
        }
590
0
        for( int i_list = 0; i_list < 2; i_list++ )
591
0
        {
592
0
            if( h->mb.i_partition == D_16x16 )
593
0
            {
594
0
                if( b_list[i_list][0] ) cabac_mvd( h, cb, i_list, 0, 4, 4 );
595
0
            }
596
0
            else if( h->mb.i_partition == D_16x8 )
597
0
            {
598
0
                if( b_list[i_list][0] ) cabac_mvd( h, cb, i_list, 0, 4, 2 );
599
0
                if( b_list[i_list][1] ) cabac_mvd( h, cb, i_list, 8, 4, 2 );
600
0
            }
601
0
            else //if( h->mb.i_partition == D_8x16 )
602
0
            {
603
0
                if( b_list[i_list][0] ) cabac_mvd( h, cb, i_list, 0, 2, 4 );
604
0
                if( b_list[i_list][1] ) cabac_mvd( h, cb, i_list, 4, 2, 4 );
605
0
            }
606
0
        }
607
0
    }
608
0
    else /* intra */
609
0
        cabac_mb_header_i( h, cb, i_mb_type, SLICE_TYPE_B, chroma );
610
0
}
Unexecuted instantiation: analyse.c:cabac_mb_header_b
Unexecuted instantiation: cabac.c:cabac_mb_header_b
611
612
static ALWAYS_INLINE int cabac_cbf_ctxidxinc( x264_t *h, int i_cat, int i_idx, int b_intra, int b_dc )
613
54.3k
{
614
54.3k
    static const uint16_t base_ctx[14] = {85,89,93,97,101,1012,460,464,468,1016,472,476,480,1020};
615
616
54.3k
    if( b_dc )
617
45.8k
    {
618
45.8k
        i_idx -= LUMA_DC;
619
45.8k
        if( i_cat == DCT_CHROMA_DC )
620
1.48k
        {
621
1.48k
            int i_nza = h->mb.cache.i_cbp_left != -1 ? (h->mb.cache.i_cbp_left >> (8 + i_idx)) & 1 : b_intra;
622
1.48k
            int i_nzb = h->mb.cache.i_cbp_top  != -1 ? (h->mb.cache.i_cbp_top  >> (8 + i_idx)) & 1 : b_intra;
623
1.48k
            return base_ctx[i_cat] + 2*i_nzb + i_nza;
624
1.48k
        }
625
44.3k
        else
626
44.3k
        {
627
44.3k
            int i_nza = (h->mb.cache.i_cbp_left >> (8 + i_idx)) & 1;
628
44.3k
            int i_nzb = (h->mb.cache.i_cbp_top  >> (8 + i_idx)) & 1;
629
44.3k
            return base_ctx[i_cat] + 2*i_nzb + i_nza;
630
44.3k
        }
631
45.8k
    }
632
8.46k
    else
633
8.46k
    {
634
8.46k
        int i_nza = h->mb.cache.non_zero_count[x264_scan8[i_idx] - 1];
635
8.46k
        int i_nzb = h->mb.cache.non_zero_count[x264_scan8[i_idx] - 8];
636
8.46k
        if( x264_constant_p(b_intra) && !b_intra )
637
0
            return base_ctx[i_cat] + ((2*i_nzb + i_nza)&0x7f);
638
8.46k
        else
639
8.46k
        {
640
8.46k
            i_nza &= 0x7f + (b_intra << 7);
641
8.46k
            i_nzb &= 0x7f + (b_intra << 7);
642
8.46k
            return base_ctx[i_cat] + 2*!!i_nzb + !!i_nza;
643
8.46k
        }
644
8.46k
    }
645
54.3k
}
analyse.c:cabac_cbf_ctxidxinc
Line
Count
Source
613
31.9k
{
614
31.9k
    static const uint16_t base_ctx[14] = {85,89,93,97,101,1012,460,464,468,1016,472,476,480,1020};
615
616
31.9k
    if( b_dc )
617
24.1k
    {
618
24.1k
        i_idx -= LUMA_DC;
619
24.1k
        if( i_cat == DCT_CHROMA_DC )
620
1.04k
        {
621
1.04k
            int i_nza = h->mb.cache.i_cbp_left != -1 ? (h->mb.cache.i_cbp_left >> (8 + i_idx)) & 1 : b_intra;
622
1.04k
            int i_nzb = h->mb.cache.i_cbp_top  != -1 ? (h->mb.cache.i_cbp_top  >> (8 + i_idx)) & 1 : b_intra;
623
1.04k
            return base_ctx[i_cat] + 2*i_nzb + i_nza;
624
1.04k
        }
625
23.0k
        else
626
23.0k
        {
627
23.0k
            int i_nza = (h->mb.cache.i_cbp_left >> (8 + i_idx)) & 1;
628
23.0k
            int i_nzb = (h->mb.cache.i_cbp_top  >> (8 + i_idx)) & 1;
629
23.0k
            return base_ctx[i_cat] + 2*i_nzb + i_nza;
630
23.0k
        }
631
24.1k
    }
632
7.83k
    else
633
7.83k
    {
634
7.83k
        int i_nza = h->mb.cache.non_zero_count[x264_scan8[i_idx] - 1];
635
7.83k
        int i_nzb = h->mb.cache.non_zero_count[x264_scan8[i_idx] - 8];
636
7.83k
        if( x264_constant_p(b_intra) && !b_intra )
637
0
            return base_ctx[i_cat] + ((2*i_nzb + i_nza)&0x7f);
638
7.83k
        else
639
7.83k
        {
640
7.83k
            i_nza &= 0x7f + (b_intra << 7);
641
7.83k
            i_nzb &= 0x7f + (b_intra << 7);
642
7.83k
            return base_ctx[i_cat] + 2*!!i_nzb + !!i_nza;
643
7.83k
        }
644
7.83k
    }
645
31.9k
}
cabac.c:cabac_cbf_ctxidxinc
Line
Count
Source
613
22.3k
{
614
22.3k
    static const uint16_t base_ctx[14] = {85,89,93,97,101,1012,460,464,468,1016,472,476,480,1020};
615
616
22.3k
    if( b_dc )
617
21.7k
    {
618
21.7k
        i_idx -= LUMA_DC;
619
21.7k
        if( i_cat == DCT_CHROMA_DC )
620
442
        {
621
442
            int i_nza = h->mb.cache.i_cbp_left != -1 ? (h->mb.cache.i_cbp_left >> (8 + i_idx)) & 1 : b_intra;
622
442
            int i_nzb = h->mb.cache.i_cbp_top  != -1 ? (h->mb.cache.i_cbp_top  >> (8 + i_idx)) & 1 : b_intra;
623
442
            return base_ctx[i_cat] + 2*i_nzb + i_nza;
624
442
        }
625
21.3k
        else
626
21.3k
        {
627
21.3k
            int i_nza = (h->mb.cache.i_cbp_left >> (8 + i_idx)) & 1;
628
21.3k
            int i_nzb = (h->mb.cache.i_cbp_top  >> (8 + i_idx)) & 1;
629
21.3k
            return base_ctx[i_cat] + 2*i_nzb + i_nza;
630
21.3k
        }
631
21.7k
    }
632
636
    else
633
636
    {
634
636
        int i_nza = h->mb.cache.non_zero_count[x264_scan8[i_idx] - 1];
635
636
        int i_nzb = h->mb.cache.non_zero_count[x264_scan8[i_idx] - 8];
636
636
        if( x264_constant_p(b_intra) && !b_intra )
637
0
            return base_ctx[i_cat] + ((2*i_nzb + i_nza)&0x7f);
638
636
        else
639
636
        {
640
636
            i_nza &= 0x7f + (b_intra << 7);
641
636
            i_nzb &= 0x7f + (b_intra << 7);
642
636
            return base_ctx[i_cat] + 2*!!i_nzb + !!i_nza;
643
636
        }
644
636
    }
645
22.3k
}
646
647
// node ctx: 0..3: abslevel1 (with abslevelgt1 == 0).
648
//           4..7: abslevelgt1 + 3 (and abslevel1 doesn't matter).
649
/* map node ctx => cabac ctx for level=1 */
650
static const uint8_t coeff_abs_level1_ctx[8] = { 1, 2, 3, 4, 0, 0, 0, 0 };
651
/* map node ctx => cabac ctx for level>1 */
652
static const uint8_t coeff_abs_levelgt1_ctx[8] = { 5, 5, 5, 5, 6, 7, 8, 9 };
653
/* 4:2:2 chroma dc uses a slightly different state machine for some reason, also note that
654
 * 4:2:0 chroma dc doesn't use the last state so it has identical output with both arrays. */
655
static const uint8_t coeff_abs_levelgt1_ctx_chroma_dc[8] = { 5, 5, 5, 5, 6, 7, 8, 8 };
656
657
static const uint8_t coeff_abs_level_transition[2][8] = {
658
/* update node ctx after coding a level=1 */
659
    { 1, 2, 3, 3, 4, 5, 6, 7 },
660
/* update node ctx after coding a level>1 */
661
    { 4, 4, 4, 4, 5, 6, 7, 7 }
662
};
663
664
#if !RDO_SKIP_BS
665
static ALWAYS_INLINE void cabac_block_residual_internal( x264_t *h, x264_cabac_t *cb, int ctx_block_cat, dctcoef *l, int chroma422dc )
666
1.03k
{
667
1.03k
    int ctx_sig = x264_significant_coeff_flag_offset[MB_INTERLACED][ctx_block_cat];
668
1.03k
    int ctx_last = x264_last_coeff_flag_offset[MB_INTERLACED][ctx_block_cat];
669
1.03k
    int ctx_level = x264_coeff_abs_level_m1_offset[ctx_block_cat];
670
1.03k
    int coeff_idx = -1, node_ctx = 0;
671
1.03k
    int last = h->quantf.coeff_last[ctx_block_cat]( l );
672
1.03k
    const uint8_t *levelgt1_ctx = chroma422dc ? coeff_abs_levelgt1_ctx_chroma_dc : coeff_abs_levelgt1_ctx;
673
1.03k
    dctcoef coeffs[64];
674
675
1.03k
#define WRITE_SIGMAP( sig_off, last_off )\
676
1.03k
{\
677
1.03k
    int i = 0;\
678
7.50k
    while( 1 )\
679
7.50k
    {\
680
7.50k
        if( l[i] )\
681
7.50k
        {\
682
7.50k
            coeffs[++coeff_idx] = l[i];\
683
7.50k
            x264_cabac_encode_decision( cb, ctx_sig + sig_off, 1 );\
684
7.50k
            if( i == last )\
685
7.50k
            {\
686
452
                x264_cabac_encode_decision( cb, ctx_last + last_off, 1 );\
687
452
                break;\
688
452
            }\
689
7.50k
            else\
690
7.50k
                x264_cabac_encode_decision( cb, ctx_last + last_off, 0 );\
691
7.50k
        }\
692
7.50k
        else\
693
7.50k
            x264_cabac_encode_decision( cb, ctx_sig + sig_off, 0 );\
694
7.50k
        if( ++i == count_m1 )\
695
7.04k
        {\
696
583
            coeffs[++coeff_idx] = l[i];\
697
583
            break;\
698
583
        }\
699
7.04k
    }\
700
1.03k
}
701
702
1.03k
    if( chroma422dc )
703
0
    {
704
0
        int count_m1 = 7;
705
0
        WRITE_SIGMAP( x264_coeff_flag_offset_chroma_422_dc[i], x264_coeff_flag_offset_chroma_422_dc[i] )
706
0
    }
707
1.03k
    else
708
1.03k
    {
709
1.03k
        int count_m1 = x264_count_cat_m1[ctx_block_cat];
710
1.03k
        if( count_m1 == 63 )
711
0
        {
712
0
            const uint8_t *sig_offset = x264_significant_coeff_flag_offset_8x8[MB_INTERLACED];
713
0
            WRITE_SIGMAP( sig_offset[i], x264_last_coeff_flag_offset_8x8[i] )
714
0
        }
715
1.03k
        else
716
1.03k
            WRITE_SIGMAP( i, i )
717
1.03k
    }
718
719
1.03k
    do
720
8.08k
    {
721
        /* write coeff_abs - 1 */
722
8.08k
        int coeff = coeffs[coeff_idx];
723
8.08k
        int abs_coeff = abs(coeff);
724
8.08k
        int coeff_sign = coeff >> 31;
725
8.08k
        int ctx = coeff_abs_level1_ctx[node_ctx] + ctx_level;
726
727
8.08k
        if( abs_coeff > 1 )
728
7.98k
        {
729
7.98k
            x264_cabac_encode_decision( cb, ctx, 1 );
730
7.98k
            ctx = levelgt1_ctx[node_ctx] + ctx_level;
731
111k
            for( int i = X264_MIN( abs_coeff, 15 ) - 2; i > 0; i-- )
732
103k
                x264_cabac_encode_decision( cb, ctx, 1 );
733
7.98k
            if( abs_coeff < 15 )
734
0
                x264_cabac_encode_decision( cb, ctx, 0 );
735
7.98k
            else
736
7.98k
                x264_cabac_encode_ue_bypass( cb, 0, abs_coeff - 15 );
737
738
7.98k
            node_ctx = coeff_abs_level_transition[1][node_ctx];
739
7.98k
        }
740
104
        else
741
104
        {
742
104
            x264_cabac_encode_decision( cb, ctx, 0 );
743
104
            node_ctx = coeff_abs_level_transition[0][node_ctx];
744
104
        }
745
746
8.08k
        x264_cabac_encode_bypass( cb, coeff_sign );
747
8.08k
    } while( --coeff_idx >= 0 );
748
1.03k
}
749
750
void x264_cabac_block_residual_c( x264_t *h, x264_cabac_t *cb, int ctx_block_cat, dctcoef *l )
751
1.03k
{
752
1.03k
    cabac_block_residual_internal( h, cb, ctx_block_cat, l, 0 );
753
1.03k
}
x264_8_cabac_block_residual_c
Line
Count
Source
751
1.03k
{
752
1.03k
    cabac_block_residual_internal( h, cb, ctx_block_cat, l, 0 );
753
1.03k
}
Unexecuted instantiation: x264_10_cabac_block_residual_c
754
755
static ALWAYS_INLINE void cabac_block_residual( x264_t *h, x264_cabac_t *cb, int ctx_block_cat, dctcoef *l )
756
1.03k
{
757
#if ARCH_X86_64 && HAVE_MMX
758
    h->bsf.cabac_block_residual_internal( l, MB_INTERLACED, ctx_block_cat, cb );
759
#else
760
1.03k
    x264_cabac_block_residual_c( h, cb, ctx_block_cat, l );
761
1.03k
#endif
762
1.03k
}
763
static void cabac_block_residual_422_dc( x264_t *h, x264_cabac_t *cb, int ctx_block_cat, dctcoef *l )
764
0
{
765
    /* Template a version specifically for chroma 4:2:2 DC in order to avoid
766
     * slowing down everything else due to the added complexity. */
767
0
    cabac_block_residual_internal( h, cb, DCT_CHROMA_DC, l, 1 );
768
0
}
769
0
#define cabac_block_residual_8x8( h, cb, cat, l ) cabac_block_residual( h, cb, cat, l )
770
#else
771
772
/* Faster RDO by merging sigmap and level coding. Note that for 8x8dct and chroma 4:2:2 dc this is
773
 * slightly incorrect because the sigmap is not reversible (contexts are repeated). However, there
774
 * is nearly no quality penalty for this (~0.001db) and the speed boost (~30%) is worth it. */
775
static ALWAYS_INLINE void cabac_block_residual_internal( x264_t *h, x264_cabac_t *cb, int ctx_block_cat, dctcoef *l, int b_8x8, int chroma422dc )
776
3.13k
{
777
3.13k
    const uint8_t *sig_offset = x264_significant_coeff_flag_offset_8x8[MB_INTERLACED];
778
3.13k
    int ctx_sig = x264_significant_coeff_flag_offset[MB_INTERLACED][ctx_block_cat];
779
3.13k
    int ctx_last = x264_last_coeff_flag_offset[MB_INTERLACED][ctx_block_cat];
780
3.13k
    int ctx_level = x264_coeff_abs_level_m1_offset[ctx_block_cat];
781
3.13k
    int last = h->quantf.coeff_last[ctx_block_cat]( l );
782
3.13k
    int coeff_abs = abs(l[last]);
783
3.13k
    int ctx = coeff_abs_level1_ctx[0] + ctx_level;
784
3.13k
    int node_ctx;
785
3.13k
    const uint8_t *levelgt1_ctx = chroma422dc ? coeff_abs_levelgt1_ctx_chroma_dc : coeff_abs_levelgt1_ctx;
786
787
3.13k
    if( last != (b_8x8 ? 63 : chroma422dc ? 7 : x264_count_cat_m1[ctx_block_cat]) )
788
1.06k
    {
789
1.06k
        x264_cabac_encode_decision( cb, ctx_sig + (b_8x8 ? sig_offset[last] :
790
1.06k
                                    chroma422dc ? x264_coeff_flag_offset_chroma_422_dc[last] : last), 1 );
791
1.06k
        x264_cabac_encode_decision( cb, ctx_last + (b_8x8 ? x264_last_coeff_flag_offset_8x8[last] :
792
1.06k
                                    chroma422dc ? x264_coeff_flag_offset_chroma_422_dc[last] : last), 1 );
793
1.06k
    }
794
795
3.13k
    if( coeff_abs > 1 )
796
2.76k
    {
797
2.76k
        x264_cabac_encode_decision( cb, ctx, 1 );
798
2.76k
        ctx = levelgt1_ctx[0] + ctx_level;
799
2.76k
        if( coeff_abs < 15 )
800
0
        {
801
0
            cb->f8_bits_encoded += x264_cabac_size_unary[coeff_abs-1][cb->state[ctx]];
802
0
            cb->state[ctx] = x264_cabac_transition_unary[coeff_abs-1][cb->state[ctx]];
803
0
        }
804
2.76k
        else
805
2.76k
        {
806
2.76k
            cb->f8_bits_encoded += x264_cabac_size_unary[14][cb->state[ctx]];
807
2.76k
            cb->state[ctx] = x264_cabac_transition_unary[14][cb->state[ctx]];
808
2.76k
            x264_cabac_encode_ue_bypass( cb, 0, coeff_abs - 15 );
809
2.76k
        }
810
2.76k
        node_ctx = coeff_abs_level_transition[1][0];
811
2.76k
    }
812
370
    else
813
370
    {
814
370
        x264_cabac_encode_decision( cb, ctx, 0 );
815
370
        node_ctx = coeff_abs_level_transition[0][0];
816
370
        x264_cabac_encode_bypass( cb, 0 ); // sign
817
370
    }
818
819
29.8k
    for( int i = last-1; i >= 0; i-- )
820
26.7k
    {
821
26.7k
        if( l[i] )
822
26.7k
        {
823
26.7k
            coeff_abs = abs(l[i]);
824
26.7k
            x264_cabac_encode_decision( cb, ctx_sig + (b_8x8 ? sig_offset[i] :
825
26.7k
                                        chroma422dc ? x264_coeff_flag_offset_chroma_422_dc[i] : i), 1 );
826
26.7k
            x264_cabac_encode_decision( cb, ctx_last + (b_8x8 ? x264_last_coeff_flag_offset_8x8[i] :
827
26.7k
                                        chroma422dc ? x264_coeff_flag_offset_chroma_422_dc[i] : i), 0 );
828
26.7k
            ctx = coeff_abs_level1_ctx[node_ctx] + ctx_level;
829
830
26.7k
            if( coeff_abs > 1 )
831
26.7k
            {
832
26.7k
                x264_cabac_encode_decision( cb, ctx, 1 );
833
26.7k
                ctx = levelgt1_ctx[node_ctx] + ctx_level;
834
26.7k
                if( coeff_abs < 15 )
835
0
                {
836
0
                    cb->f8_bits_encoded += x264_cabac_size_unary[coeff_abs-1][cb->state[ctx]];
837
0
                    cb->state[ctx] = x264_cabac_transition_unary[coeff_abs-1][cb->state[ctx]];
838
0
                }
839
26.7k
                else
840
26.7k
                {
841
26.7k
                    cb->f8_bits_encoded += x264_cabac_size_unary[14][cb->state[ctx]];
842
26.7k
                    cb->state[ctx] = x264_cabac_transition_unary[14][cb->state[ctx]];
843
26.7k
                    x264_cabac_encode_ue_bypass( cb, 0, coeff_abs - 15 );
844
26.7k
                }
845
26.7k
                node_ctx = coeff_abs_level_transition[1][node_ctx];
846
26.7k
            }
847
0
            else
848
0
            {
849
0
                x264_cabac_encode_decision( cb, ctx, 0 );
850
0
                node_ctx = coeff_abs_level_transition[0][node_ctx];
851
0
                x264_cabac_encode_bypass( cb, 0 );
852
0
            }
853
26.7k
        }
854
0
        else
855
0
            x264_cabac_encode_decision( cb, ctx_sig + (b_8x8 ? sig_offset[i] :
856
26.7k
                                        chroma422dc ? x264_coeff_flag_offset_chroma_422_dc[i] : i), 0 );
857
26.7k
    }
858
3.13k
}
859
860
void x264_cabac_block_residual_8x8_rd_c( x264_t *h, x264_cabac_t *cb, int ctx_block_cat, dctcoef *l )
861
0
{
862
0
    cabac_block_residual_internal( h, cb, ctx_block_cat, l, 1, 0 );
863
0
}
Unexecuted instantiation: x264_8_cabac_block_residual_8x8_rd_c
Unexecuted instantiation: x264_10_cabac_block_residual_8x8_rd_c
864
void x264_cabac_block_residual_rd_c( x264_t *h, x264_cabac_t *cb, int ctx_block_cat, dctcoef *l )
865
3.13k
{
866
3.13k
    cabac_block_residual_internal( h, cb, ctx_block_cat, l, 0, 0 );
867
3.13k
}
x264_8_cabac_block_residual_rd_c
Line
Count
Source
865
3.13k
{
866
3.13k
    cabac_block_residual_internal( h, cb, ctx_block_cat, l, 0, 0 );
867
3.13k
}
Unexecuted instantiation: x264_10_cabac_block_residual_rd_c
868
869
static ALWAYS_INLINE void cabac_block_residual_8x8( x264_t *h, x264_cabac_t *cb, int ctx_block_cat, dctcoef *l )
870
0
{
871
#if ARCH_X86_64 && HAVE_MMX
872
    h->bsf.cabac_block_residual_8x8_rd_internal( l, MB_INTERLACED, ctx_block_cat, cb );
873
#else
874
0
    x264_cabac_block_residual_8x8_rd_c( h, cb, ctx_block_cat, l );
875
0
#endif
876
0
}
877
static ALWAYS_INLINE void cabac_block_residual( x264_t *h, x264_cabac_t *cb, int ctx_block_cat, dctcoef *l )
878
3.13k
{
879
#if ARCH_X86_64 && HAVE_MMX
880
    h->bsf.cabac_block_residual_rd_internal( l, MB_INTERLACED, ctx_block_cat, cb );
881
#else
882
3.13k
    x264_cabac_block_residual_rd_c( h, cb, ctx_block_cat, l );
883
3.13k
#endif
884
3.13k
}
885
886
static void cabac_block_residual_422_dc( x264_t *h, x264_cabac_t *cb, int ctx_block_cat, dctcoef *l )
887
0
{
888
0
    cabac_block_residual_internal( h, cb, DCT_CHROMA_DC, l, 0, 1 );
889
0
}
890
#endif
891
892
54.3k
#define cabac_block_residual_cbf_internal( h, cb, ctx_block_cat, i_idx, l, b_intra, b_dc, name )\
893
54.3k
do\
894
54.3k
{\
895
54.3k
    int ctxidxinc = cabac_cbf_ctxidxinc( h, ctx_block_cat, i_idx, b_intra, b_dc );\
896
54.3k
    if( h->mb.cache.non_zero_count[x264_scan8[i_idx]] )\
897
54.3k
    {\
898
4.16k
        x264_cabac_encode_decision( cb, ctxidxinc, 1 );\
899
4.16k
        cabac_block_residual##name( h, cb, ctx_block_cat, l );\
900
4.16k
    }\
901
54.3k
    else\
902
54.3k
        x264_cabac_encode_decision( cb, ctxidxinc, 0 );\
903
54.3k
} while( 0 )
904
905
#define cabac_block_residual_dc_cbf( h, cb, ctx_block_cat, i_idx, l, b_intra )\
906
45.8k
    cabac_block_residual_cbf_internal( h, cb, ctx_block_cat, i_idx, l, b_intra, 1, )
907
908
#define cabac_block_residual_cbf( h, cb, ctx_block_cat, i_idx, l, b_intra )\
909
8.46k
    cabac_block_residual_cbf_internal( h, cb, ctx_block_cat, i_idx, l, b_intra, 0, )
910
911
#define cabac_block_residual_8x8_cbf( h, cb, ctx_block_cat, i_idx, l, b_intra )\
912
0
    cabac_block_residual_cbf_internal( h, cb, ctx_block_cat, i_idx, l, b_intra, 0, _8x8 )
913
914
#define cabac_block_residual_422_dc_cbf( h, cb, ch, b_intra )\
915
0
    cabac_block_residual_cbf_internal( h, cb, DCT_CHROMA_DC, CHROMA_DC+(ch), h->dct.chroma_dc[ch], b_intra, 1, _422_dc )
916
917
static ALWAYS_INLINE void macroblock_write_cabac_internal( x264_t *h, x264_cabac_t *cb, int plane_count, int chroma )
918
44.5k
{
919
44.5k
    const int i_mb_type = h->mb.i_type;
920
921
#if !RDO_SKIP_BS
922
    const int i_mb_pos_start = x264_cabac_pos( cb );
923
    int       i_mb_pos_tex;
924
925
21.3k
    if( SLICE_MBAFF &&
926
0
        (!(h->mb.i_mb_y & 1) || IS_SKIP(h->mb.type[h->mb.i_mb_xy - h->mb.i_mb_stride])) )
927
0
    {
928
0
        cabac_field_decoding_flag( h, cb );
929
0
    }
930
#endif
931
932
44.5k
    if( h->sh.i_type == SLICE_TYPE_P )
933
0
        cabac_mb_header_p( h, cb, i_mb_type, chroma );
934
44.5k
    else if( h->sh.i_type == SLICE_TYPE_B )
935
0
        cabac_mb_header_b( h, cb, i_mb_type, chroma );
936
44.5k
    else //if( h->sh.i_type == SLICE_TYPE_I )
937
44.5k
        cabac_mb_header_i( h, cb, i_mb_type, SLICE_TYPE_I, chroma );
938
939
#if !RDO_SKIP_BS
940
    i_mb_pos_tex = x264_cabac_pos( cb );
941
    h->stat.frame.i_mv_bits += i_mb_pos_tex - i_mb_pos_start;
942
943
21.3k
    if( i_mb_type == I_PCM )
944
0
    {
945
0
        bs_t s;
946
0
        bs_init( &s, cb->p, cb->p_end - cb->p );
947
948
0
        for( int p = 0; p < plane_count; p++ )
949
0
            for( int i = 0; i < 256; i++ )
950
0
                bs_write( &s, BIT_DEPTH, h->mb.pic.p_fenc[p][i] );
951
0
        if( chroma )
952
0
            for( int ch = 1; ch < 3; ch++ )
953
0
                for( int i = 0; i < 16>>CHROMA_V_SHIFT; i++ )
954
0
                    for( int j = 0; j < 8; j++ )
955
0
                        bs_write( &s, BIT_DEPTH, h->mb.pic.p_fenc[ch][i*FENC_STRIDE+j] );
956
957
0
        bs_flush( &s );
958
0
        cb->p = s.p;
959
0
        x264_cabac_encode_init_core( cb );
960
961
0
        h->stat.frame.i_tex_bits += x264_cabac_pos( cb ) - i_mb_pos_tex;
962
0
        return;
963
0
    }
964
21.3k
#endif
965
966
44.5k
    if( i_mb_type != I_16x16 )
967
222
    {
968
222
        cabac_cbp_luma( h, cb );
969
222
        if( chroma )
970
222
            cabac_cbp_chroma( h, cb );
971
222
    }
972
973
44.5k
    if( x264_mb_transform_8x8_allowed( h ) && h->mb.i_cbp_luma )
974
0
    {
975
0
        cabac_transform_size( h, cb );
976
0
    }
977
978
44.5k
    if( h->mb.i_cbp_luma || (chroma && h->mb.i_cbp_chroma) || i_mb_type == I_16x16 )
979
44.5k
    {
980
44.5k
        const int b_intra = IS_INTRA( i_mb_type );
981
44.5k
        cabac_qp_delta( h, cb );
982
983
        /* write residual */
984
44.5k
        if( i_mb_type == I_16x16 )
985
44.3k
        {
986
            /* DC Luma */
987
88.7k
            for( int p = 0; p < plane_count; p++ )
988
44.3k
            {
989
44.3k
                cabac_block_residual_dc_cbf( h, cb, ctx_cat_plane[DCT_LUMA_DC][p], LUMA_DC+p, h->dct.luma16x16_dc[p], 1 );
990
991
                /* AC Luma */
992
44.3k
                if( h->mb.i_cbp_luma )
993
901
                    for( int i = p*16; i < p*16+16; i++ )
994
848
                        cabac_block_residual_cbf( h, cb, ctx_cat_plane[DCT_LUMA_AC][p], i, h->dct.luma4x4[i]+1, 1 );
995
44.3k
            }
996
44.3k
        }
997
222
        else if( h->mb.b_transform_8x8 )
998
0
        {
999
0
            if( plane_count == 3 )
1000
0
            {
1001
0
                ALIGNED_4( uint8_t nnzbak[3][8] );
1002
1003
/* Stupid nnz munging in the case that neighbors don't have
1004
 * 8x8 transform enabled. */
1005
0
#define BACKUP( dst, src, res )\
1006
0
    dst = src;\
1007
0
    src = res;
1008
1009
0
#define RESTORE( dst, src, res )\
1010
0
    src = dst;
1011
1012
0
#define MUNGE_8x8_NNZ( MUNGE )\
1013
0
if( (h->mb.i_neighbour & MB_LEFT) && !h->mb.mb_transform_size[h->mb.i_mb_left_xy[0]] && !(h->mb.cbp[h->mb.i_mb_left_xy[0]] & 0x1000) )\
1014
0
{\
1015
0
    MUNGE( nnzbak[0][0], h->mb.cache.non_zero_count[x264_scan8[16*0+ 0] - 1], 0x00 )\
1016
0
    MUNGE( nnzbak[0][1], h->mb.cache.non_zero_count[x264_scan8[16*0+ 2] - 1], 0x00 )\
1017
0
    MUNGE( nnzbak[1][0], h->mb.cache.non_zero_count[x264_scan8[16*1+ 0] - 1], 0x00 )\
1018
0
    MUNGE( nnzbak[1][1], h->mb.cache.non_zero_count[x264_scan8[16*1+ 2] - 1], 0x00 )\
1019
0
    MUNGE( nnzbak[2][0], h->mb.cache.non_zero_count[x264_scan8[16*2+ 0] - 1], 0x00 )\
1020
0
    MUNGE( nnzbak[2][1], h->mb.cache.non_zero_count[x264_scan8[16*2+ 2] - 1], 0x00 )\
1021
0
}\
1022
0
if( (h->mb.i_neighbour & MB_LEFT) && !h->mb.mb_transform_size[h->mb.i_mb_left_xy[1]] && !(h->mb.cbp[h->mb.i_mb_left_xy[1]] & 0x1000) )\
1023
0
{\
1024
0
    MUNGE( nnzbak[0][2], h->mb.cache.non_zero_count[x264_scan8[16*0+ 8] - 1], 0x00 )\
1025
0
    MUNGE( nnzbak[0][3], h->mb.cache.non_zero_count[x264_scan8[16*0+10] - 1], 0x00 )\
1026
0
    MUNGE( nnzbak[1][2], h->mb.cache.non_zero_count[x264_scan8[16*1+ 8] - 1], 0x00 )\
1027
0
    MUNGE( nnzbak[1][3], h->mb.cache.non_zero_count[x264_scan8[16*1+10] - 1], 0x00 )\
1028
0
    MUNGE( nnzbak[2][2], h->mb.cache.non_zero_count[x264_scan8[16*2+ 8] - 1], 0x00 )\
1029
0
    MUNGE( nnzbak[2][3], h->mb.cache.non_zero_count[x264_scan8[16*2+10] - 1], 0x00 )\
1030
0
}\
1031
0
if( (h->mb.i_neighbour & MB_TOP) && !h->mb.mb_transform_size[h->mb.i_mb_top_xy] && !(h->mb.cbp[h->mb.i_mb_top_xy] & 0x1000) )\
1032
0
{\
1033
0
    MUNGE( M32( &nnzbak[0][4] ), M32( &h->mb.cache.non_zero_count[x264_scan8[16*0] - 8] ), 0x00000000U )\
1034
0
    MUNGE( M32( &nnzbak[1][4] ), M32( &h->mb.cache.non_zero_count[x264_scan8[16*1] - 8] ), 0x00000000U )\
1035
0
    MUNGE( M32( &nnzbak[2][4] ), M32( &h->mb.cache.non_zero_count[x264_scan8[16*2] - 8] ), 0x00000000U )\
1036
0
}
1037
1038
0
                MUNGE_8x8_NNZ( BACKUP )
1039
1040
0
                for( int p = 0; p < 3; p++ )
1041
0
                    FOREACH_BIT( i, 0, h->mb.i_cbp_luma )
1042
0
                        cabac_block_residual_8x8_cbf( h, cb, ctx_cat_plane[DCT_LUMA_8x8][p], i*4+p*16, h->dct.luma8x8[i+p*4], b_intra );
1043
1044
0
                MUNGE_8x8_NNZ( RESTORE )
1045
0
            }
1046
0
            else
1047
0
            {
1048
0
                FOREACH_BIT( i, 0, h->mb.i_cbp_luma )
1049
0
                    cabac_block_residual_8x8( h, cb, DCT_LUMA_8x8, h->dct.luma8x8[i] );
1050
0
            }
1051
0
        }
1052
222
        else
1053
222
        {
1054
444
            for( int p = 0; p < plane_count; p++ )
1055
222
                FOREACH_BIT( i8x8, 0, h->mb.i_cbp_luma )
1056
1.11k
                    for( int i = 0; i < 4; i++ )
1057
888
                        cabac_block_residual_cbf( h, cb, ctx_cat_plane[DCT_LUMA_4x4][p], i+i8x8*4+p*16, h->dct.luma4x4[i+i8x8*4+p*16], b_intra );
1058
222
        }
1059
1060
44.5k
        if( chroma && h->mb.i_cbp_chroma ) /* Chroma DC residual present */
1061
637
        {
1062
637
            if( CHROMA_FORMAT == CHROMA_422 )
1063
0
            {
1064
0
                cabac_block_residual_422_dc_cbf( h, cb, 0, b_intra );
1065
0
                cabac_block_residual_422_dc_cbf( h, cb, 1, b_intra );
1066
0
            }
1067
637
            else
1068
637
            {
1069
637
                cabac_block_residual_dc_cbf( h, cb, DCT_CHROMA_DC, CHROMA_DC+0, h->dct.chroma_dc[0], b_intra );
1070
637
                cabac_block_residual_dc_cbf( h, cb, DCT_CHROMA_DC, CHROMA_DC+1, h->dct.chroma_dc[1], b_intra );
1071
637
            }
1072
1073
637
            if( h->mb.i_cbp_chroma == 2 ) /* Chroma AC residual present */
1074
159
            {
1075
159
                int step = 8 << CHROMA_V_SHIFT;
1076
477
                for( int i = 16; i < 3*16; i += step )
1077
1.59k
                    for( int j = i; j < i+4; j++ )
1078
1.27k
                        cabac_block_residual_cbf( h, cb, DCT_CHROMA_AC, j, h->dct.luma4x4[j]+1, b_intra );
1079
159
            }
1080
637
        }
1081
44.5k
    }
1082
1083
#if !RDO_SKIP_BS
1084
    h->stat.frame.i_tex_bits += x264_cabac_pos( cb ) - i_mb_pos_tex;
1085
#endif
1086
21.3k
}
analyse.c:macroblock_write_cabac_internal
Line
Count
Source
918
23.2k
{
919
23.2k
    const int i_mb_type = h->mb.i_type;
920
921
#if !RDO_SKIP_BS
922
    const int i_mb_pos_start = x264_cabac_pos( cb );
923
    int       i_mb_pos_tex;
924
925
    if( SLICE_MBAFF &&
926
        (!(h->mb.i_mb_y & 1) || IS_SKIP(h->mb.type[h->mb.i_mb_xy - h->mb.i_mb_stride])) )
927
    {
928
        cabac_field_decoding_flag( h, cb );
929
    }
930
#endif
931
932
23.2k
    if( h->sh.i_type == SLICE_TYPE_P )
933
0
        cabac_mb_header_p( h, cb, i_mb_type, chroma );
934
23.2k
    else if( h->sh.i_type == SLICE_TYPE_B )
935
0
        cabac_mb_header_b( h, cb, i_mb_type, chroma );
936
23.2k
    else //if( h->sh.i_type == SLICE_TYPE_I )
937
23.2k
        cabac_mb_header_i( h, cb, i_mb_type, SLICE_TYPE_I, chroma );
938
939
#if !RDO_SKIP_BS
940
    i_mb_pos_tex = x264_cabac_pos( cb );
941
    h->stat.frame.i_mv_bits += i_mb_pos_tex - i_mb_pos_start;
942
943
    if( i_mb_type == I_PCM )
944
    {
945
        bs_t s;
946
        bs_init( &s, cb->p, cb->p_end - cb->p );
947
948
        for( int p = 0; p < plane_count; p++ )
949
            for( int i = 0; i < 256; i++ )
950
                bs_write( &s, BIT_DEPTH, h->mb.pic.p_fenc[p][i] );
951
        if( chroma )
952
            for( int ch = 1; ch < 3; ch++ )
953
                for( int i = 0; i < 16>>CHROMA_V_SHIFT; i++ )
954
                    for( int j = 0; j < 8; j++ )
955
                        bs_write( &s, BIT_DEPTH, h->mb.pic.p_fenc[ch][i*FENC_STRIDE+j] );
956
957
        bs_flush( &s );
958
        cb->p = s.p;
959
        x264_cabac_encode_init_core( cb );
960
961
        h->stat.frame.i_tex_bits += x264_cabac_pos( cb ) - i_mb_pos_tex;
962
        return;
963
    }
964
#endif
965
966
23.2k
    if( i_mb_type != I_16x16 )
967
169
    {
968
169
        cabac_cbp_luma( h, cb );
969
169
        if( chroma )
970
169
            cabac_cbp_chroma( h, cb );
971
169
    }
972
973
23.2k
    if( x264_mb_transform_8x8_allowed( h ) && h->mb.i_cbp_luma )
974
0
    {
975
0
        cabac_transform_size( h, cb );
976
0
    }
977
978
23.2k
    if( h->mb.i_cbp_luma || (chroma && h->mb.i_cbp_chroma) || i_mb_type == I_16x16 )
979
23.2k
    {
980
23.2k
        const int b_intra = IS_INTRA( i_mb_type );
981
23.2k
        cabac_qp_delta( h, cb );
982
983
        /* write residual */
984
23.2k
        if( i_mb_type == I_16x16 )
985
23.0k
        {
986
            /* DC Luma */
987
46.1k
            for( int p = 0; p < plane_count; p++ )
988
23.0k
            {
989
23.0k
                cabac_block_residual_dc_cbf( h, cb, ctx_cat_plane[DCT_LUMA_DC][p], LUMA_DC+p, h->dct.luma16x16_dc[p], 1 );
990
991
                /* AC Luma */
992
23.0k
                if( h->mb.i_cbp_luma )
993
901
                    for( int i = p*16; i < p*16+16; i++ )
994
848
                        cabac_block_residual_cbf( h, cb, ctx_cat_plane[DCT_LUMA_AC][p], i, h->dct.luma4x4[i]+1, 1 );
995
23.0k
            }
996
23.0k
        }
997
169
        else if( h->mb.b_transform_8x8 )
998
0
        {
999
0
            if( plane_count == 3 )
1000
0
            {
1001
0
                ALIGNED_4( uint8_t nnzbak[3][8] );
1002
1003
/* Stupid nnz munging in the case that neighbors don't have
1004
 * 8x8 transform enabled. */
1005
0
#define BACKUP( dst, src, res )\
1006
0
    dst = src;\
1007
0
    src = res;
1008
1009
0
#define RESTORE( dst, src, res )\
1010
0
    src = dst;
1011
1012
0
#define MUNGE_8x8_NNZ( MUNGE )\
1013
0
if( (h->mb.i_neighbour & MB_LEFT) && !h->mb.mb_transform_size[h->mb.i_mb_left_xy[0]] && !(h->mb.cbp[h->mb.i_mb_left_xy[0]] & 0x1000) )\
1014
0
{\
1015
0
    MUNGE( nnzbak[0][0], h->mb.cache.non_zero_count[x264_scan8[16*0+ 0] - 1], 0x00 )\
1016
0
    MUNGE( nnzbak[0][1], h->mb.cache.non_zero_count[x264_scan8[16*0+ 2] - 1], 0x00 )\
1017
0
    MUNGE( nnzbak[1][0], h->mb.cache.non_zero_count[x264_scan8[16*1+ 0] - 1], 0x00 )\
1018
0
    MUNGE( nnzbak[1][1], h->mb.cache.non_zero_count[x264_scan8[16*1+ 2] - 1], 0x00 )\
1019
0
    MUNGE( nnzbak[2][0], h->mb.cache.non_zero_count[x264_scan8[16*2+ 0] - 1], 0x00 )\
1020
0
    MUNGE( nnzbak[2][1], h->mb.cache.non_zero_count[x264_scan8[16*2+ 2] - 1], 0x00 )\
1021
0
}\
1022
0
if( (h->mb.i_neighbour & MB_LEFT) && !h->mb.mb_transform_size[h->mb.i_mb_left_xy[1]] && !(h->mb.cbp[h->mb.i_mb_left_xy[1]] & 0x1000) )\
1023
0
{\
1024
0
    MUNGE( nnzbak[0][2], h->mb.cache.non_zero_count[x264_scan8[16*0+ 8] - 1], 0x00 )\
1025
0
    MUNGE( nnzbak[0][3], h->mb.cache.non_zero_count[x264_scan8[16*0+10] - 1], 0x00 )\
1026
0
    MUNGE( nnzbak[1][2], h->mb.cache.non_zero_count[x264_scan8[16*1+ 8] - 1], 0x00 )\
1027
0
    MUNGE( nnzbak[1][3], h->mb.cache.non_zero_count[x264_scan8[16*1+10] - 1], 0x00 )\
1028
0
    MUNGE( nnzbak[2][2], h->mb.cache.non_zero_count[x264_scan8[16*2+ 8] - 1], 0x00 )\
1029
0
    MUNGE( nnzbak[2][3], h->mb.cache.non_zero_count[x264_scan8[16*2+10] - 1], 0x00 )\
1030
0
}\
1031
0
if( (h->mb.i_neighbour & MB_TOP) && !h->mb.mb_transform_size[h->mb.i_mb_top_xy] && !(h->mb.cbp[h->mb.i_mb_top_xy] & 0x1000) )\
1032
0
{\
1033
0
    MUNGE( M32( &nnzbak[0][4] ), M32( &h->mb.cache.non_zero_count[x264_scan8[16*0] - 8] ), 0x00000000U )\
1034
0
    MUNGE( M32( &nnzbak[1][4] ), M32( &h->mb.cache.non_zero_count[x264_scan8[16*1] - 8] ), 0x00000000U )\
1035
0
    MUNGE( M32( &nnzbak[2][4] ), M32( &h->mb.cache.non_zero_count[x264_scan8[16*2] - 8] ), 0x00000000U )\
1036
0
}
1037
1038
0
                MUNGE_8x8_NNZ( BACKUP )
1039
1040
0
                for( int p = 0; p < 3; p++ )
1041
0
                    FOREACH_BIT( i, 0, h->mb.i_cbp_luma )
1042
0
                        cabac_block_residual_8x8_cbf( h, cb, ctx_cat_plane[DCT_LUMA_8x8][p], i*4+p*16, h->dct.luma8x8[i+p*4], b_intra );
1043
1044
0
                MUNGE_8x8_NNZ( RESTORE )
1045
0
            }
1046
0
            else
1047
0
            {
1048
0
                FOREACH_BIT( i, 0, h->mb.i_cbp_luma )
1049
0
                    cabac_block_residual_8x8( h, cb, DCT_LUMA_8x8, h->dct.luma8x8[i] );
1050
0
            }
1051
0
        }
1052
169
        else
1053
169
        {
1054
338
            for( int p = 0; p < plane_count; p++ )
1055
169
                FOREACH_BIT( i8x8, 0, h->mb.i_cbp_luma )
1056
845
                    for( int i = 0; i < 4; i++ )
1057
676
                        cabac_block_residual_cbf( h, cb, ctx_cat_plane[DCT_LUMA_4x4][p], i+i8x8*4+p*16, h->dct.luma4x4[i+i8x8*4+p*16], b_intra );
1058
169
        }
1059
1060
23.2k
        if( chroma && h->mb.i_cbp_chroma ) /* Chroma DC residual present */
1061
416
        {
1062
416
            if( CHROMA_FORMAT == CHROMA_422 )
1063
0
            {
1064
0
                cabac_block_residual_422_dc_cbf( h, cb, 0, b_intra );
1065
0
                cabac_block_residual_422_dc_cbf( h, cb, 1, b_intra );
1066
0
            }
1067
416
            else
1068
416
            {
1069
416
                cabac_block_residual_dc_cbf( h, cb, DCT_CHROMA_DC, CHROMA_DC+0, h->dct.chroma_dc[0], b_intra );
1070
416
                cabac_block_residual_dc_cbf( h, cb, DCT_CHROMA_DC, CHROMA_DC+1, h->dct.chroma_dc[1], b_intra );
1071
416
            }
1072
1073
416
            if( h->mb.i_cbp_chroma == 2 ) /* Chroma AC residual present */
1074
106
            {
1075
106
                int step = 8 << CHROMA_V_SHIFT;
1076
318
                for( int i = 16; i < 3*16; i += step )
1077
1.06k
                    for( int j = i; j < i+4; j++ )
1078
848
                        cabac_block_residual_cbf( h, cb, DCT_CHROMA_AC, j, h->dct.luma4x4[j]+1, b_intra );
1079
106
            }
1080
416
        }
1081
23.2k
    }
1082
1083
#if !RDO_SKIP_BS
1084
    h->stat.frame.i_tex_bits += x264_cabac_pos( cb ) - i_mb_pos_tex;
1085
#endif
1086
23.2k
}
cabac.c:macroblock_write_cabac_internal
Line
Count
Source
918
21.3k
{
919
21.3k
    const int i_mb_type = h->mb.i_type;
920
921
21.3k
#if !RDO_SKIP_BS
922
21.3k
    const int i_mb_pos_start = x264_cabac_pos( cb );
923
21.3k
    int       i_mb_pos_tex;
924
925
21.3k
    if( SLICE_MBAFF &&
926
0
        (!(h->mb.i_mb_y & 1) || IS_SKIP(h->mb.type[h->mb.i_mb_xy - h->mb.i_mb_stride])) )
927
0
    {
928
0
        cabac_field_decoding_flag( h, cb );
929
0
    }
930
21.3k
#endif
931
932
21.3k
    if( h->sh.i_type == SLICE_TYPE_P )
933
0
        cabac_mb_header_p( h, cb, i_mb_type, chroma );
934
21.3k
    else if( h->sh.i_type == SLICE_TYPE_B )
935
0
        cabac_mb_header_b( h, cb, i_mb_type, chroma );
936
21.3k
    else //if( h->sh.i_type == SLICE_TYPE_I )
937
21.3k
        cabac_mb_header_i( h, cb, i_mb_type, SLICE_TYPE_I, chroma );
938
939
21.3k
#if !RDO_SKIP_BS
940
21.3k
    i_mb_pos_tex = x264_cabac_pos( cb );
941
21.3k
    h->stat.frame.i_mv_bits += i_mb_pos_tex - i_mb_pos_start;
942
943
21.3k
    if( i_mb_type == I_PCM )
944
0
    {
945
0
        bs_t s;
946
0
        bs_init( &s, cb->p, cb->p_end - cb->p );
947
948
0
        for( int p = 0; p < plane_count; p++ )
949
0
            for( int i = 0; i < 256; i++ )
950
0
                bs_write( &s, BIT_DEPTH, h->mb.pic.p_fenc[p][i] );
951
0
        if( chroma )
952
0
            for( int ch = 1; ch < 3; ch++ )
953
0
                for( int i = 0; i < 16>>CHROMA_V_SHIFT; i++ )
954
0
                    for( int j = 0; j < 8; j++ )
955
0
                        bs_write( &s, BIT_DEPTH, h->mb.pic.p_fenc[ch][i*FENC_STRIDE+j] );
956
957
0
        bs_flush( &s );
958
0
        cb->p = s.p;
959
0
        x264_cabac_encode_init_core( cb );
960
961
0
        h->stat.frame.i_tex_bits += x264_cabac_pos( cb ) - i_mb_pos_tex;
962
0
        return;
963
0
    }
964
21.3k
#endif
965
966
21.3k
    if( i_mb_type != I_16x16 )
967
53
    {
968
53
        cabac_cbp_luma( h, cb );
969
53
        if( chroma )
970
53
            cabac_cbp_chroma( h, cb );
971
53
    }
972
973
21.3k
    if( x264_mb_transform_8x8_allowed( h ) && h->mb.i_cbp_luma )
974
0
    {
975
0
        cabac_transform_size( h, cb );
976
0
    }
977
978
21.3k
    if( h->mb.i_cbp_luma || (chroma && h->mb.i_cbp_chroma) || i_mb_type == I_16x16 )
979
21.3k
    {
980
21.3k
        const int b_intra = IS_INTRA( i_mb_type );
981
21.3k
        cabac_qp_delta( h, cb );
982
983
        /* write residual */
984
21.3k
        if( i_mb_type == I_16x16 )
985
21.3k
        {
986
            /* DC Luma */
987
42.6k
            for( int p = 0; p < plane_count; p++ )
988
21.3k
            {
989
21.3k
                cabac_block_residual_dc_cbf( h, cb, ctx_cat_plane[DCT_LUMA_DC][p], LUMA_DC+p, h->dct.luma16x16_dc[p], 1 );
990
991
                /* AC Luma */
992
21.3k
                if( h->mb.i_cbp_luma )
993
0
                    for( int i = p*16; i < p*16+16; i++ )
994
0
                        cabac_block_residual_cbf( h, cb, ctx_cat_plane[DCT_LUMA_AC][p], i, h->dct.luma4x4[i]+1, 1 );
995
21.3k
            }
996
21.3k
        }
997
53
        else if( h->mb.b_transform_8x8 )
998
0
        {
999
0
            if( plane_count == 3 )
1000
0
            {
1001
0
                ALIGNED_4( uint8_t nnzbak[3][8] );
1002
1003
/* Stupid nnz munging in the case that neighbors don't have
1004
 * 8x8 transform enabled. */
1005
0
#define BACKUP( dst, src, res )\
1006
0
    dst = src;\
1007
0
    src = res;
1008
1009
0
#define RESTORE( dst, src, res )\
1010
0
    src = dst;
1011
1012
0
#define MUNGE_8x8_NNZ( MUNGE )\
1013
0
if( (h->mb.i_neighbour & MB_LEFT) && !h->mb.mb_transform_size[h->mb.i_mb_left_xy[0]] && !(h->mb.cbp[h->mb.i_mb_left_xy[0]] & 0x1000) )\
1014
0
{\
1015
0
    MUNGE( nnzbak[0][0], h->mb.cache.non_zero_count[x264_scan8[16*0+ 0] - 1], 0x00 )\
1016
0
    MUNGE( nnzbak[0][1], h->mb.cache.non_zero_count[x264_scan8[16*0+ 2] - 1], 0x00 )\
1017
0
    MUNGE( nnzbak[1][0], h->mb.cache.non_zero_count[x264_scan8[16*1+ 0] - 1], 0x00 )\
1018
0
    MUNGE( nnzbak[1][1], h->mb.cache.non_zero_count[x264_scan8[16*1+ 2] - 1], 0x00 )\
1019
0
    MUNGE( nnzbak[2][0], h->mb.cache.non_zero_count[x264_scan8[16*2+ 0] - 1], 0x00 )\
1020
0
    MUNGE( nnzbak[2][1], h->mb.cache.non_zero_count[x264_scan8[16*2+ 2] - 1], 0x00 )\
1021
0
}\
1022
0
if( (h->mb.i_neighbour & MB_LEFT) && !h->mb.mb_transform_size[h->mb.i_mb_left_xy[1]] && !(h->mb.cbp[h->mb.i_mb_left_xy[1]] & 0x1000) )\
1023
0
{\
1024
0
    MUNGE( nnzbak[0][2], h->mb.cache.non_zero_count[x264_scan8[16*0+ 8] - 1], 0x00 )\
1025
0
    MUNGE( nnzbak[0][3], h->mb.cache.non_zero_count[x264_scan8[16*0+10] - 1], 0x00 )\
1026
0
    MUNGE( nnzbak[1][2], h->mb.cache.non_zero_count[x264_scan8[16*1+ 8] - 1], 0x00 )\
1027
0
    MUNGE( nnzbak[1][3], h->mb.cache.non_zero_count[x264_scan8[16*1+10] - 1], 0x00 )\
1028
0
    MUNGE( nnzbak[2][2], h->mb.cache.non_zero_count[x264_scan8[16*2+ 8] - 1], 0x00 )\
1029
0
    MUNGE( nnzbak[2][3], h->mb.cache.non_zero_count[x264_scan8[16*2+10] - 1], 0x00 )\
1030
0
}\
1031
0
if( (h->mb.i_neighbour & MB_TOP) && !h->mb.mb_transform_size[h->mb.i_mb_top_xy] && !(h->mb.cbp[h->mb.i_mb_top_xy] & 0x1000) )\
1032
0
{\
1033
0
    MUNGE( M32( &nnzbak[0][4] ), M32( &h->mb.cache.non_zero_count[x264_scan8[16*0] - 8] ), 0x00000000U )\
1034
0
    MUNGE( M32( &nnzbak[1][4] ), M32( &h->mb.cache.non_zero_count[x264_scan8[16*1] - 8] ), 0x00000000U )\
1035
0
    MUNGE( M32( &nnzbak[2][4] ), M32( &h->mb.cache.non_zero_count[x264_scan8[16*2] - 8] ), 0x00000000U )\
1036
0
}
1037
1038
0
                MUNGE_8x8_NNZ( BACKUP )
1039
1040
0
                for( int p = 0; p < 3; p++ )
1041
0
                    FOREACH_BIT( i, 0, h->mb.i_cbp_luma )
1042
0
                        cabac_block_residual_8x8_cbf( h, cb, ctx_cat_plane[DCT_LUMA_8x8][p], i*4+p*16, h->dct.luma8x8[i+p*4], b_intra );
1043
1044
0
                MUNGE_8x8_NNZ( RESTORE )
1045
0
            }
1046
0
            else
1047
0
            {
1048
0
                FOREACH_BIT( i, 0, h->mb.i_cbp_luma )
1049
0
                    cabac_block_residual_8x8( h, cb, DCT_LUMA_8x8, h->dct.luma8x8[i] );
1050
0
            }
1051
0
        }
1052
53
        else
1053
53
        {
1054
106
            for( int p = 0; p < plane_count; p++ )
1055
53
                FOREACH_BIT( i8x8, 0, h->mb.i_cbp_luma )
1056
265
                    for( int i = 0; i < 4; i++ )
1057
212
                        cabac_block_residual_cbf( h, cb, ctx_cat_plane[DCT_LUMA_4x4][p], i+i8x8*4+p*16, h->dct.luma4x4[i+i8x8*4+p*16], b_intra );
1058
53
        }
1059
1060
21.3k
        if( chroma && h->mb.i_cbp_chroma ) /* Chroma DC residual present */
1061
221
        {
1062
221
            if( CHROMA_FORMAT == CHROMA_422 )
1063
0
            {
1064
0
                cabac_block_residual_422_dc_cbf( h, cb, 0, b_intra );
1065
0
                cabac_block_residual_422_dc_cbf( h, cb, 1, b_intra );
1066
0
            }
1067
221
            else
1068
221
            {
1069
221
                cabac_block_residual_dc_cbf( h, cb, DCT_CHROMA_DC, CHROMA_DC+0, h->dct.chroma_dc[0], b_intra );
1070
221
                cabac_block_residual_dc_cbf( h, cb, DCT_CHROMA_DC, CHROMA_DC+1, h->dct.chroma_dc[1], b_intra );
1071
221
            }
1072
1073
221
            if( h->mb.i_cbp_chroma == 2 ) /* Chroma AC residual present */
1074
53
            {
1075
53
                int step = 8 << CHROMA_V_SHIFT;
1076
159
                for( int i = 16; i < 3*16; i += step )
1077
530
                    for( int j = i; j < i+4; j++ )
1078
424
                        cabac_block_residual_cbf( h, cb, DCT_CHROMA_AC, j, h->dct.luma4x4[j]+1, b_intra );
1079
53
            }
1080
221
        }
1081
21.3k
    }
1082
1083
21.3k
#if !RDO_SKIP_BS
1084
21.3k
    h->stat.frame.i_tex_bits += x264_cabac_pos( cb ) - i_mb_pos_tex;
1085
21.3k
#endif
1086
21.3k
}
1087
1088
void x264_macroblock_write_cabac( x264_t *h, x264_cabac_t *cb )
1089
44.5k
{
1090
44.5k
    if( CHROMA444 )
1091
0
        macroblock_write_cabac_internal( h, cb, 3, 0 );
1092
44.5k
    else if( CHROMA_FORMAT )
1093
44.5k
        macroblock_write_cabac_internal( h, cb, 1, 1 );
1094
0
    else
1095
0
        macroblock_write_cabac_internal( h, cb, 1, 0 );
1096
44.5k
}
analyse.c:macroblock_size_cabac
Line
Count
Source
1089
23.2k
{
1090
23.2k
    if( CHROMA444 )
1091
0
        macroblock_write_cabac_internal( h, cb, 3, 0 );
1092
23.2k
    else if( CHROMA_FORMAT )
1093
23.2k
        macroblock_write_cabac_internal( h, cb, 1, 1 );
1094
0
    else
1095
0
        macroblock_write_cabac_internal( h, cb, 1, 0 );
1096
23.2k
}
x264_8_macroblock_write_cabac
Line
Count
Source
1089
21.3k
{
1090
21.3k
    if( CHROMA444 )
1091
0
        macroblock_write_cabac_internal( h, cb, 3, 0 );
1092
21.3k
    else if( CHROMA_FORMAT )
1093
21.3k
        macroblock_write_cabac_internal( h, cb, 1, 1 );
1094
0
    else
1095
0
        macroblock_write_cabac_internal( h, cb, 1, 0 );
1096
21.3k
}
Unexecuted instantiation: x264_10_macroblock_write_cabac
1097
1098
#if RDO_SKIP_BS
1099
/*****************************************************************************
1100
 * RD only; doesn't generate a valid bitstream
1101
 * doesn't write cbp or chroma dc (I don't know how much this matters)
1102
 * doesn't write ref (never varies between calls, so no point in doing so)
1103
 * only writes subpartition for p8x8, needed for sub-8x8 mode decision RDO
1104
 * works on all partition sizes except 16x16
1105
 *****************************************************************************/
1106
static void partition_size_cabac( x264_t *h, x264_cabac_t *cb, int i8, int i_pixel )
1107
0
{
1108
0
    const int i_mb_type = h->mb.i_type;
1109
0
    int b_8x16 = h->mb.i_partition == D_8x16;
1110
0
    int plane_count = CHROMA444 ? 3 : 1;
1111
1112
0
    if( i_mb_type == P_8x8 )
1113
0
    {
1114
0
        cabac_8x8_mvd( h, cb, i8 );
1115
0
        cabac_subpartition_p( cb, h->mb.i_sub_partition[i8] );
1116
0
    }
1117
0
    else if( i_mb_type == P_L0 )
1118
0
        cabac_mvd( h, cb, 0, 4*i8, 4>>b_8x16, 2<<b_8x16 );
1119
0
    else if( i_mb_type > B_DIRECT && i_mb_type < B_8x8 )
1120
0
    {
1121
0
        if( x264_mb_type_list_table[ i_mb_type ][0][!!i8] ) cabac_mvd( h, cb, 0, 4*i8, 4>>b_8x16, 2<<b_8x16 );
1122
0
        if( x264_mb_type_list_table[ i_mb_type ][1][!!i8] ) cabac_mvd( h, cb, 1, 4*i8, 4>>b_8x16, 2<<b_8x16 );
1123
0
    }
1124
0
    else //if( i_mb_type == B_8x8 )
1125
0
    {
1126
0
        if( x264_mb_partition_listX_table[0][ h->mb.i_sub_partition[i8] ] )
1127
0
            cabac_mvd( h, cb, 0, 4*i8, 2, 2 );
1128
0
        if( x264_mb_partition_listX_table[1][ h->mb.i_sub_partition[i8] ] )
1129
0
            cabac_mvd( h, cb, 1, 4*i8, 2, 2 );
1130
0
    }
1131
1132
0
    for( int j = (i_pixel < PIXEL_8x8); j >= 0; j-- )
1133
0
    {
1134
0
        if( h->mb.i_cbp_luma & (1 << i8) )
1135
0
        {
1136
0
            if( h->mb.b_transform_8x8 )
1137
0
            {
1138
0
                if( CHROMA444 )
1139
0
                    for( int p = 0; p < 3; p++ )
1140
0
                        cabac_block_residual_8x8_cbf( h, cb, ctx_cat_plane[DCT_LUMA_8x8][p], i8*4+p*16, h->dct.luma8x8[i8+p*4], 0 );
1141
0
                else
1142
0
                    cabac_block_residual_8x8( h, cb, DCT_LUMA_8x8, h->dct.luma8x8[i8] );
1143
0
            }
1144
0
            else
1145
0
                for( int p = 0; p < plane_count; p++ )
1146
0
                    for( int i4 = 0; i4 < 4; i4++ )
1147
0
                        cabac_block_residual_cbf( h, cb, ctx_cat_plane[DCT_LUMA_4x4][p], i4+i8*4+p*16, h->dct.luma4x4[i4+i8*4+p*16], 0 );
1148
0
        }
1149
1150
0
        if( h->mb.i_cbp_chroma )
1151
0
        {
1152
0
            if( CHROMA_FORMAT == CHROMA_422 )
1153
0
            {
1154
0
                int offset = (5*i8) & 0x09;
1155
0
                cabac_block_residual_cbf( h, cb, DCT_CHROMA_AC, 16+offset, h->dct.luma4x4[16+offset]+1, 0 );
1156
0
                cabac_block_residual_cbf( h, cb, DCT_CHROMA_AC, 18+offset, h->dct.luma4x4[18+offset]+1, 0 );
1157
0
                cabac_block_residual_cbf( h, cb, DCT_CHROMA_AC, 32+offset, h->dct.luma4x4[32+offset]+1, 0 );
1158
0
                cabac_block_residual_cbf( h, cb, DCT_CHROMA_AC, 34+offset, h->dct.luma4x4[34+offset]+1, 0 );
1159
0
            }
1160
0
            else
1161
0
            {
1162
0
                cabac_block_residual_cbf( h, cb, DCT_CHROMA_AC, 16+i8, h->dct.luma4x4[16+i8]+1, 0 );
1163
0
                cabac_block_residual_cbf( h, cb, DCT_CHROMA_AC, 32+i8, h->dct.luma4x4[32+i8]+1, 0 );
1164
0
            }
1165
0
        }
1166
1167
0
        i8 += x264_pixel_size[i_pixel].h >> 3;
1168
0
    }
1169
0
}
1170
1171
static void subpartition_size_cabac( x264_t *h, x264_cabac_t *cb, int i4, int i_pixel )
1172
0
{
1173
0
    int b_8x4 = i_pixel == PIXEL_8x4;
1174
0
    int plane_count = CHROMA444 ? 3 : 1;
1175
0
    if( i_pixel == PIXEL_4x4 )
1176
0
        cabac_mvd( h, cb, 0, i4, 1, 1 );
1177
0
    else
1178
0
        cabac_mvd( h, cb, 0, i4, 1+b_8x4, 2-b_8x4 );
1179
0
    for( int p = 0; p < plane_count; p++ )
1180
0
    {
1181
0
        cabac_block_residual_cbf( h, cb, ctx_cat_plane[DCT_LUMA_4x4][p], p*16+i4, h->dct.luma4x4[p*16+i4], 0 );
1182
0
        if( i_pixel != PIXEL_4x4 )
1183
0
            cabac_block_residual_cbf( h, cb, ctx_cat_plane[DCT_LUMA_4x4][p], p*16+i4+2-b_8x4, h->dct.luma4x4[p*16+i4+2-b_8x4], 0 );
1184
0
    }
1185
0
}
1186
1187
static void partition_i8x8_size_cabac( x264_t *h, x264_cabac_t *cb, int i8, int i_mode )
1188
0
{
1189
0
    const int i_pred = x264_mb_predict_intra4x4_mode( h, 4*i8 );
1190
0
    i_mode = x264_mb_pred_mode4x4_fix( i_mode );
1191
0
    cabac_intra4x4_pred_mode( cb, i_pred, i_mode );
1192
0
    cabac_cbp_luma( h, cb );
1193
0
    if( h->mb.i_cbp_luma & (1 << i8) )
1194
0
    {
1195
0
        if( CHROMA444 )
1196
0
            for( int p = 0; p < 3; p++ )
1197
0
                cabac_block_residual_8x8_cbf( h, cb, ctx_cat_plane[DCT_LUMA_8x8][p], i8*4+p*16, h->dct.luma8x8[i8+p*4], 1 );
1198
0
        else
1199
0
            cabac_block_residual_8x8( h, cb, DCT_LUMA_8x8, h->dct.luma8x8[i8] );
1200
0
    }
1201
0
}
1202
1203
static void partition_i4x4_size_cabac( x264_t *h, x264_cabac_t *cb, int i4, int i_mode )
1204
5.45k
{
1205
5.45k
    const int i_pred = x264_mb_predict_intra4x4_mode( h, i4 );
1206
5.45k
    int plane_count = CHROMA444 ? 3 : 1;
1207
5.45k
    i_mode = x264_mb_pred_mode4x4_fix( i_mode );
1208
5.45k
    cabac_intra4x4_pred_mode( cb, i_pred, i_mode );
1209
10.9k
    for( int p = 0; p < plane_count; p++ )
1210
5.45k
        cabac_block_residual_cbf( h, cb, ctx_cat_plane[DCT_LUMA_4x4][p], i4+p*16, h->dct.luma4x4[i4+p*16], 1 );
1211
5.45k
}
1212
1213
static void chroma_size_cabac( x264_t *h, x264_cabac_t *cb )
1214
104
{
1215
104
    cabac_intra_chroma_pred_mode( h, cb );
1216
104
    cabac_cbp_chroma( h, cb );
1217
104
    if( h->mb.i_cbp_chroma )
1218
104
    {
1219
104
        if( CHROMA_FORMAT == CHROMA_422 )
1220
0
        {
1221
0
            cabac_block_residual_422_dc_cbf( h, cb, 0, 1 );
1222
0
            cabac_block_residual_422_dc_cbf( h, cb, 1, 1 );
1223
0
        }
1224
104
        else
1225
104
        {
1226
104
            cabac_block_residual_dc_cbf( h, cb, DCT_CHROMA_DC, CHROMA_DC+0, h->dct.chroma_dc[0], 1 );
1227
104
            cabac_block_residual_dc_cbf( h, cb, DCT_CHROMA_DC, CHROMA_DC+1, h->dct.chroma_dc[1], 1 );
1228
104
        }
1229
1230
104
        if( h->mb.i_cbp_chroma == 2 )
1231
0
        {
1232
0
            int step = 8 << CHROMA_V_SHIFT;
1233
0
            for( int i = 16; i < 3*16; i += step )
1234
0
                for( int j = i; j < i+4; j++ )
1235
0
                    cabac_block_residual_cbf( h, cb, DCT_CHROMA_AC, j, h->dct.luma4x4[j]+1, 1 );
1236
0
        }
1237
104
    }
1238
104
}
1239
#endif