FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/cbs_h264_syntax_template.c
Date: 2024-03-28 14:59:00
Exec Total Coverage
Lines: 484 693 69.8%
Functions: 49 60 81.7%
Branches: 497 1102 45.1%

Line Branch Exec Source
1 /*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19 11258 static int FUNC(rbsp_trailing_bits)(CodedBitstreamContext *ctx, RWContext *rw)
20 {
21 int err;
22
23
2/2
✓ Branch 1 taken 1 times.
✓ Branch 2 taken 5628 times.
11258 fixed(1, rbsp_stop_one_bit, 1);
24
2/2
✓ Branch 1 taken 24705 times.
✓ Branch 2 taken 5628 times.
60666 while (byte_alignment(rw) != 0)
25
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24705 times.
49410 fixed(1, rbsp_alignment_zero_bit, 0);
26
27 11256 return 0;
28 }
29
30 34366 static int FUNC(nal_unit_header)(CodedBitstreamContext *ctx, RWContext *rw,
31 H264RawNALUnitHeader *current,
32 uint32_t valid_type_mask)
33 {
34 int err;
35
36
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 17183 times.
34366 fixed(1, forbidden_zero_bit, 0);
37
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 17183 times.
34366 ub(2, nal_ref_idc);
38
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 17183 times.
34366 ub(5, nal_unit_type);
39
40
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 17183 times.
34366 if (!(1 << current->nal_unit_type & valid_type_mask)) {
41 av_log(ctx->log_ctx, AV_LOG_ERROR, "Invalid NAL unit type %d.\n",
42 current->nal_unit_type);
43 return AVERROR_INVALIDDATA;
44 }
45
46
1/2
✓ Branch 0 taken 17183 times.
✗ Branch 1 not taken.
34366 if (current->nal_unit_type == 14 ||
47
1/2
✓ Branch 0 taken 17183 times.
✗ Branch 1 not taken.
34366 current->nal_unit_type == 20 ||
48
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 17183 times.
34366 current->nal_unit_type == 21) {
49 if (current->nal_unit_type != 21)
50 flag(svc_extension_flag);
51 else
52 flag(avc_3d_extension_flag);
53
54 if (current->svc_extension_flag) {
55 av_log(ctx->log_ctx, AV_LOG_ERROR, "SVC not supported.\n");
56 return AVERROR_PATCHWELCOME;
57
58 } else if (current->avc_3d_extension_flag) {
59 av_log(ctx->log_ctx, AV_LOG_ERROR, "3DAVC not supported.\n");
60 return AVERROR_PATCHWELCOME;
61
62 } else {
63 av_log(ctx->log_ctx, AV_LOG_ERROR, "MVC not supported.\n");
64 return AVERROR_PATCHWELCOME;
65 }
66 }
67
68 34366 return 0;
69 }
70
71 static int FUNC(scaling_list)(CodedBitstreamContext *ctx, RWContext *rw,
72 H264RawScalingList *current,
73 int size_of_scaling_list)
74 {
75 int err, i, scale;
76
77 scale = 8;
78 for (i = 0; i < size_of_scaling_list; i++) {
79 ses(delta_scale[i], -128, +127, 1, i);
80 scale = (scale + current->delta_scale[i] + 256) % 256;
81 if (scale == 0)
82 break;
83 }
84
85 return 0;
86 }
87
88 48 static int FUNC(hrd_parameters)(CodedBitstreamContext *ctx, RWContext *rw,
89 H264RawHRD *current)
90 {
91 int err, i;
92
93
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(cpb_cnt_minus1, 0, 31);
94
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ub(4, bit_rate_scale);
95
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ub(4, cpb_size_scale);
96
97
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 24 times.
96 for (i = 0; i <= current->cpb_cnt_minus1; i++) {
98
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ues(bit_rate_value_minus1[i], 0, UINT32_MAX - 1, 1, i);
99
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ues(cpb_size_value_minus1[i], 0, UINT32_MAX - 1, 1, i);
100
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 flags(cbr_flag[i], 1, i);
101 }
102
103
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ub(5, initial_cpb_removal_delay_length_minus1);
104
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ub(5, cpb_removal_delay_length_minus1);
105
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ub(5, dpb_output_delay_length_minus1);
106
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ub(5, time_offset_length);
107
108 48 return 0;
109 }
110
111 64 static int FUNC(vui_parameters)(CodedBitstreamContext *ctx, RWContext *rw,
112 H264RawVUI *current, H264RawSPS *sps)
113 {
114 int err;
115
116
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 flag(aspect_ratio_info_present_flag);
117
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 8 times.
64 if (current->aspect_ratio_info_present_flag) {
118
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ub(8, aspect_ratio_idc);
119
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 24 times.
48 if (current->aspect_ratio_idc == 255) {
120 ub(16, sar_width);
121 ub(16, sar_height);
122 }
123 } else {
124
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
16 infer(aspect_ratio_idc, 0);
125 }
126
127
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 flag(overscan_info_present_flag);
128
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 28 times.
64 if (current->overscan_info_present_flag)
129
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 4 times.
8 flag(overscan_appropriate_flag);
130
131
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 flag(video_signal_type_present_flag);
132
2/2
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 20 times.
64 if (current->video_signal_type_present_flag) {
133
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 12 times.
24 ub(3, video_format);
134
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 12 times.
24 flag(video_full_range_flag);
135
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 12 times.
24 flag(colour_description_present_flag);
136
1/2
✓ Branch 0 taken 12 times.
✗ Branch 1 not taken.
24 if (current->colour_description_present_flag) {
137
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 12 times.
24 ub(8, colour_primaries);
138
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 12 times.
24 ub(8, transfer_characteristics);
139
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 12 times.
24 ub(8, matrix_coefficients);
140 } else {
141 infer(colour_primaries, 2);
142 infer(transfer_characteristics, 2);
143 infer(matrix_coefficients, 2);
144 }
145 } else {
146
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 10 times.
40 infer(video_format, 5);
147
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 10 times.
40 infer(video_full_range_flag, 0);
148
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 10 times.
40 infer(colour_primaries, 2);
149
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 10 times.
40 infer(transfer_characteristics, 2);
150
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 10 times.
40 infer(matrix_coefficients, 2);
151 }
152
153
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 flag(chroma_loc_info_present_flag);
154
2/2
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 24 times.
64 if (current->chroma_loc_info_present_flag) {
155
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 ue(chroma_sample_loc_type_top_field, 0, 5);
156
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 ue(chroma_sample_loc_type_bottom_field, 0, 5);
157 } else {
158
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 12 times.
48 infer(chroma_sample_loc_type_top_field, 0);
159
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 12 times.
48 infer(chroma_sample_loc_type_bottom_field, 0);
160 }
161
162
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 flag(timing_info_present_flag);
163
2/2
✓ Branch 0 taken 28 times.
✓ Branch 1 taken 4 times.
64 if (current->timing_info_present_flag) {
164
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 28 times.
56 u(32, num_units_in_tick, 1, UINT32_MAX);
165
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 28 times.
56 u(32, time_scale, 1, UINT32_MAX);
166
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 28 times.
56 flag(fixed_frame_rate_flag);
167 } else {
168
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
8 infer(fixed_frame_rate_flag, 0);
169 }
170
171
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 flag(nal_hrd_parameters_present_flag);
172
2/2
✓ Branch 0 taken 20 times.
✓ Branch 1 taken 12 times.
64 if (current->nal_hrd_parameters_present_flag)
173
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 20 times.
40 CHECK(FUNC(hrd_parameters)(ctx, rw, &current->nal_hrd_parameters));
174
175
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 flag(vcl_hrd_parameters_present_flag);
176
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 28 times.
64 if (current->vcl_hrd_parameters_present_flag)
177
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 4 times.
8 CHECK(FUNC(hrd_parameters)(ctx, rw, &current->vcl_hrd_parameters));
178
179
2/2
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 20 times.
64 if (current->nal_hrd_parameters_present_flag ||
180
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 12 times.
24 current->vcl_hrd_parameters_present_flag)
181
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 20 times.
40 flag(low_delay_hrd_flag);
182 else
183
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 6 times.
24 infer(low_delay_hrd_flag, 1 - current->fixed_frame_rate_flag);
184
185
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 flag(pic_struct_present_flag);
186
187
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 flag(bitstream_restriction_flag);
188
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 8 times.
64 if (current->bitstream_restriction_flag) {
189
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 flag(motion_vectors_over_pic_boundaries_flag);
190
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(max_bytes_per_pic_denom, 0, 16);
191
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(max_bits_per_mb_denom, 0, 16);
192 // The current version of the standard constrains this to be in
193 // [0,15], but older versions allow 16.
194
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(log2_max_mv_length_horizontal, 0, 16);
195
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(log2_max_mv_length_vertical, 0, 16);
196
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(max_num_reorder_frames, 0, H264_MAX_DPB_FRAMES);
197
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(max_dec_frame_buffering, 0, H264_MAX_DPB_FRAMES);
198 } else {
199
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
16 infer(motion_vectors_over_pic_boundaries_flag, 1);
200
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
16 infer(max_bytes_per_pic_denom, 2);
201
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
16 infer(max_bits_per_mb_denom, 1);
202
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
16 infer(log2_max_mv_length_horizontal, 15);
203
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
16 infer(log2_max_mv_length_vertical, 15);
204
205
2/4
✓ Branch 0 taken 8 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
✗ Branch 3 not taken.
16 if ((sps->profile_idc == 44 || sps->profile_idc == 86 ||
206
3/4
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
16 sps->profile_idc == 100 || sps->profile_idc == 110 ||
207
2/4
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 4 times.
8 sps->profile_idc == 122 || sps->profile_idc == 244) &&
208
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
8 sps->constraint_set3_flag) {
209 infer(max_num_reorder_frames, 0);
210 infer(max_dec_frame_buffering, 0);
211 } else {
212
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
16 infer(max_num_reorder_frames, H264_MAX_DPB_FRAMES);
213
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
16 infer(max_dec_frame_buffering, H264_MAX_DPB_FRAMES);
214 }
215 }
216
217 64 return 0;
218 }
219
220 228 static int FUNC(vui_parameters_default)(CodedBitstreamContext *ctx,
221 RWContext *rw, H264RawVUI *current,
222 H264RawSPS *sps)
223 {
224
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(aspect_ratio_idc, 0);
225
226
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(video_format, 5);
227
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(video_full_range_flag, 0);
228
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(colour_primaries, 2);
229
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(transfer_characteristics, 2);
230
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(matrix_coefficients, 2);
231
232
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(chroma_sample_loc_type_top_field, 0);
233
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(chroma_sample_loc_type_bottom_field, 0);
234
235
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(fixed_frame_rate_flag, 0);
236
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(low_delay_hrd_flag, 1);
237
238
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(pic_struct_present_flag, 0);
239
240
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(motion_vectors_over_pic_boundaries_flag, 1);
241
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(max_bytes_per_pic_denom, 2);
242
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(max_bits_per_mb_denom, 1);
243
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(log2_max_mv_length_horizontal, 15);
244
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(log2_max_mv_length_vertical, 15);
245
246
2/4
✓ Branch 0 taken 114 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 114 times.
✗ Branch 3 not taken.
228 if ((sps->profile_idc == 44 || sps->profile_idc == 86 ||
247
2/4
✓ Branch 0 taken 114 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 114 times.
✗ Branch 3 not taken.
228 sps->profile_idc == 100 || sps->profile_idc == 110 ||
248
2/4
✓ Branch 0 taken 114 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 114 times.
228 sps->profile_idc == 122 || sps->profile_idc == 244) &&
249 sps->constraint_set3_flag) {
250 infer(max_num_reorder_frames, 0);
251 infer(max_dec_frame_buffering, 0);
252 } else {
253
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(max_num_reorder_frames, H264_MAX_DPB_FRAMES);
254
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 57 times.
228 infer(max_dec_frame_buffering, H264_MAX_DPB_FRAMES);
255 }
256
257 228 return 0;
258 }
259
260 292 static int FUNC(sps)(CodedBitstreamContext *ctx, RWContext *rw,
261 H264RawSPS *current)
262 {
263 int err, i;
264
265 292 HEADER("Sequence Parameter Set");
266
267
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 CHECK(FUNC(nal_unit_header)(ctx, rw, &current->nal_unit_header,
268 1 << H264_NAL_SPS));
269
270
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 ub(8, profile_idc);
271
272
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(constraint_set0_flag);
273
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(constraint_set1_flag);
274
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(constraint_set2_flag);
275
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(constraint_set3_flag);
276
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(constraint_set4_flag);
277
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(constraint_set5_flag);
278
279
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 u(2, reserved_zero_2bits, 0, 0);
280
281
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 ub(8, level_idc);
282
283
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 ue(seq_parameter_set_id, 0, 31);
284
285
3/4
✓ Branch 0 taken 138 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 138 times.
✗ Branch 3 not taken.
292 if (current->profile_idc == 100 || current->profile_idc == 110 ||
286
2/4
✓ Branch 0 taken 138 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 138 times.
✗ Branch 3 not taken.
276 current->profile_idc == 122 || current->profile_idc == 244 ||
287
2/4
✓ Branch 0 taken 138 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 138 times.
✗ Branch 3 not taken.
276 current->profile_idc == 44 || current->profile_idc == 83 ||
288
2/4
✓ Branch 0 taken 138 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 138 times.
✗ Branch 3 not taken.
276 current->profile_idc == 86 || current->profile_idc == 118 ||
289
2/4
✓ Branch 0 taken 138 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 138 times.
276 current->profile_idc == 128 || current->profile_idc == 138) {
290
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 ue(chroma_format_idc, 0, 3);
291
292
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 8 times.
16 if (current->chroma_format_idc == 3)
293 flag(separate_colour_plane_flag);
294 else
295
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
16 infer(separate_colour_plane_flag, 0);
296
297
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 ue(bit_depth_luma_minus8, 0, 6);
298
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 ue(bit_depth_chroma_minus8, 0, 6);
299
300
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 flag(qpprime_y_zero_transform_bypass_flag);
301
302
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 flag(seq_scaling_matrix_present_flag);
303
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 8 times.
16 if (current->seq_scaling_matrix_present_flag) {
304 for (i = 0; i < ((current->chroma_format_idc != 3) ? 8 : 12); i++) {
305 flags(seq_scaling_list_present_flag[i], 1, i);
306 if (current->seq_scaling_list_present_flag[i]) {
307 if (i < 6)
308 CHECK(FUNC(scaling_list)(ctx, rw,
309 &current->scaling_list_4x4[i],
310 16));
311 else
312 CHECK(FUNC(scaling_list)(ctx, rw,
313 &current->scaling_list_8x8[i - 6],
314 64));
315 }
316 }
317 }
318 } else {
319
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 69 times.
276 infer(chroma_format_idc, current->profile_idc == 183 ? 0 : 1);
320
321
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 69 times.
276 infer(separate_colour_plane_flag, 0);
322
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 69 times.
276 infer(bit_depth_luma_minus8, 0);
323
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 69 times.
276 infer(bit_depth_chroma_minus8, 0);
324 }
325
326
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 ue(log2_max_frame_num_minus4, 0, 12);
327
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 ue(pic_order_cnt_type, 0, 2);
328
329
2/2
✓ Branch 0 taken 66 times.
✓ Branch 1 taken 80 times.
292 if (current->pic_order_cnt_type == 0) {
330
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 66 times.
132 ue(log2_max_pic_order_cnt_lsb_minus4, 0, 12);
331
2/2
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 64 times.
160 } else if (current->pic_order_cnt_type == 1) {
332
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 16 times.
32 flag(delta_pic_order_always_zero_flag);
333
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 16 times.
32 se(offset_for_non_ref_pic, INT32_MIN + 1, INT32_MAX);
334
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 16 times.
32 se(offset_for_top_to_bottom_field, INT32_MIN + 1, INT32_MAX);
335
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 16 times.
32 ue(num_ref_frames_in_pic_order_cnt_cycle, 0, 255);
336
337
2/2
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 16 times.
64 for (i = 0; i < current->num_ref_frames_in_pic_order_cnt_cycle; i++)
338
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 16 times.
32 ses(offset_for_ref_frame[i], INT32_MIN + 1, INT32_MAX, 1, i);
339 }
340
341
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 ue(max_num_ref_frames, 0, H264_MAX_DPB_FRAMES);
342
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(gaps_in_frame_num_allowed_flag);
343
344
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 ue(pic_width_in_mbs_minus1, 0, H264_MAX_MB_WIDTH);
345
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 ue(pic_height_in_map_units_minus1, 0, H264_MAX_MB_HEIGHT);
346
347
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(frame_mbs_only_flag);
348
2/2
✓ Branch 0 taken 34 times.
✓ Branch 1 taken 112 times.
292 if (!current->frame_mbs_only_flag)
349
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 34 times.
68 flag(mb_adaptive_frame_field_flag);
350
351
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(direct_8x8_inference_flag);
352
353
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(frame_cropping_flag);
354
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 122 times.
292 if (current->frame_cropping_flag) {
355
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(frame_crop_left_offset, 0, H264_MAX_WIDTH);
356
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(frame_crop_right_offset, 0, H264_MAX_WIDTH);
357
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(frame_crop_top_offset, 0, H264_MAX_HEIGHT);
358
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 24 times.
48 ue(frame_crop_bottom_offset, 0, H264_MAX_HEIGHT);
359 }
360
361
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 flag(vui_parameters_present_flag);
362
2/2
✓ Branch 0 taken 32 times.
✓ Branch 1 taken 114 times.
292 if (current->vui_parameters_present_flag)
363
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 CHECK(FUNC(vui_parameters)(ctx, rw, &current->vui, current));
364 else
365
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 114 times.
228 CHECK(FUNC(vui_parameters_default)(ctx, rw, &current->vui, current));
366
367
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 146 times.
292 CHECK(FUNC(rbsp_trailing_bits)(ctx, rw));
368
369 292 return 0;
370 }
371
372 static int FUNC(sps_extension)(CodedBitstreamContext *ctx, RWContext *rw,
373 H264RawSPSExtension *current)
374 {
375 int err;
376
377 HEADER("Sequence Parameter Set Extension");
378
379 CHECK(FUNC(nal_unit_header)(ctx, rw, &current->nal_unit_header,
380 1 << H264_NAL_SPS_EXT));
381
382 ue(seq_parameter_set_id, 0, 31);
383
384 ue(aux_format_idc, 0, 3);
385
386 if (current->aux_format_idc != 0) {
387 int bits;
388
389 ue(bit_depth_aux_minus8, 0, 4);
390 flag(alpha_incr_flag);
391
392 bits = current->bit_depth_aux_minus8 + 9;
393 ub(bits, alpha_opaque_value);
394 ub(bits, alpha_transparent_value);
395 }
396
397 flag(additional_extension_flag);
398
399 CHECK(FUNC(rbsp_trailing_bits)(ctx, rw));
400
401 return 0;
402 }
403
404 5980 static int FUNC(pps)(CodedBitstreamContext *ctx, RWContext *rw,
405 H264RawPPS *current)
406 {
407 5980 CodedBitstreamH264Context *h264 = ctx->priv_data;
408 const H264RawSPS *sps;
409 int err, i;
410
411 5980 HEADER("Picture Parameter Set");
412
413
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 CHECK(FUNC(nal_unit_header)(ctx, rw, &current->nal_unit_header,
414 1 << H264_NAL_PPS));
415
416
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 ue(pic_parameter_set_id, 0, 255);
417
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 ue(seq_parameter_set_id, 0, 31);
418
419 5980 sps = h264->sps[current->seq_parameter_set_id];
420
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2990 times.
5980 if (!sps) {
421 av_log(ctx->log_ctx, AV_LOG_ERROR, "SPS id %d not available.\n",
422 current->seq_parameter_set_id);
423 return AVERROR_INVALIDDATA;
424 }
425
426
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 flag(entropy_coding_mode_flag);
427
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 flag(bottom_field_pic_order_in_frame_present_flag);
428
429
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 ue(num_slice_groups_minus1, 0, 7);
430
2/2
✓ Branch 0 taken 28 times.
✓ Branch 1 taken 2962 times.
5980 if (current->num_slice_groups_minus1 > 0) {
431 unsigned int pic_size;
432 int iGroup;
433
434 56 pic_size = (sps->pic_width_in_mbs_minus1 + 1) *
435 56 (sps->pic_height_in_map_units_minus1 + 1);
436
437
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 28 times.
56 ue(slice_group_map_type, 0, 6);
438
439
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 24 times.
56 if (current->slice_group_map_type == 0) {
440
2/2
✓ Branch 0 taken 32 times.
✓ Branch 1 taken 4 times.
72 for (iGroup = 0; iGroup <= current->num_slice_groups_minus1; iGroup++)
441
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 32 times.
64 ues(run_length_minus1[iGroup], 0, pic_size - 1, 1, iGroup);
442
443
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 20 times.
48 } else if (current->slice_group_map_type == 2) {
444
2/2
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 4 times.
24 for (iGroup = 0; iGroup < current->num_slice_groups_minus1; iGroup++) {
445
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 ues(top_left[iGroup], 0, pic_size - 1, 1, iGroup);
446
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 ues(bottom_right[iGroup],
447 current->top_left[iGroup], pic_size - 1, 1, iGroup);
448 }
449
2/2
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 4 times.
40 } else if (current->slice_group_map_type == 3 ||
450
2/2
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 4 times.
32 current->slice_group_map_type == 4 ||
451
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 8 times.
24 current->slice_group_map_type == 5) {
452
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 12 times.
24 flag(slice_group_change_direction_flag);
453
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 12 times.
24 ue(slice_group_change_rate_minus1, 0, pic_size - 1);
454
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 4 times.
16 } else if (current->slice_group_map_type == 6) {
455
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 4 times.
8 ue(pic_size_in_map_units_minus1, pic_size - 1, pic_size - 1);
456
457
2/3
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
✓ Branch 2 taken 2 times.
8 allocate(current->slice_group_id,
458 current->pic_size_in_map_units_minus1 + 1);
459
2/2
✓ Branch 0 taken 396 times.
✓ Branch 1 taken 4 times.
800 for (i = 0; i <= current->pic_size_in_map_units_minus1; i++)
460
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 396 times.
792 us(av_log2(2 * current->num_slice_groups_minus1 + 1),
461 slice_group_id[i], 0, current->num_slice_groups_minus1, 1, i);
462 }
463 }
464
465
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 ue(num_ref_idx_l0_default_active_minus1, 0, 31);
466
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 ue(num_ref_idx_l1_default_active_minus1, 0, 31);
467
468
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 flag(weighted_pred_flag);
469
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 u(2, weighted_bipred_idc, 0, 2);
470
471
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 se(pic_init_qp_minus26, -26 - 6 * sps->bit_depth_luma_minus8, +25);
472
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 se(pic_init_qs_minus26, -26, +25);
473
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 se(chroma_qp_index_offset, -12, +12);
474
475
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 flag(deblocking_filter_control_present_flag);
476
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 flag(constrained_intra_pred_flag);
477
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 flag(redundant_pic_cnt_present_flag);
478
479
3/3
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 1495 times.
✓ Branch 2 taken 1491 times.
5980 if (more_rbsp_data(current->more_rbsp_data))
480 {
481
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 flag(transform_8x8_mode_flag);
482
483
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 flag(pic_scaling_matrix_present_flag);
484
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 8 times.
16 if (current->pic_scaling_matrix_present_flag) {
485 for (i = 0; i < 6 + (((sps->chroma_format_idc != 3) ? 2 : 6) *
486 current->transform_8x8_mode_flag); i++) {
487 flags(pic_scaling_list_present_flag[i], 1, i);
488 if (current->pic_scaling_list_present_flag[i]) {
489 if (i < 6)
490 CHECK(FUNC(scaling_list)(ctx, rw,
491 &current->scaling_list_4x4[i],
492 16));
493 else
494 CHECK(FUNC(scaling_list)(ctx, rw,
495 &current->scaling_list_8x8[i - 6],
496 64));
497 }
498 }
499 }
500
501
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8 times.
16 se(second_chroma_qp_index_offset, -12, +12);
502 } else {
503
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1491 times.
5964 infer(transform_8x8_mode_flag, 0);
504
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1491 times.
5964 infer(pic_scaling_matrix_present_flag, 0);
505
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1491 times.
5964 infer(second_chroma_qp_index_offset, current->chroma_qp_index_offset);
506 }
507
508
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2990 times.
5980 CHECK(FUNC(rbsp_trailing_bits)(ctx, rw));
509
510 5980 return 0;
511 }
512
513 284 SEI_FUNC(sei_buffering_period, (CodedBitstreamContext *ctx, RWContext *rw,
514 H264RawSEIBufferingPeriod *current,
515 SEIMessageState *sei))
516 {
517 142 CodedBitstreamH264Context *h264 = ctx->priv_data;
518 const H264RawSPS *sps;
519 int err, i, length;
520
521 142 HEADER("Buffering Period");
522
523
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 71 times.
142 ue(seq_parameter_set_id, 0, 31);
524
525 142 sps = h264->sps[current->seq_parameter_set_id];
526
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 71 times.
142 if (!sps) {
527 av_log(ctx->log_ctx, AV_LOG_ERROR, "SPS id %d not available.\n",
528 current->seq_parameter_set_id);
529 return AVERROR_INVALIDDATA;
530 }
531 142 h264->active_sps = sps;
532
533
2/2
✓ Branch 0 taken 68 times.
✓ Branch 1 taken 3 times.
142 if (sps->vui.nal_hrd_parameters_present_flag) {
534
2/2
✓ Branch 0 taken 68 times.
✓ Branch 1 taken 68 times.
272 for (i = 0; i <= sps->vui.nal_hrd_parameters.cpb_cnt_minus1; i++) {
535 136 length = sps->vui.nal_hrd_parameters.initial_cpb_removal_delay_length_minus1 + 1;
536
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 68 times.
136 xu(length, initial_cpb_removal_delay[SchedSelIdx],
537 current->nal.initial_cpb_removal_delay[i],
538 1, MAX_UINT_BITS(length), 1, i);
539
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 68 times.
136 xu(length, initial_cpb_removal_delay_offset[SchedSelIdx],
540 current->nal.initial_cpb_removal_delay_offset[i],
541 0, MAX_UINT_BITS(length), 1, i);
542 }
543 }
544
545
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 68 times.
142 if (sps->vui.vcl_hrd_parameters_present_flag) {
546
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 3 times.
12 for (i = 0; i <= sps->vui.vcl_hrd_parameters.cpb_cnt_minus1; i++) {
547 6 length = sps->vui.vcl_hrd_parameters.initial_cpb_removal_delay_length_minus1 + 1;
548
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3 times.
6 xu(length, initial_cpb_removal_delay[SchedSelIdx],
549 current->vcl.initial_cpb_removal_delay[i],
550 1, MAX_UINT_BITS(length), 1, i);
551
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3 times.
6 xu(length, initial_cpb_removal_delay_offset[SchedSelIdx],
552 current->vcl.initial_cpb_removal_delay_offset[i],
553 0, MAX_UINT_BITS(length), 1, i);
554 }
555 }
556
557 142 return 0;
558 }
559
560 static int FUNC(sei_pic_timestamp)(CodedBitstreamContext *ctx, RWContext *rw,
561 H264RawSEIPicTimestamp *current,
562 const H264RawSPS *sps)
563 {
564 uint8_t time_offset_length;
565 int err;
566
567 u(2, ct_type, 0, 2);
568 flag(nuit_field_based_flag);
569 u(5, counting_type, 0, 6);
570 flag(full_timestamp_flag);
571 flag(discontinuity_flag);
572 flag(cnt_dropped_flag);
573 ub(8, n_frames);
574 if (current->full_timestamp_flag) {
575 u(6, seconds_value, 0, 59);
576 u(6, minutes_value, 0, 59);
577 u(5, hours_value, 0, 23);
578 } else {
579 flag(seconds_flag);
580 if (current->seconds_flag) {
581 u(6, seconds_value, 0, 59);
582 flag(minutes_flag);
583 if (current->minutes_flag) {
584 u(6, minutes_value, 0, 59);
585 flag(hours_flag);
586 if (current->hours_flag)
587 u(5, hours_value, 0, 23);
588 }
589 }
590 }
591
592 if (sps->vui.nal_hrd_parameters_present_flag)
593 time_offset_length = sps->vui.nal_hrd_parameters.time_offset_length;
594 else if (sps->vui.vcl_hrd_parameters_present_flag)
595 time_offset_length = sps->vui.vcl_hrd_parameters.time_offset_length;
596 else
597 time_offset_length = 24;
598
599 if (time_offset_length > 0)
600 ib(time_offset_length, time_offset);
601 else
602 infer(time_offset, 0);
603
604 return 0;
605 }
606
607 6740 SEI_FUNC(sei_pic_timing, (CodedBitstreamContext *ctx, RWContext *rw,
608 H264RawSEIPicTiming *current, SEIMessageState *sei))
609 {
610 3370 CodedBitstreamH264Context *h264 = ctx->priv_data;
611 const H264RawSPS *sps;
612 int err;
613
614 3370 HEADER("Picture Timing");
615
616 3370 sps = h264->active_sps;
617
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1685 times.
3370 if (!sps) {
618 // If there is exactly one possible SPS but it is not yet active
619 // then just assume that it should be the active one.
620 int i, k = -1;
621 for (i = 0; i < H264_MAX_SPS_COUNT; i++) {
622 if (h264->sps[i]) {
623 if (k >= 0) {
624 k = -1;
625 break;
626 }
627 k = i;
628 }
629 }
630 if (k >= 0)
631 sps = h264->sps[k];
632 }
633
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1685 times.
3370 if (!sps) {
634 av_log(ctx->log_ctx, AV_LOG_ERROR,
635 "No active SPS for pic_timing.\n");
636 return AVERROR_INVALIDDATA;
637 }
638
639
2/2
✓ Branch 0 taken 118 times.
✓ Branch 1 taken 1567 times.
3370 if (sps->vui.nal_hrd_parameters_present_flag ||
640
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 118 times.
236 sps->vui.vcl_hrd_parameters_present_flag) {
641 const H264RawHRD *hrd;
642
643
1/2
✓ Branch 0 taken 1567 times.
✗ Branch 1 not taken.
3134 if (sps->vui.nal_hrd_parameters_present_flag)
644 3134 hrd = &sps->vui.nal_hrd_parameters;
645 else if (sps->vui.vcl_hrd_parameters_present_flag)
646 hrd = &sps->vui.vcl_hrd_parameters;
647 else {
648 av_log(ctx->log_ctx, AV_LOG_ERROR,
649 "No HRD parameters for pic_timing.\n");
650 return AVERROR_INVALIDDATA;
651 }
652
653
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1567 times.
3134 ub(hrd->cpb_removal_delay_length_minus1 + 1, cpb_removal_delay);
654
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1567 times.
3134 ub(hrd->dpb_output_delay_length_minus1 + 1, dpb_output_delay);
655 }
656
657
2/2
✓ Branch 0 taken 1670 times.
✓ Branch 1 taken 15 times.
3370 if (sps->vui.pic_struct_present_flag) {
658 static const uint8_t num_clock_ts[9] = {
659 1, 1, 1, 2, 2, 3, 3, 2, 3
660 };
661 int i;
662
663
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1670 times.
3340 u(4, pic_struct, 0, 8);
664
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1670 times.
3340 if (current->pic_struct > 8)
665 return AVERROR_INVALIDDATA;
666
667
2/2
✓ Branch 0 taken 3636 times.
✓ Branch 1 taken 1670 times.
10612 for (i = 0; i < num_clock_ts[current->pic_struct]; i++) {
668
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3636 times.
7272 flags(clock_timestamp_flag[i], 1, i);
669
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3636 times.
7272 if (current->clock_timestamp_flag[i])
670 CHECK(FUNC(sei_pic_timestamp)(ctx, rw,
671 &current->timestamp[i], sps));
672 }
673 }
674
675 3370 return 0;
676 }
677
678 60 SEI_FUNC(sei_pan_scan_rect, (CodedBitstreamContext *ctx, RWContext *rw,
679 H264RawSEIPanScanRect *current,
680 SEIMessageState *sei))
681 {
682 int err, i;
683
684 30 HEADER("Pan-Scan Rectangle");
685
686
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 15 times.
30 ue(pan_scan_rect_id, 0, UINT32_MAX - 1);
687
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 15 times.
30 flag(pan_scan_rect_cancel_flag);
688
689
1/2
✓ Branch 0 taken 15 times.
✗ Branch 1 not taken.
30 if (!current->pan_scan_rect_cancel_flag) {
690
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 15 times.
30 ue(pan_scan_cnt_minus1, 0, 2);
691
692
2/2
✓ Branch 0 taken 15 times.
✓ Branch 1 taken 15 times.
60 for (i = 0; i <= current->pan_scan_cnt_minus1; i++) {
693
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 15 times.
30 ses(pan_scan_rect_left_offset[i], INT32_MIN + 1, INT32_MAX, 1, i);
694
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 15 times.
30 ses(pan_scan_rect_right_offset[i], INT32_MIN + 1, INT32_MAX, 1, i);
695
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 15 times.
30 ses(pan_scan_rect_top_offset[i], INT32_MIN + 1, INT32_MAX, 1, i);
696
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 15 times.
30 ses(pan_scan_rect_bottom_offset[i], INT32_MIN + 1, INT32_MAX, 1, i);
697 }
698
699
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 15 times.
30 ue(pan_scan_rect_repetition_period, 0, 16384);
700 }
701
702 30 return 0;
703 }
704
705 224 SEI_FUNC(sei_recovery_point, (CodedBitstreamContext *ctx, RWContext *rw,
706 H264RawSEIRecoveryPoint *current,
707 SEIMessageState *sei))
708 {
709 int err;
710
711 112 HEADER("Recovery Point");
712
713
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 56 times.
112 ue(recovery_frame_cnt, 0, 65535);
714
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 56 times.
112 flag(exact_match_flag);
715
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 56 times.
112 flag(broken_link_flag);
716
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 56 times.
112 u(2, changing_slice_group_idc, 0, 2);
717
718 112 return 0;
719 }
720
721 SEI_FUNC(film_grain_characteristics, (CodedBitstreamContext *ctx, RWContext *rw,
722 H264RawFilmGrainCharacteristics *current,
723 SEIMessageState *state))
724 {
725 CodedBitstreamH264Context *h264 = ctx->priv_data;
726 const H264RawSPS *sps;
727 int err, c, i, j;
728
729 HEADER("Film Grain Characteristics");
730
731 sps = h264->active_sps;
732 if (!sps) {
733 // If there is exactly one possible SPS but it is not yet active
734 // then just assume that it should be the active one.
735 int i, k = -1;
736 for (i = 0; i < H264_MAX_SPS_COUNT; i++) {
737 if (h264->sps[i]) {
738 if (k >= 0) {
739 k = -1;
740 break;
741 }
742 k = i;
743 }
744 }
745 if (k >= 0)
746 sps = h264->sps[k];
747 }
748
749 flag(film_grain_characteristics_cancel_flag);
750 if (!current->film_grain_characteristics_cancel_flag) {
751 int filmGrainBitDepth[3];
752
753 u(2, film_grain_model_id, 0, 1);
754 flag(separate_colour_description_present_flag);
755 if (current->separate_colour_description_present_flag) {
756 ub(3, film_grain_bit_depth_luma_minus8);
757 ub(3, film_grain_bit_depth_chroma_minus8);
758 flag(film_grain_full_range_flag);
759 ub(8, film_grain_colour_primaries);
760 ub(8, film_grain_transfer_characteristics);
761 ub(8, film_grain_matrix_coefficients);
762 } else {
763 if (!sps) {
764 av_log(ctx->log_ctx, AV_LOG_ERROR,
765 "No active SPS for film_grain_characteristics.\n");
766 return AVERROR_INVALIDDATA;
767 }
768 infer(film_grain_bit_depth_luma_minus8, sps->bit_depth_luma_minus8);
769 infer(film_grain_bit_depth_chroma_minus8, sps->bit_depth_chroma_minus8);
770 infer(film_grain_full_range_flag, sps->vui.video_full_range_flag);
771 infer(film_grain_colour_primaries, sps->vui.colour_primaries);
772 infer(film_grain_transfer_characteristics, sps->vui.transfer_characteristics);
773 infer(film_grain_matrix_coefficients, sps->vui.matrix_coefficients);
774 }
775
776 filmGrainBitDepth[0] = current->film_grain_bit_depth_luma_minus8 + 8;
777 filmGrainBitDepth[1] =
778 filmGrainBitDepth[2] = current->film_grain_bit_depth_chroma_minus8 + 8;
779
780 u(2, blending_mode_id, 0, 1);
781 ub(4, log2_scale_factor);
782 for (c = 0; c < 3; c++)
783 flags(comp_model_present_flag[c], 1, c);
784 for (c = 0; c < 3; c++) {
785 if (current->comp_model_present_flag[c]) {
786 ubs(8, num_intensity_intervals_minus1[c], 1, c);
787 us(3, num_model_values_minus1[c], 0, 5, 1, c);
788 for (i = 0; i <= current->num_intensity_intervals_minus1[c]; i++) {
789 ubs(8, intensity_interval_lower_bound[c][i], 2, c, i);
790 ubs(8, intensity_interval_upper_bound[c][i], 2, c, i);
791 for (j = 0; j <= current->num_model_values_minus1[c]; j++)
792 ses(comp_model_value[c][i][j], 0 - current->film_grain_model_id * (1 << (filmGrainBitDepth[c] - 1)),
793 ((1 << filmGrainBitDepth[c]) - 1) - current->film_grain_model_id * (1 << (filmGrainBitDepth[c] - 1)),
794 3, c, i, j);
795 }
796 }
797 }
798 ue(film_grain_characteristics_repetition_period, 0, 16384);
799 }
800
801 return 0;
802 }
803
804 12 SEI_FUNC(sei_display_orientation, (CodedBitstreamContext *ctx, RWContext *rw,
805 H264RawSEIDisplayOrientation *current,
806 SEIMessageState *sei))
807 {
808 int err;
809
810 6 HEADER("Display Orientation");
811
812
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3 times.
6 flag(display_orientation_cancel_flag);
813
1/2
✓ Branch 0 taken 3 times.
✗ Branch 1 not taken.
6 if (!current->display_orientation_cancel_flag) {
814
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3 times.
6 flag(hor_flip);
815
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3 times.
6 flag(ver_flip);
816
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3 times.
6 ub(16, anticlockwise_rotation);
817
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3 times.
6 ue(display_orientation_repetition_period, 0, 16384);
818
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3 times.
6 flag(display_orientation_extension_flag);
819 }
820
821 6 return 0;
822 }
823
824 2836 static int FUNC(sei)(CodedBitstreamContext *ctx, RWContext *rw,
825 H264RawSEI *current)
826 {
827 int err;
828
829 2836 HEADER("Supplemental Enhancement Information");
830
831
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1418 times.
2836 CHECK(FUNC(nal_unit_header)(ctx, rw, &current->nal_unit_header,
832 1 << H264_NAL_SEI));
833
834
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1418 times.
2836 CHECK(FUNC_SEI(message_list)(ctx, rw, &current->message_list, 1));
835
836
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1418 times.
2836 CHECK(FUNC(rbsp_trailing_bits)(ctx, rw));
837
838 2836 return 0;
839 }
840
841 2082 static int FUNC(aud)(CodedBitstreamContext *ctx, RWContext *rw,
842 H264RawAUD *current)
843 {
844 int err;
845
846 2082 HEADER("Access Unit Delimiter");
847
848
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1041 times.
2082 CHECK(FUNC(nal_unit_header)(ctx, rw, &current->nal_unit_header,
849 1 << H264_NAL_AUD));
850
851
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1041 times.
2082 ub(3, primary_pic_type);
852
853
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1041 times.
2082 CHECK(FUNC(rbsp_trailing_bits)(ctx, rw));
854
855 2082 return 0;
856 }
857
858 23096 static int FUNC(ref_pic_list_modification)(CodedBitstreamContext *ctx, RWContext *rw,
859 H264RawSliceHeader *current)
860 {
861 23096 CodedBitstreamH264Context *h264 = ctx->priv_data;
862 23096 const H264RawSPS *sps = h264->active_sps;
863 int err, i, mopn;
864
865
2/2
✓ Branch 0 taken 10859 times.
✓ Branch 1 taken 689 times.
23096 if (current->slice_type % 5 != 2 &&
866
1/2
✓ Branch 0 taken 10859 times.
✗ Branch 1 not taken.
21718 current->slice_type % 5 != 4) {
867
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 10859 times.
21718 flag(ref_pic_list_modification_flag_l0);
868
2/2
✓ Branch 0 taken 1140 times.
✓ Branch 1 taken 9719 times.
21718 if (current->ref_pic_list_modification_flag_l0) {
869
1/2
✓ Branch 0 taken 3716 times.
✗ Branch 1 not taken.
7432 for (i = 0; i < H264_MAX_RPLM_COUNT; i++) {
870
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3716 times.
7432 xue(modification_of_pic_nums_idc,
871 current->rplm_l0[i].modification_of_pic_nums_idc, 0, 3, 0);
872
873 7432 mopn = current->rplm_l0[i].modification_of_pic_nums_idc;
874
2/2
✓ Branch 0 taken 1140 times.
✓ Branch 1 taken 2576 times.
7432 if (mopn == 3)
875 2280 break;
876
877
4/4
✓ Branch 0 taken 286 times.
✓ Branch 1 taken 2290 times.
✓ Branch 2 taken 272 times.
✓ Branch 3 taken 14 times.
5152 if (mopn == 0 || mopn == 1)
878
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2562 times.
5124 xue(abs_diff_pic_num_minus1,
879 current->rplm_l0[i].abs_diff_pic_num_minus1,
880 0, (1 + current->field_pic_flag) *
881 (1 << (sps->log2_max_frame_num_minus4 + 4)), 0);
882
1/2
✓ Branch 0 taken 14 times.
✗ Branch 1 not taken.
28 else if (mopn == 2)
883
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 14 times.
28 xue(long_term_pic_num,
884 current->rplm_l0[i].long_term_pic_num,
885 0, sps->max_num_ref_frames - 1, 0);
886 }
887 }
888 }
889
890
2/2
✓ Branch 0 taken 2669 times.
✓ Branch 1 taken 8879 times.
23096 if (current->slice_type % 5 == 1) {
891
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2669 times.
5338 flag(ref_pic_list_modification_flag_l1);
892
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2669 times.
5338 if (current->ref_pic_list_modification_flag_l1) {
893 for (i = 0; i < H264_MAX_RPLM_COUNT; i++) {
894 xue(modification_of_pic_nums_idc,
895 current->rplm_l1[i].modification_of_pic_nums_idc, 0, 3, 0);
896
897 mopn = current->rplm_l1[i].modification_of_pic_nums_idc;
898 if (mopn == 3)
899 break;
900
901 if (mopn == 0 || mopn == 1)
902 xue(abs_diff_pic_num_minus1,
903 current->rplm_l1[i].abs_diff_pic_num_minus1,
904 0, (1 + current->field_pic_flag) *
905 (1 << (sps->log2_max_frame_num_minus4 + 4)), 0);
906 else if (mopn == 2)
907 xue(long_term_pic_num,
908 current->rplm_l1[i].long_term_pic_num,
909 0, sps->max_num_ref_frames - 1, 0);
910 }
911 }
912 }
913
914 23096 return 0;
915 }
916
917 1212 static int FUNC(pred_weight_table)(CodedBitstreamContext *ctx, RWContext *rw,
918 H264RawSliceHeader *current)
919 {
920 1212 CodedBitstreamH264Context *h264 = ctx->priv_data;
921 1212 const H264RawSPS *sps = h264->active_sps;
922 int chroma;
923 int err, i, j;
924
925
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 606 times.
1212 ue(luma_log2_weight_denom, 0, 7);
926
927
2/4
✓ Branch 0 taken 606 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 606 times.
✗ Branch 3 not taken.
1212 chroma = !sps->separate_colour_plane_flag && sps->chroma_format_idc != 0;
928
1/2
✓ Branch 0 taken 606 times.
✗ Branch 1 not taken.
1212 if (chroma)
929
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 606 times.
1212 ue(chroma_log2_weight_denom, 0, 7);
930
931
2/2
✓ Branch 0 taken 2368 times.
✓ Branch 1 taken 606 times.
5948 for (i = 0; i <= current->num_ref_idx_l0_active_minus1; i++) {
932
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2368 times.
4736 flags(luma_weight_l0_flag[i], 1, i);
933
2/2
✓ Branch 0 taken 436 times.
✓ Branch 1 taken 1932 times.
4736 if (current->luma_weight_l0_flag[i]) {
934
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 436 times.
872 ses(luma_weight_l0[i], -128, +127, 1, i);
935
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 436 times.
872 ses(luma_offset_l0[i], -128, +127, 1, i);
936 }
937
1/2
✓ Branch 0 taken 2368 times.
✗ Branch 1 not taken.
4736 if (chroma) {
938
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2368 times.
4736 flags(chroma_weight_l0_flag[i], 1, i);
939
2/2
✓ Branch 0 taken 416 times.
✓ Branch 1 taken 1952 times.
4736 if (current->chroma_weight_l0_flag[i]) {
940
2/2
✓ Branch 0 taken 832 times.
✓ Branch 1 taken 416 times.
2496 for (j = 0; j < 2; j++) {
941
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 832 times.
1664 ses(chroma_weight_l0[i][j], -128, +127, 2, i, j);
942
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 832 times.
1664 ses(chroma_offset_l0[i][j], -128, +127, 2, i, j);
943 }
944 }
945 }
946 }
947
948
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 606 times.
1212 if (current->slice_type % 5 == 1) {
949 for (i = 0; i <= current->num_ref_idx_l1_active_minus1; i++) {
950 flags(luma_weight_l1_flag[i], 1, i);
951 if (current->luma_weight_l1_flag[i]) {
952 ses(luma_weight_l1[i], -128, +127, 1, i);
953 ses(luma_offset_l1[i], -128, +127, 1, i);
954 }
955 if (chroma) {
956 flags(chroma_weight_l1_flag[i], 1, i);
957 if (current->chroma_weight_l1_flag[i]) {
958 for (j = 0; j < 2; j++) {
959 ses(chroma_weight_l1[i][j], -128, +127, 2, i, j);
960 ses(chroma_offset_l1[i][j], -128, +127, 2, i, j);
961 }
962 }
963 }
964 }
965 }
966
967 1212 return 0;
968 }
969
970 18058 static int FUNC(dec_ref_pic_marking)(CodedBitstreamContext *ctx, RWContext *rw,
971 H264RawSliceHeader *current, int idr_pic_flag)
972 {
973 18058 CodedBitstreamH264Context *h264 = ctx->priv_data;
974 18058 const H264RawSPS *sps = h264->active_sps;
975 int err, i;
976 uint32_t mmco;
977
978
2/2
✓ Branch 0 taken 166 times.
✓ Branch 1 taken 8863 times.
18058 if (idr_pic_flag) {
979
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 166 times.
332 flag(no_output_of_prior_pics_flag);
980
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 166 times.
332 flag(long_term_reference_flag);
981 } else {
982
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 8863 times.
17726 flag(adaptive_ref_pic_marking_mode_flag);
983
2/2
✓ Branch 0 taken 587 times.
✓ Branch 1 taken 8276 times.
17726 if (current->adaptive_ref_pic_marking_mode_flag) {
984
1/2
✓ Branch 0 taken 1356 times.
✗ Branch 1 not taken.
2712 for (i = 0; i < H264_MAX_MMCO_COUNT; i++) {
985
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1356 times.
2712 xue(memory_management_control_operation,
986 current->mmco[i].memory_management_control_operation,
987 0, 6, 0);
988
989 2712 mmco = current->mmco[i].memory_management_control_operation;
990
2/2
✓ Branch 0 taken 587 times.
✓ Branch 1 taken 769 times.
2712 if (mmco == 0)
991 1174 break;
992
993
4/4
✓ Branch 0 taken 138 times.
✓ Branch 1 taken 631 times.
✓ Branch 2 taken 56 times.
✓ Branch 3 taken 82 times.
1538 if (mmco == 1 || mmco == 3)
994
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 687 times.
1374 xue(difference_of_pic_nums_minus1,
995 current->mmco[i].difference_of_pic_nums_minus1,
996 0, INT32_MAX, 0);
997
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 769 times.
1538 if (mmco == 2)
998 xue(long_term_pic_num,
999 current->mmco[i].long_term_pic_num,
1000 0, sps->max_num_ref_frames - 1, 0);
1001
3/4
✓ Branch 0 taken 713 times.
✓ Branch 1 taken 56 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 713 times.
1538 if (mmco == 3 || mmco == 6)
1002
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 56 times.
112 xue(long_term_frame_idx,
1003 current->mmco[i].long_term_frame_idx,
1004 0, sps->max_num_ref_frames - 1, 0);
1005
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 765 times.
1538 if (mmco == 4)
1006
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 4 times.
8 xue(max_long_term_frame_idx_plus1,
1007 current->mmco[i].max_long_term_frame_idx_plus1,
1008 0, sps->max_num_ref_frames, 0);
1009 }
1010
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 587 times.
1174 if (i == H264_MAX_MMCO_COUNT) {
1011 av_log(ctx->log_ctx, AV_LOG_ERROR, "Too many "
1012 "memory management control operations.\n");
1013 return AVERROR_INVALIDDATA;
1014 }
1015 }
1016 }
1017
1018 18058 return 0;
1019 }
1020
1021 23096 static int FUNC(slice_header)(CodedBitstreamContext *ctx, RWContext *rw,
1022 H264RawSliceHeader *current)
1023 {
1024 23096 CodedBitstreamH264Context *h264 = ctx->priv_data;
1025 const H264RawSPS *sps;
1026 const H264RawPPS *pps;
1027 int err;
1028 int idr_pic_flag;
1029 int slice_type_i, slice_type_p, slice_type_b;
1030 int slice_type_si, slice_type_sp;
1031
1032 23096 HEADER("Slice Header");
1033
1034
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 11548 times.
23096 CHECK(FUNC(nal_unit_header)(ctx, rw, &current->nal_unit_header,
1035 1 << H264_NAL_SLICE |
1036 1 << H264_NAL_IDR_SLICE |
1037 1 << H264_NAL_AUXILIARY_SLICE));
1038
1039
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 11548 times.
23096 if (current->nal_unit_header.nal_unit_type == H264_NAL_AUXILIARY_SLICE) {
1040 if (!h264->last_slice_nal_unit_type) {
1041 av_log(ctx->log_ctx, AV_LOG_ERROR, "Auxiliary slice "
1042 "is not decodable without the main picture "
1043 "in the same access unit.\n");
1044 return AVERROR_INVALIDDATA;
1045 }
1046 idr_pic_flag = h264->last_slice_nal_unit_type == H264_NAL_IDR_SLICE;
1047 } else {
1048 23096 idr_pic_flag = current->nal_unit_header.nal_unit_type == H264_NAL_IDR_SLICE;
1049 }
1050
1051
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 11548 times.
23096 ue(first_mb_in_slice, 0, H264_MAX_MB_PIC_SIZE - 1);
1052
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 11548 times.
23096 ue(slice_type, 0, 9);
1053
1054 23096 slice_type_i = current->slice_type % 5 == 2;
1055 23096 slice_type_p = current->slice_type % 5 == 0;
1056 23096 slice_type_b = current->slice_type % 5 == 1;
1057 23096 slice_type_si = current->slice_type % 5 == 4;
1058 23096 slice_type_sp = current->slice_type % 5 == 3;
1059
1060
3/6
✓ Branch 0 taken 166 times.
✓ Branch 1 taken 11382 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 166 times.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
23096 if (idr_pic_flag && !(slice_type_i || slice_type_si)) {
1061 av_log(ctx->log_ctx, AV_LOG_ERROR, "Invalid slice type %d "
1062 "for IDR picture.\n", current->slice_type);
1063 return AVERROR_INVALIDDATA;
1064 }
1065
1066
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 11548 times.
23096 ue(pic_parameter_set_id, 0, 255);
1067
1068 23096 pps = h264->pps[current->pic_parameter_set_id];
1069
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 11548 times.
23096 if (!pps) {
1070 av_log(ctx->log_ctx, AV_LOG_ERROR, "PPS id %d not available.\n",
1071 current->pic_parameter_set_id);
1072 return AVERROR_INVALIDDATA;
1073 }
1074 23096 h264->active_pps = pps;
1075
1076 23096 sps = h264->sps[pps->seq_parameter_set_id];
1077
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 11548 times.
23096 if (!sps) {
1078 av_log(ctx->log_ctx, AV_LOG_ERROR, "SPS id %d not available.\n",
1079 pps->seq_parameter_set_id);
1080 return AVERROR_INVALIDDATA;
1081 }
1082 23096 h264->active_sps = sps;
1083
1084
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 11548 times.
23096 if (sps->separate_colour_plane_flag)
1085 u(2, colour_plane_id, 0, 2);
1086
1087
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 11548 times.
23096 ub(sps->log2_max_frame_num_minus4 + 4, frame_num);
1088
1089
2/2
✓ Branch 0 taken 1392 times.
✓ Branch 1 taken 10156 times.
23096 if (!sps->frame_mbs_only_flag) {
1090
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1392 times.
2784 flag(field_pic_flag);
1091
2/2
✓ Branch 0 taken 587 times.
✓ Branch 1 taken 805 times.
2784 if (current->field_pic_flag)
1092
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 587 times.
1174 flag(bottom_field_flag);
1093 else
1094
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 204 times.
1610 infer(bottom_field_flag, 0);
1095 } else {
1096
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 5078 times.
20312 infer(field_pic_flag, 0);
1097
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 5078 times.
20312 infer(bottom_field_flag, 0);
1098 }
1099
1100
2/2
✓ Branch 0 taken 166 times.
✓ Branch 1 taken 11382 times.
23096 if (idr_pic_flag)
1101
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 166 times.
332 ue(idr_pic_id, 0, 65535);
1102
1103
2/2
✓ Branch 0 taken 5888 times.
✓ Branch 1 taken 5660 times.
23096 if (sps->pic_order_cnt_type == 0) {
1104
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 5888 times.
11776 ub(sps->log2_max_pic_order_cnt_lsb_minus4 + 4, pic_order_cnt_lsb);
1105
2/2
✓ Branch 0 taken 999 times.
✓ Branch 1 taken 4889 times.
11776 if (pps->bottom_field_pic_order_in_frame_present_flag &&
1106
1/2
✓ Branch 0 taken 999 times.
✗ Branch 1 not taken.
1998 !current->field_pic_flag)
1107
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 999 times.
1998 se(delta_pic_order_cnt_bottom, INT32_MIN + 1, INT32_MAX);
1108
1109
2/2
✓ Branch 0 taken 4562 times.
✓ Branch 1 taken 1098 times.
11320 } else if (sps->pic_order_cnt_type == 1) {
1110
2/2
✓ Branch 0 taken 846 times.
✓ Branch 1 taken 3716 times.
9124 if (!sps->delta_pic_order_always_zero_flag) {
1111
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 846 times.
1692 se(delta_pic_order_cnt[0], INT32_MIN + 1, INT32_MAX);
1112
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 846 times.
1692 if (pps->bottom_field_pic_order_in_frame_present_flag &&
1113 !current->field_pic_flag)
1114 se(delta_pic_order_cnt[1], INT32_MIN + 1, INT32_MAX);
1115 else
1116
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 423 times.
1692 infer(delta_pic_order_cnt[1], 0);
1117 } else {
1118
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1858 times.
7432 infer(delta_pic_order_cnt[0], 0);
1119
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1858 times.
7432 infer(delta_pic_order_cnt[1], 0);
1120 }
1121 }
1122
1123
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 11548 times.
23096 if (pps->redundant_pic_cnt_present_flag)
1124 ue(redundant_pic_cnt, 0, 127);
1125 else
1126
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 5575 times.
23096 infer(redundant_pic_cnt, 0);
1127
1128
1/2
✓ Branch 0 taken 11548 times.
✗ Branch 1 not taken.
23096 if (current->nal_unit_header.nal_unit_type != H264_NAL_AUXILIARY_SLICE
1129
1/2
✓ Branch 0 taken 11548 times.
✗ Branch 1 not taken.
23096 && !current->redundant_pic_cnt)
1130 23096 h264->last_slice_nal_unit_type =
1131 23096 current->nal_unit_header.nal_unit_type;
1132
1133
2/2
✓ Branch 0 taken 2669 times.
✓ Branch 1 taken 8879 times.
23096 if (slice_type_b)
1134
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2669 times.
5338 flag(direct_spatial_mv_pred_flag);
1135
1136
6/6
✓ Branch 0 taken 3436 times.
✓ Branch 1 taken 8112 times.
✓ Branch 2 taken 3358 times.
✓ Branch 3 taken 78 times.
✓ Branch 4 taken 2669 times.
✓ Branch 5 taken 689 times.
23096 if (slice_type_p || slice_type_sp || slice_type_b) {
1137
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 10859 times.
21718 flag(num_ref_idx_active_override_flag);
1138
2/2
✓ Branch 0 taken 4948 times.
✓ Branch 1 taken 5911 times.
21718 if (current->num_ref_idx_active_override_flag) {
1139
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 4948 times.
9896 ue(num_ref_idx_l0_active_minus1, 0, 31);
1140
2/2
✓ Branch 0 taken 2410 times.
✓ Branch 1 taken 2538 times.
9896 if (slice_type_b)
1141
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2410 times.
4820 ue(num_ref_idx_l1_active_minus1, 0, 31);
1142 } else {
1143
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2955 times.
11822 infer(num_ref_idx_l0_active_minus1,
1144 pps->num_ref_idx_l0_default_active_minus1);
1145
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2955 times.
11822 infer(num_ref_idx_l1_active_minus1,
1146 pps->num_ref_idx_l1_default_active_minus1);
1147 }
1148 }
1149
1150
1/2
✓ Branch 0 taken 11548 times.
✗ Branch 1 not taken.
23096 if (current->nal_unit_header.nal_unit_type == 20 ||
1151
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 11548 times.
23096 current->nal_unit_header.nal_unit_type == 21) {
1152 av_log(ctx->log_ctx, AV_LOG_ERROR, "MVC / 3DAVC not supported.\n");
1153 return AVERROR_PATCHWELCOME;
1154 } else {
1155
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 11548 times.
23096 CHECK(FUNC(ref_pic_list_modification)(ctx, rw, current));
1156 }
1157
1158
5/6
✓ Branch 0 taken 688 times.
✓ Branch 1 taken 10860 times.
✓ Branch 2 taken 82 times.
✓ Branch 3 taken 606 times.
✓ Branch 4 taken 82 times.
✗ Branch 5 not taken.
23096 if ((pps->weighted_pred_flag && (slice_type_p || slice_type_sp)) ||
1159
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 10942 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
21884 (pps->weighted_bipred_idc == 1 && slice_type_b)) {
1160
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 606 times.
1212 CHECK(FUNC(pred_weight_table)(ctx, rw, current));
1161 }
1162
1163
2/2
✓ Branch 0 taken 9029 times.
✓ Branch 1 taken 2519 times.
23096 if (current->nal_unit_header.nal_ref_idc != 0) {
1164
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 9029 times.
18058 CHECK(FUNC(dec_ref_pic_marking)(ctx, rw, current, idr_pic_flag));
1165 }
1166
1167
4/4
✓ Branch 0 taken 3698 times.
✓ Branch 1 taken 7850 times.
✓ Branch 2 taken 3449 times.
✓ Branch 3 taken 249 times.
23096 if (pps->entropy_coding_mode_flag &&
1168
1/2
✓ Branch 0 taken 3449 times.
✗ Branch 1 not taken.
6898 !slice_type_i && !slice_type_si) {
1169
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 3449 times.
6898 ue(cabac_init_idc, 0, 2);
1170 }
1171
1172
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 11548 times.
23096 se(slice_qp_delta, - 51 - 6 * sps->bit_depth_luma_minus8,
1173 + 51 + 6 * sps->bit_depth_luma_minus8);
1174
3/4
✓ Branch 0 taken 11470 times.
✓ Branch 1 taken 78 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 11470 times.
23096 if (slice_type_sp || slice_type_si) {
1175
1/2
✓ Branch 0 taken 78 times.
✗ Branch 1 not taken.
156 if (slice_type_sp)
1176
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 78 times.
156 flag(sp_for_switch_flag);
1177
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 78 times.
156 se(slice_qs_delta, -51, +51);
1178 }
1179
1180
2/2
✓ Branch 0 taken 6861 times.
✓ Branch 1 taken 4687 times.
23096 if (pps->deblocking_filter_control_present_flag) {
1181
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 6861 times.
13722 ue(disable_deblocking_filter_idc, 0, 2);
1182
2/2
✓ Branch 0 taken 4735 times.
✓ Branch 1 taken 2126 times.
13722 if (current->disable_deblocking_filter_idc != 1) {
1183
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 4735 times.
9470 se(slice_alpha_c0_offset_div2, -6, +6);
1184
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 4735 times.
9470 se(slice_beta_offset_div2, -6, +6);
1185 } else {
1186
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1063 times.
4252 infer(slice_alpha_c0_offset_div2, 0);
1187
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1063 times.
4252 infer(slice_beta_offset_div2, 0);
1188 }
1189 } else {
1190
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2343 times.
9374 infer(disable_deblocking_filter_idc, 0);
1191
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2343 times.
9374 infer(slice_alpha_c0_offset_div2, 0);
1192
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2343 times.
9374 infer(slice_beta_offset_div2, 0);
1193 }
1194
1195
2/2
✓ Branch 0 taken 3238 times.
✓ Branch 1 taken 8310 times.
23096 if (pps->num_slice_groups_minus1 > 0 &&
1196
2/2
✓ Branch 0 taken 1328 times.
✓ Branch 1 taken 1910 times.
6476 pps->slice_group_map_type >= 3 &&
1197
2/2
✓ Branch 0 taken 628 times.
✓ Branch 1 taken 700 times.
2656 pps->slice_group_map_type <= 5) {
1198 unsigned int pic_size, max, bits;
1199
1200 1256 pic_size = (sps->pic_width_in_mbs_minus1 + 1) *
1201 1256 (sps->pic_height_in_map_units_minus1 + 1);
1202 1256 max = (pic_size + pps->slice_group_change_rate_minus1) /
1203 1256 (pps->slice_group_change_rate_minus1 + 1);
1204 1256 bits = av_ceil_log2(max + 1);
1205
1206
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 628 times.
1256 u(bits, slice_group_change_cycle, 0, max);
1207 }
1208
1209
2/2
✓ Branch 0 taken 3698 times.
✓ Branch 1 taken 7850 times.
23096 if (pps->entropy_coding_mode_flag) {
1210
2/2
✓ Branch 1 taken 11946 times.
✓ Branch 2 taken 3698 times.
31288 while (byte_alignment(rw))
1211
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 11946 times.
23892 fixed(1, cabac_alignment_one_bit, 1);
1212 }
1213
1214 23096 return 0;
1215 }
1216
1217 68 static int FUNC(filler)(CodedBitstreamContext *ctx, RWContext *rw,
1218 H264RawFiller *current)
1219 {
1220 int err;
1221
1222 68 HEADER("Filler Data");
1223
1224
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 34 times.
68 CHECK(FUNC(nal_unit_header)(ctx, rw, &current->nal_unit_header,
1225 1 << H264_NAL_FILLER_DATA));
1226
1227 #ifdef READ
1228
2/2
✓ Branch 1 taken 927636 times.
✓ Branch 2 taken 34 times.
1855340 while (show_bits(rw, 8) == 0xff) {
1229
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 927636 times.
1855272 fixed(8, ff_byte, 0xff);
1230 1855272 ++current->filler_size;
1231 }
1232 #else
1233 {
1234 uint32_t i;
1235 for (i = 0; i < current->filler_size; i++)
1236 fixed(8, ff_byte, 0xff);
1237 }
1238 #endif
1239
1240
2/2
✓ Branch 1 taken 1 times.
✓ Branch 2 taken 33 times.
68 CHECK(FUNC(rbsp_trailing_bits)(ctx, rw));
1241
1242 66 return 0;
1243 }
1244
1245 4 static int FUNC(end_of_sequence)(CodedBitstreamContext *ctx, RWContext *rw,
1246 H264RawNALUnitHeader *current)
1247 {
1248 4 HEADER("End of Sequence");
1249
1250 4 return FUNC(nal_unit_header)(ctx, rw, current,
1251 1 << H264_NAL_END_SEQUENCE);
1252 }
1253
1254 4 static int FUNC(end_of_stream)(CodedBitstreamContext *ctx, RWContext *rw,
1255 H264RawNALUnitHeader *current)
1256 {
1257 4 HEADER("End of Stream");
1258
1259 4 return FUNC(nal_unit_header)(ctx, rw, current,
1260 1 << H264_NAL_END_STREAM);
1261 }
1262