FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/h264_parser.c
Date: 2024-03-29 11:55:30
Exec Total Coverage
Lines: 337 387 87.1%
Functions: 7 7 100.0%
Branches: 243 291 83.5%

Line Branch Exec Source
1 /*
2 * H.26L/H.264/AVC/JVT/14496-10/... parser
3 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 /**
23 * @file
24 * H.264 / AVC / MPEG-4 part10 parser.
25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */
27
28 #define UNCHECKED_BITSTREAM_READER 1
29
30 #include <stdint.h>
31
32 #include "libavutil/avutil.h"
33 #include "libavutil/error.h"
34 #include "libavutil/log.h"
35 #include "libavutil/mem.h"
36 #include "libavutil/pixfmt.h"
37
38 #include "avcodec.h"
39 #include "get_bits.h"
40 #include "golomb.h"
41 #include "h264.h"
42 #include "h264dsp.h"
43 #include "h264_parse.h"
44 #include "h264_sei.h"
45 #include "h264_ps.h"
46 #include "h2645_parse.h"
47 #include "h264data.h"
48 #include "mpegutils.h"
49 #include "parser.h"
50 #include "refstruct.h"
51 #include "startcode.h"
52
53 typedef struct H264ParseContext {
54 ParseContext pc;
55 H264ParamSets ps;
56 H264DSPContext h264dsp;
57 H264POCContext poc;
58 H264SEIContext sei;
59 int is_avc;
60 int nal_length_size;
61 int got_first;
62 int picture_structure;
63 uint8_t parse_history[6];
64 int parse_history_count;
65 int parse_last_mb;
66 int64_t reference_dts;
67 int last_frame_num, last_picture_structure;
68 } H264ParseContext;
69
70 39352 static int find_start_code(const uint8_t *buf, int buf_size,
71 int buf_index, int next_avc)
72 {
73 39352 uint32_t state = -1;
74
75 39352 buf_index = avpriv_find_start_code(buf + buf_index, buf + next_avc + 1, &state) - buf - 1;
76
77 39352 return FFMIN(buf_index, buf_size);
78 }
79
80 185902 static int h264_find_frame_end(H264ParseContext *p, const uint8_t *buf,
81 int buf_size, void *logctx)
82 {
83 int i, j;
84 uint32_t state;
85 185902 ParseContext *pc = &p->pc;
86
87
1/2
✓ Branch 0 taken 185902 times.
✗ Branch 1 not taken.
185902 int next_avc = p->is_avc ? 0 : buf_size;
88 // mb_addr= pc->mb_addr - 1;
89 185902 state = pc->state;
90
2/2
✓ Branch 0 taken 95 times.
✓ Branch 1 taken 185807 times.
185902 if (state > 13)
91 95 state = 7;
92
93
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 185902 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
185902 if (p->is_avc && !p->nal_length_size)
94 av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal length size invalid\n");
95
96
2/2
✓ Branch 0 taken 2567283 times.
✓ Branch 1 taken 159450 times.
2726733 for (i = 0; i < buf_size; i++) {
97
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2567283 times.
2567283 if (i >= next_avc) {
98 int64_t nalsize = 0;
99 i = next_avc;
100 for (j = 0; j < p->nal_length_size; j++)
101 nalsize = (nalsize << 8) | buf[i++];
102 if (!nalsize || nalsize > buf_size - i) {
103 av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal size %"PRId64" "
104 "remaining %d\n", nalsize, buf_size - i);
105 return buf_size;
106 }
107 next_avc = i + nalsize;
108 state = 5;
109 }
110
111
2/2
✓ Branch 0 taken 1205825 times.
✓ Branch 1 taken 1361458 times.
2567283 if (state == 7) {
112 1205825 i += p->h264dsp.startcode_find_candidate(buf + i, next_avc - i);
113
2/2
✓ Branch 0 taken 1049157 times.
✓ Branch 1 taken 156668 times.
1205825 if (i < next_avc)
114 1049157 state = 2;
115
2/2
✓ Branch 0 taken 1222061 times.
✓ Branch 1 taken 139397 times.
1361458 } else if (state <= 2) {
116
2/2
✓ Branch 0 taken 99686 times.
✓ Branch 1 taken 1122375 times.
1222061 if (buf[i] == 1)
117 99686 state ^= 5; // 2->7, 1->4, 0->5
118
2/2
✓ Branch 0 taken 949723 times.
✓ Branch 1 taken 172652 times.
1122375 else if (buf[i])
119 949723 state = 7;
120 else
121 172652 state >>= 1; // 2->1, 1->0, 0->0
122
2/2
✓ Branch 0 taken 74745 times.
✓ Branch 1 taken 64652 times.
139397 } else if (state <= 5) {
123 74745 int nalu_type = buf[i] & 0x1F;
124
6/6
✓ Branch 0 taken 72503 times.
✓ Branch 1 taken 2242 times.
✓ Branch 2 taken 71084 times.
✓ Branch 3 taken 1419 times.
✓ Branch 4 taken 58192 times.
✓ Branch 5 taken 12892 times.
74745 if (nalu_type == H264_NAL_SEI || nalu_type == H264_NAL_SPS ||
125
2/2
✓ Branch 0 taken 4620 times.
✓ Branch 1 taken 53572 times.
58192 nalu_type == H264_NAL_PPS || nalu_type == H264_NAL_AUD) {
126
2/2
✓ Branch 0 taken 8780 times.
✓ Branch 1 taken 12393 times.
21173 if (pc->frame_start_found) {
127 8780 i++;
128 8780 goto found;
129 }
130
5/6
✓ Branch 0 taken 1838 times.
✓ Branch 1 taken 51734 times.
✓ Branch 2 taken 1838 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 1305 times.
✓ Branch 5 taken 533 times.
53572 } else if (nalu_type == H264_NAL_SLICE || nalu_type == H264_NAL_DPA ||
131 nalu_type == H264_NAL_IDR_SLICE) {
132 53039 state += 8;
133 53039 continue;
134 }
135 12926 state = 7;
136 } else {
137 64652 unsigned int mb, last_mb = p->parse_last_mb;
138 GetBitContext gb;
139 64652 p->parse_history[p->parse_history_count++] = buf[i];
140
141 64652 init_get_bits(&gb, p->parse_history, 8*p->parse_history_count);
142 64652 mb= get_ue_golomb_long(&gb);
143
3/4
✓ Branch 1 taken 11613 times.
✓ Branch 2 taken 53039 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 11613 times.
64652 if (get_bits_left(&gb) > 0 || p->parse_history_count > 5) {
144 53039 p->parse_last_mb = mb;
145
2/2
✓ Branch 0 taken 26353 times.
✓ Branch 1 taken 26686 times.
53039 if (pc->frame_start_found) {
146
2/2
✓ Branch 0 taken 17672 times.
✓ Branch 1 taken 8681 times.
26353 if (mb <= last_mb) {
147 17672 i -= p->parse_history_count - 1;
148 17672 p->parse_history_count = 0;
149 17672 goto found;
150 }
151 } else
152 26686 pc->frame_start_found = 1;
153 35367 p->parse_history_count = 0;
154 35367 state = 7;
155 }
156 }
157 }
158 159450 pc->state = state;
159
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159450 times.
159450 if (p->is_avc)
160 return next_avc;
161 159450 return END_NOT_FOUND;
162
163 26452 found:
164 26452 pc->state = 7;
165 26452 pc->frame_start_found = 0;
166
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 26452 times.
26452 if (p->is_avc)
167 return next_avc;
168 26452 return i - (state & 5);
169 }
170
171 20408 static int scan_mmco_reset(AVCodecParserContext *s, GetBitContext *gb,
172 void *logctx)
173 {
174 H264PredWeightTable pwt;
175 20408 int slice_type_nos = s->pict_type & 3;
176 20408 H264ParseContext *p = s->priv_data;
177 int list_count, ref_count[2];
178
179
180
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 20408 times.
20408 if (p->ps.pps->redundant_pic_cnt_present)
181 get_ue_golomb(gb); // redundant_pic_count
182
183
2/2
✓ Branch 0 taken 1003 times.
✓ Branch 1 taken 19405 times.
20408 if (slice_type_nos == AV_PICTURE_TYPE_B)
184 1003 get_bits1(gb); // direct_spatial_mv_pred
185
186
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 20408 times.
20408 if (ff_h264_parse_ref_count(&list_count, ref_count, gb, p->ps.pps,
187 slice_type_nos, p->picture_structure, logctx) < 0)
188 return AVERROR_INVALIDDATA;
189
190
2/2
✓ Branch 0 taken 18587 times.
✓ Branch 1 taken 1821 times.
20408 if (slice_type_nos != AV_PICTURE_TYPE_I) {
191 int list;
192
2/2
✓ Branch 0 taken 19590 times.
✓ Branch 1 taken 18587 times.
38177 for (list = 0; list < list_count; list++) {
193
2/2
✓ Branch 1 taken 3020 times.
✓ Branch 2 taken 16570 times.
19590 if (get_bits1(gb)) {
194 int index;
195 14533 for (index = 0; ; index++) {
196 14533 unsigned int reordering_of_pic_nums_idc = get_ue_golomb_31(gb);
197
198
2/2
✓ Branch 0 taken 11513 times.
✓ Branch 1 taken 3020 times.
14533 if (reordering_of_pic_nums_idc < 3)
199 11513 get_ue_golomb_long(gb);
200
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3020 times.
3020 else if (reordering_of_pic_nums_idc > 3) {
201 av_log(logctx, AV_LOG_ERROR,
202 "illegal reordering_of_pic_nums_idc %d\n",
203 reordering_of_pic_nums_idc);
204 return AVERROR_INVALIDDATA;
205 } else
206 3020 break;
207
208
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 11513 times.
11513 if (index >= ref_count[list]) {
209 av_log(logctx, AV_LOG_ERROR,
210 "reference count %d overflow\n", index);
211 return AVERROR_INVALIDDATA;
212 }
213 }
214 }
215 }
216 }
217
218
4/4
✓ Branch 0 taken 3875 times.
✓ Branch 1 taken 16533 times.
✓ Branch 2 taken 521 times.
✓ Branch 3 taken 3354 times.
20408 if ((p->ps.pps->weighted_pred && slice_type_nos == AV_PICTURE_TYPE_P) ||
219
3/4
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 17030 times.
✓ Branch 2 taken 24 times.
✗ Branch 3 not taken.
17054 (p->ps.pps->weighted_bipred_idc == 1 && slice_type_nos == AV_PICTURE_TYPE_B))
220 3378 ff_h264_pred_weight_table(gb, p->ps.sps, ref_count, slice_type_nos,
221 &pwt, p->picture_structure, logctx);
222
223
2/2
✓ Branch 1 taken 2088 times.
✓ Branch 2 taken 18320 times.
20408 if (get_bits1(gb)) { // adaptive_ref_pic_marking_mode_flag
224 int i;
225
1/2
✓ Branch 0 taken 6005 times.
✗ Branch 1 not taken.
6005 for (i = 0; i < H264_MAX_MMCO_COUNT; i++) {
226 6005 MMCOOpcode opcode = get_ue_golomb_31(gb);
227
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 6005 times.
6005 if (opcode > (unsigned) MMCO_LONG) {
228 av_log(logctx, AV_LOG_ERROR,
229 "illegal memory management control operation %d\n",
230 opcode);
231 return AVERROR_INVALIDDATA;
232 }
233
2/2
✓ Branch 0 taken 2038 times.
✓ Branch 1 taken 3967 times.
6005 if (opcode == MMCO_END)
234 2038 return 0;
235
2/2
✓ Branch 0 taken 50 times.
✓ Branch 1 taken 3917 times.
3967 else if (opcode == MMCO_RESET)
236 50 return 1;
237
238
4/4
✓ Branch 0 taken 808 times.
✓ Branch 1 taken 3109 times.
✓ Branch 2 taken 333 times.
✓ Branch 3 taken 475 times.
3917 if (opcode == MMCO_SHORT2UNUSED || opcode == MMCO_SHORT2LONG)
239 3442 get_ue_golomb_long(gb); // difference_of_pic_nums_minus1
240
6/6
✓ Branch 0 taken 3584 times.
✓ Branch 1 taken 333 times.
✓ Branch 2 taken 3504 times.
✓ Branch 3 taken 80 times.
✓ Branch 4 taken 3488 times.
✓ Branch 5 taken 16 times.
3917 if (opcode == MMCO_SHORT2LONG || opcode == MMCO_LONG2UNUSED ||
241
2/2
✓ Branch 0 taken 379 times.
✓ Branch 1 taken 3109 times.
3488 opcode == MMCO_LONG || opcode == MMCO_SET_MAX_LONG)
242 808 get_ue_golomb_31(gb);
243 }
244 }
245
246 18320 return 0;
247 }
248
249 /**
250 * Parse NAL units of found picture and decode some basic information.
251 *
252 * @param s parser context.
253 * @param avctx codec context.
254 * @param buf buffer with field/frame data.
255 * @param buf_size size of the buffer.
256 */
257 33638 static inline int parse_nal_units(AVCodecParserContext *s,
258 AVCodecContext *avctx,
259 const uint8_t * const buf, int buf_size)
260 {
261 33638 H264ParseContext *p = s->priv_data;
262 33638 H2645RBSP rbsp = { NULL };
263 33638 H2645NAL nal = { NULL };
264 int buf_index, next_avc;
265 unsigned int pps_id;
266 unsigned int slice_type;
267 33638 int state = -1, got_reset = 0;
268
3/4
✓ Branch 0 taken 33316 times.
✓ Branch 1 taken 322 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 33316 times.
33638 int q264 = buf_size >=4 && !memcmp("Q264", buf, 4);
269 int field_poc[2];
270 int ret;
271
272 /* set some sane default values */
273 33638 s->pict_type = AV_PICTURE_TYPE_I;
274 33638 s->key_frame = 0;
275 33638 s->picture_structure = AV_PICTURE_STRUCTURE_UNKNOWN;
276
277 33638 ff_h264_sei_uninit(&p->sei);
278 33638 p->sei.common.frame_packing.arrangement_cancel_flag = -1;
279 33638 p->sei.common.unregistered.x264_build = -1;
280
281
2/2
✓ Branch 0 taken 322 times.
✓ Branch 1 taken 33316 times.
33638 if (!buf_size)
282 322 return 0;
283
284 33316 av_fast_padded_malloc(&rbsp.rbsp_buffer, &rbsp.rbsp_buffer_alloc_size, buf_size);
285
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33316 times.
33316 if (!rbsp.rbsp_buffer)
286 return AVERROR(ENOMEM);
287
288 33316 buf_index = 0;
289
2/2
✓ Branch 0 taken 26770 times.
✓ Branch 1 taken 6546 times.
33316 next_avc = p->is_avc ? 0 : buf_size;
290 16648 for (;;) {
291 const SPS *sps;
292 49964 int src_length, consumed, nalsize = 0;
293
294
2/2
✓ Branch 0 taken 10612 times.
✓ Branch 1 taken 39352 times.
49964 if (buf_index >= next_avc) {
295 10612 nalsize = get_nalsize(p->nal_length_size, buf, buf_size, &buf_index, avctx);
296
2/2
✓ Branch 0 taken 332 times.
✓ Branch 1 taken 10280 times.
10612 if (nalsize < 0)
297 332 break;
298 10280 next_avc = buf_index + nalsize;
299 } else {
300 39352 buf_index = find_start_code(buf, buf_size, buf_index, next_avc);
301
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 39352 times.
39352 if (buf_index >= buf_size)
302 break;
303
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 39352 times.
39352 if (buf_index >= next_avc)
304 continue;
305 }
306 49632 src_length = next_avc - buf_index;
307
308 49632 state = buf[buf_index];
309
2/2
✓ Branch 0 taken 32984 times.
✓ Branch 1 taken 16648 times.
49632 switch (state & 0x1f) {
310 32984 case H264_NAL_SLICE:
311 case H264_NAL_IDR_SLICE:
312 // Do not walk the whole buffer just to decode slice header
313
4/4
✓ Branch 0 taken 32135 times.
✓ Branch 1 taken 849 times.
✓ Branch 2 taken 11185 times.
✓ Branch 3 taken 20950 times.
32984 if ((state & 0x1f) == H264_NAL_IDR_SLICE || ((state >> 5) & 0x3) == 0) {
314 /* IDR or disposable slice
315 * No need to decode many bytes because MMCOs shall not be present. */
316
2/2
✓ Branch 0 taken 11630 times.
✓ Branch 1 taken 404 times.
12034 if (src_length > 60)
317 11630 src_length = 60;
318 } else {
319 /* To decode up to MMCOs */
320
2/2
✓ Branch 0 taken 11809 times.
✓ Branch 1 taken 9141 times.
20950 if (src_length > 1000)
321 11809 src_length = 1000;
322 }
323 32984 break;
324 }
325 49632 consumed = ff_h2645_extract_rbsp(buf + buf_index, src_length, &rbsp, &nal, 1);
326
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 49632 times.
49632 if (consumed < 0)
327 break;
328
329 49632 buf_index += consumed;
330
331 49632 ret = init_get_bits8(&nal.gb, nal.data, nal.size);
332
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 49632 times.
49632 if (ret < 0)
333 goto fail;
334 49632 get_bits1(&nal.gb);
335 49632 nal.ref_idc = get_bits(&nal.gb, 2);
336 49632 nal.type = get_bits(&nal.gb, 5);
337
338
6/6
✓ Branch 0 taken 924 times.
✓ Branch 1 taken 7626 times.
✓ Branch 2 taken 4223 times.
✓ Branch 3 taken 849 times.
✓ Branch 4 taken 32135 times.
✓ Branch 5 taken 3875 times.
49632 switch (nal.type) {
339 924 case H264_NAL_SPS:
340 924 ff_h264_decode_seq_parameter_set(&nal.gb, avctx, &p->ps, 0);
341 924 break;
342 7626 case H264_NAL_PPS:
343 7626 ff_h264_decode_picture_parameter_set(&nal.gb, avctx, &p->ps,
344 nal.size_bits);
345 7626 break;
346 4223 case H264_NAL_SEI:
347 4223 ff_h264_sei_decode(&p->sei, &nal.gb, &p->ps, avctx);
348 4223 break;
349 849 case H264_NAL_IDR_SLICE:
350 849 s->key_frame = 1;
351
352 849 p->poc.prev_frame_num = 0;
353 849 p->poc.prev_frame_num_offset = 0;
354 849 p->poc.prev_poc_msb =
355 849 p->poc.prev_poc_lsb = 0;
356 /* fall through */
357 32984 case H264_NAL_SLICE:
358 32984 get_ue_golomb_long(&nal.gb); // skip first_mb_in_slice
359 32984 slice_type = get_ue_golomb_31(&nal.gb);
360 32984 s->pict_type = ff_h264_golomb_to_pict_type[slice_type % 5];
361
2/2
✓ Branch 0 taken 205 times.
✓ Branch 1 taken 32779 times.
32984 if (p->sei.recovery_point.recovery_frame_cnt >= 0) {
362 /* key frame, since recovery_frame_cnt is set */
363 205 s->key_frame = 1;
364 }
365 32984 pps_id = get_ue_golomb(&nal.gb);
366
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 32984 times.
32984 if (pps_id >= MAX_PPS_COUNT) {
367 av_log(avctx, AV_LOG_ERROR,
368 "pps_id %u out of range\n", pps_id);
369 goto fail;
370 }
371
2/2
✓ Branch 0 taken 568 times.
✓ Branch 1 taken 32416 times.
32984 if (!p->ps.pps_list[pps_id]) {
372 568 av_log(avctx, AV_LOG_ERROR,
373 "non-existing PPS %u referenced\n", pps_id);
374 568 goto fail;
375 }
376
377 32416 ff_refstruct_replace(&p->ps.pps, p->ps.pps_list[pps_id]);
378 32416 p->ps.sps = p->ps.pps->sps;
379 32416 sps = p->ps.sps;
380
381 // heuristic to detect non marked keyframes
382
6/6
✓ Branch 0 taken 8643 times.
✓ Branch 1 taken 23773 times.
✓ Branch 2 taken 8509 times.
✓ Branch 3 taken 134 times.
✓ Branch 4 taken 1029 times.
✓ Branch 5 taken 7480 times.
32416 if (p->ps.sps->ref_frame_count <= 1 && p->ps.pps->ref_count[0] <= 1 && s->pict_type == AV_PICTURE_TYPE_I)
383 1029 s->key_frame = 1;
384
385 32416 p->poc.frame_num = get_bits(&nal.gb, sps->log2_max_frame_num);
386
387 32416 s->coded_width = 16 * sps->mb_width;
388 32416 s->coded_height = 16 * sps->mb_height;
389 32416 s->width = s->coded_width - (sps->crop_right + sps->crop_left);
390 32416 s->height = s->coded_height - (sps->crop_top + sps->crop_bottom);
391
2/4
✓ Branch 0 taken 32416 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 32416 times.
32416 if (s->width <= 0 || s->height <= 0) {
392 s->width = s->coded_width;
393 s->height = s->coded_height;
394 }
395
396
3/4
✓ Branch 0 taken 150 times.
✓ Branch 1 taken 285 times.
✓ Branch 2 taken 31981 times.
✗ Branch 3 not taken.
32416 switch (sps->bit_depth_luma) {
397 150 case 9:
398
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 150 times.
150 if (sps->chroma_format_idc == 3) s->format = AV_PIX_FMT_YUV444P9;
399
2/2
✓ Branch 0 taken 50 times.
✓ Branch 1 taken 100 times.
150 else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P9;
400 100 else s->format = AV_PIX_FMT_YUV420P9;
401 150 break;
402 285 case 10:
403
2/2
✓ Branch 0 taken 50 times.
✓ Branch 1 taken 235 times.
285 if (sps->chroma_format_idc == 3) s->format = AV_PIX_FMT_YUV444P10;
404
2/2
✓ Branch 0 taken 87 times.
✓ Branch 1 taken 148 times.
235 else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P10;
405 148 else s->format = AV_PIX_FMT_YUV420P10;
406 285 break;
407 31981 case 8:
408
2/2
✓ Branch 0 taken 893 times.
✓ Branch 1 taken 31088 times.
31981 if (sps->chroma_format_idc == 3) s->format = AV_PIX_FMT_YUV444P;
409
2/2
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 31078 times.
31088 else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P;
410 31078 else s->format = AV_PIX_FMT_YUV420P;
411 31981 break;
412 default:
413 s->format = AV_PIX_FMT_NONE;
414 }
415
416 32416 avctx->profile = ff_h264_get_profile(sps);
417 32416 avctx->level = sps->level_idc;
418
419
2/2
✓ Branch 0 taken 23197 times.
✓ Branch 1 taken 9219 times.
32416 if (sps->frame_mbs_only_flag) {
420 23197 p->picture_structure = PICT_FRAME;
421 } else {
422
2/2
✓ Branch 1 taken 6290 times.
✓ Branch 2 taken 2929 times.
9219 if (get_bits1(&nal.gb)) { // field_pic_flag
423 6290 p->picture_structure = PICT_TOP_FIELD + get_bits1(&nal.gb); // bottom_field_flag
424 } else {
425 2929 p->picture_structure = PICT_FRAME;
426 }
427 }
428
429
2/2
✓ Branch 0 taken 847 times.
✓ Branch 1 taken 31569 times.
32416 if (nal.type == H264_NAL_IDR_SLICE)
430 847 get_ue_golomb_long(&nal.gb); /* idr_pic_id */
431
2/2
✓ Branch 0 taken 24472 times.
✓ Branch 1 taken 7944 times.
32416 if (sps->poc_type == 0) {
432 24472 p->poc.poc_lsb = get_bits(&nal.gb, sps->log2_max_poc_lsb);
433
434
2/2
✓ Branch 0 taken 4233 times.
✓ Branch 1 taken 20239 times.
24472 if (p->ps.pps->pic_order_present == 1 &&
435
2/2
✓ Branch 0 taken 3278 times.
✓ Branch 1 taken 955 times.
4233 p->picture_structure == PICT_FRAME)
436 3278 p->poc.delta_poc_bottom = get_se_golomb(&nal.gb);
437 }
438
439
2/2
✓ Branch 0 taken 3245 times.
✓ Branch 1 taken 29171 times.
32416 if (sps->poc_type == 1 &&
440
2/2
✓ Branch 0 taken 3071 times.
✓ Branch 1 taken 174 times.
3245 !sps->delta_pic_order_always_zero_flag) {
441 3071 p->poc.delta_poc[0] = get_se_golomb(&nal.gb);
442
443
2/2
✓ Branch 0 taken 692 times.
✓ Branch 1 taken 2379 times.
3071 if (p->ps.pps->pic_order_present == 1 &&
444
2/2
✓ Branch 0 taken 406 times.
✓ Branch 1 taken 286 times.
692 p->picture_structure == PICT_FRAME)
445 406 p->poc.delta_poc[1] = get_se_golomb(&nal.gb);
446 }
447
448 /* Decode POC of this picture.
449 * The prev_ values needed for decoding POC of the next picture are not set here. */
450 32416 field_poc[0] = field_poc[1] = INT_MAX;
451 32416 ret = ff_h264_init_poc(field_poc, &s->output_picture_number, sps,
452 &p->poc, p->picture_structure, nal.ref_idc);
453
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 32416 times.
32416 if (ret < 0)
454 goto fail;
455
456 /* Continue parsing to check if MMCO_RESET is present.
457 * FIXME: MMCO_RESET could appear in non-first slice.
458 * Maybe, we should parse all undisposable non-IDR slice of this
459 * picture until encountering MMCO_RESET in a slice of it. */
460
4/4
✓ Branch 0 taken 21255 times.
✓ Branch 1 taken 11161 times.
✓ Branch 2 taken 20408 times.
✓ Branch 3 taken 847 times.
32416 if (nal.ref_idc && nal.type != H264_NAL_IDR_SLICE) {
461 20408 got_reset = scan_mmco_reset(s, &nal.gb, avctx);
462
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 20408 times.
20408 if (got_reset < 0)
463 goto fail;
464 }
465
466 /* Set up the prev_ values for decoding POC of the next picture. */
467
2/2
✓ Branch 0 taken 32366 times.
✓ Branch 1 taken 50 times.
32416 p->poc.prev_frame_num = got_reset ? 0 : p->poc.frame_num;
468
2/2
✓ Branch 0 taken 32366 times.
✓ Branch 1 taken 50 times.
32416 p->poc.prev_frame_num_offset = got_reset ? 0 : p->poc.frame_num_offset;
469
2/2
✓ Branch 0 taken 21255 times.
✓ Branch 1 taken 11161 times.
32416 if (nal.ref_idc != 0) {
470
2/2
✓ Branch 0 taken 21205 times.
✓ Branch 1 taken 50 times.
21255 if (!got_reset) {
471 21205 p->poc.prev_poc_msb = p->poc.poc_msb;
472 21205 p->poc.prev_poc_lsb = p->poc.poc_lsb;
473 } else {
474 50 p->poc.prev_poc_msb = 0;
475 50 p->poc.prev_poc_lsb =
476
1/2
✓ Branch 0 taken 50 times.
✗ Branch 1 not taken.
50 p->picture_structure == PICT_BOTTOM_FIELD ? 0 : field_poc[0];
477 }
478 }
479
480
2/2
✓ Branch 0 taken 2989 times.
✓ Branch 1 taken 29427 times.
32416 if (p->sei.picture_timing.present) {
481 2989 ret = ff_h264_sei_process_picture_timing(&p->sei.picture_timing,
482 sps, avctx);
483
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2989 times.
2989 if (ret < 0) {
484 av_log(avctx, AV_LOG_ERROR, "Error processing the picture timing SEI\n");
485 p->sei.picture_timing.present = 0;
486 }
487 }
488
489
4/4
✓ Branch 0 taken 3385 times.
✓ Branch 1 taken 29031 times.
✓ Branch 2 taken 2977 times.
✓ Branch 3 taken 408 times.
32416 if (sps->pic_struct_present_flag && p->sei.picture_timing.present) {
490
3/6
✓ Branch 0 taken 830 times.
✓ Branch 1 taken 2009 times.
✓ Branch 2 taken 138 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
5954 switch (p->sei.picture_timing.pic_struct) {
491 830 case H264_SEI_PIC_STRUCT_TOP_FIELD:
492 case H264_SEI_PIC_STRUCT_BOTTOM_FIELD:
493 830 s->repeat_pict = 0;
494 830 break;
495 2009 case H264_SEI_PIC_STRUCT_FRAME:
496 case H264_SEI_PIC_STRUCT_TOP_BOTTOM:
497 case H264_SEI_PIC_STRUCT_BOTTOM_TOP:
498 2009 s->repeat_pict = 1;
499 2009 break;
500 138 case H264_SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
501 case H264_SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
502 138 s->repeat_pict = 2;
503 138 break;
504 case H264_SEI_PIC_STRUCT_FRAME_DOUBLING:
505 s->repeat_pict = 3;
506 break;
507 case H264_SEI_PIC_STRUCT_FRAME_TRIPLING:
508 s->repeat_pict = 5;
509 break;
510 default:
511 s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0;
512 break;
513 }
514 } else {
515 29439 s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0;
516 }
517
518
2/2
✓ Branch 0 taken 26126 times.
✓ Branch 1 taken 6290 times.
32416 if (p->picture_structure == PICT_FRAME) {
519 26126 s->picture_structure = AV_PICTURE_STRUCTURE_FRAME;
520
4/4
✓ Branch 0 taken 2226 times.
✓ Branch 1 taken 23900 times.
✓ Branch 2 taken 2147 times.
✓ Branch 3 taken 79 times.
26126 if (sps->pic_struct_present_flag && p->sei.picture_timing.present) {
521
3/3
✓ Branch 0 taken 1422 times.
✓ Branch 1 taken 150 times.
✓ Branch 2 taken 575 times.
4294 switch (p->sei.picture_timing.pic_struct) {
522 1422 case H264_SEI_PIC_STRUCT_TOP_BOTTOM:
523 case H264_SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
524 1422 s->field_order = AV_FIELD_TT;
525 1422 break;
526 150 case H264_SEI_PIC_STRUCT_BOTTOM_TOP:
527 case H264_SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
528 150 s->field_order = AV_FIELD_BB;
529 150 break;
530 575 default:
531 575 s->field_order = AV_FIELD_PROGRESSIVE;
532 575 break;
533 }
534 } else {
535
2/2
✓ Branch 0 taken 1041 times.
✓ Branch 1 taken 22938 times.
23979 if (field_poc[0] < field_poc[1])
536 1041 s->field_order = AV_FIELD_TT;
537
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 22935 times.
22938 else if (field_poc[0] > field_poc[1])
538 3 s->field_order = AV_FIELD_BB;
539 else
540 22935 s->field_order = AV_FIELD_PROGRESSIVE;
541 }
542 } else {
543
2/2
✓ Branch 0 taken 3242 times.
✓ Branch 1 taken 3048 times.
6290 if (p->picture_structure == PICT_TOP_FIELD)
544 3242 s->picture_structure = AV_PICTURE_STRUCTURE_TOP_FIELD;
545 else
546 3048 s->picture_structure = AV_PICTURE_STRUCTURE_BOTTOM_FIELD;
547
2/2
✓ Branch 0 taken 4762 times.
✓ Branch 1 taken 1528 times.
6290 if (p->poc.frame_num == p->last_frame_num &&
548
1/2
✓ Branch 0 taken 4762 times.
✗ Branch 1 not taken.
4762 p->last_picture_structure != AV_PICTURE_STRUCTURE_UNKNOWN &&
549
1/2
✓ Branch 0 taken 4762 times.
✗ Branch 1 not taken.
4762 p->last_picture_structure != AV_PICTURE_STRUCTURE_FRAME &&
550
2/2
✓ Branch 0 taken 4639 times.
✓ Branch 1 taken 123 times.
4762 p->last_picture_structure != s->picture_structure) {
551
2/2
✓ Branch 0 taken 3042 times.
✓ Branch 1 taken 1597 times.
4639 if (p->last_picture_structure == AV_PICTURE_STRUCTURE_TOP_FIELD)
552 3042 s->field_order = AV_FIELD_TT;
553 else
554 1597 s->field_order = AV_FIELD_BB;
555 } else {
556 1651 s->field_order = AV_FIELD_UNKNOWN;
557 }
558 6290 p->last_picture_structure = s->picture_structure;
559 6290 p->last_frame_num = p->poc.frame_num;
560 }
561
2/2
✓ Branch 0 taken 9443 times.
✓ Branch 1 taken 22973 times.
32416 if (sps->timing_info_present_flag) {
562 9443 int64_t den = sps->time_scale;
563
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 9443 times.
9443 if (p->sei.common.unregistered.x264_build < 44U)
564 den *= 2;
565 9443 av_reduce(&avctx->framerate.den, &avctx->framerate.num,
566 9443 sps->num_units_in_tick * 2, den, 1 << 30);
567 }
568
569 32416 av_freep(&rbsp.rbsp_buffer);
570 32416 return 0; /* no need to evaluate the rest */
571 }
572 }
573
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 332 times.
332 if (q264) {
574 av_freep(&rbsp.rbsp_buffer);
575 return 0;
576 }
577 /* didn't find a picture! */
578 332 av_log(avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size);
579 900 fail:
580 900 av_freep(&rbsp.rbsp_buffer);
581 900 return -1;
582 }
583
584 192505 static int h264_parse(AVCodecParserContext *s,
585 AVCodecContext *avctx,
586 const uint8_t **poutbuf, int *poutbuf_size,
587 const uint8_t *buf, int buf_size)
588 {
589 192505 H264ParseContext *p = s->priv_data;
590 192505 ParseContext *pc = &p->pc;
591 192505 AVRational time_base = { 0, 1 };
592 int next;
593
594
2/2
✓ Branch 0 taken 437 times.
✓ Branch 1 taken 192068 times.
192505 if (!p->got_first) {
595 437 p->got_first = 1;
596
2/2
✓ Branch 0 taken 207 times.
✓ Branch 1 taken 230 times.
437 if (avctx->extradata_size) {
597 207 ff_h264_decode_extradata(avctx->extradata, avctx->extradata_size,
598 &p->ps, &p->is_avc, &p->nal_length_size,
599 avctx->err_recognition, avctx);
600 }
601 }
602
603
2/2
✓ Branch 0 taken 6722 times.
✓ Branch 1 taken 185783 times.
192505 if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
604 6722 next = buf_size;
605 } else {
606 185783 next = h264_find_frame_end(p, buf, buf_size, avctx);
607
608
2/2
✓ Branch 1 taken 158867 times.
✓ Branch 2 taken 26916 times.
185783 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
609 158867 *poutbuf = NULL;
610 158867 *poutbuf_size = 0;
611 158867 return buf_size;
612 }
613
614
4/4
✓ Branch 0 taken 583 times.
✓ Branch 1 taken 26333 times.
✓ Branch 2 taken 119 times.
✓ Branch 3 taken 464 times.
26916 if (next < 0 && next != END_NOT_FOUND) {
615 av_assert1(pc->last_index + next >= 0);
616 119 h264_find_frame_end(p, &pc->buffer[pc->last_index + next], -next, avctx); // update state
617 }
618 }
619
620 33638 parse_nal_units(s, avctx, buf, buf_size);
621
622
2/2
✓ Branch 0 taken 9874 times.
✓ Branch 1 taken 23764 times.
33638 if (avctx->framerate.num)
623 9874 time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){2, 1}));
624
2/2
✓ Branch 0 taken 1957 times.
✓ Branch 1 taken 31681 times.
33638 if (p->sei.picture_timing.cpb_removal_delay >= 0) {
625 1957 s->dts_sync_point = p->sei.buffering_period.present;
626 1957 s->dts_ref_dts_delta = p->sei.picture_timing.cpb_removal_delay;
627 1957 s->pts_dts_delta = p->sei.picture_timing.dpb_output_delay;
628 } else {
629 31681 s->dts_sync_point = INT_MIN;
630 31681 s->dts_ref_dts_delta = INT_MIN;
631 31681 s->pts_dts_delta = INT_MIN;
632 }
633
634
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 33638 times.
33638 if (s->flags & PARSER_FLAG_ONCE) {
635 s->flags &= PARSER_FLAG_COMPLETE_FRAMES;
636 }
637
638
2/2
✓ Branch 0 taken 1957 times.
✓ Branch 1 taken 31681 times.
33638 if (s->dts_sync_point >= 0) {
639 1957 int64_t den = time_base.den * (int64_t)avctx->pkt_timebase.num;
640
1/2
✓ Branch 0 taken 1957 times.
✗ Branch 1 not taken.
1957 if (den > 0) {
641 1957 int64_t num = time_base.num * (int64_t)avctx->pkt_timebase.den;
642
2/2
✓ Branch 0 taken 1555 times.
✓ Branch 1 taken 402 times.
1957 if (s->dts != AV_NOPTS_VALUE) {
643 // got DTS from the stream, update reference timestamp
644 1555 p->reference_dts = av_sat_sub64(s->dts, av_rescale(s->dts_ref_dts_delta, num, den));
645
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 402 times.
402 } else if (p->reference_dts != AV_NOPTS_VALUE) {
646 // compute DTS based on reference timestamp
647 s->dts = av_sat_add64(p->reference_dts, av_rescale(s->dts_ref_dts_delta, num, den));
648 }
649
650
3/4
✓ Branch 0 taken 1555 times.
✓ Branch 1 taken 402 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 1555 times.
1957 if (p->reference_dts != AV_NOPTS_VALUE && s->pts == AV_NOPTS_VALUE)
651 s->pts = s->dts + av_rescale(s->pts_dts_delta, num, den);
652
653
2/2
✓ Branch 0 taken 133 times.
✓ Branch 1 taken 1824 times.
1957 if (s->dts_sync_point > 0)
654 133 p->reference_dts = s->dts; // new reference
655 }
656 }
657
658 33638 *poutbuf = buf;
659 33638 *poutbuf_size = buf_size;
660 33638 return next;
661 }
662
663 440 static void h264_close(AVCodecParserContext *s)
664 {
665 440 H264ParseContext *p = s->priv_data;
666 440 ParseContext *pc = &p->pc;
667
668 440 av_freep(&pc->buffer);
669
670 440 ff_h264_sei_uninit(&p->sei);
671 440 ff_h264_ps_uninit(&p->ps);
672 440 }
673
674 440 static av_cold int init(AVCodecParserContext *s)
675 {
676 440 H264ParseContext *p = s->priv_data;
677
678 440 p->reference_dts = AV_NOPTS_VALUE;
679 440 p->last_frame_num = INT_MAX;
680 440 ff_h264dsp_init(&p->h264dsp, 8, 1);
681 440 return 0;
682 }
683
684 const AVCodecParser ff_h264_parser = {
685 .codec_ids = { AV_CODEC_ID_H264 },
686 .priv_data_size = sizeof(H264ParseContext),
687 .parser_init = init,
688 .parser_parse = h264_parse,
689 .parser_close = h264_close,
690 };
691