FFmpeg
Loading...
Searching...
No Matches
h264_parser.c
Go to the documentation of this file.
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
33#include "libavutil/avutil.h"
34#include "libavutil/error.h"
35#include "libavutil/log.h"
36#include "libavutil/mem.h"
37#include "libavutil/pixfmt.h"
38
39#include "avcodec.h"
40#include "get_bits.h"
41#include "golomb.h"
42#include "h264.h"
43#include "h264dsp.h"
44#include "h264_parse.h"
45#include "h264_sei.h"
46#include "h264_ps.h"
47#include "h2645_parse.h"
48#include "h264data.h"
49#include "mpegutils.h"
50#include "parser.h"
51#include "libavutil/refstruct.h"
52#include "parser_internal.h"
53#include "startcode.h"
54
71
72static int find_start_code(const uint8_t *buf, int buf_size,
73 int buf_index, int next_avc)
74{
75 uint32_t state = -1;
76
77 buf_index = avpriv_find_start_code(buf + buf_index, buf + next_avc + 1, &state) - buf - 1;
78
79 return FFMIN(buf_index, buf_size);
80}
81
82static int h264_find_frame_end(H264ParseContext *p, const uint8_t *buf,
83 int buf_size, void *logctx)
84{
85 int i, j;
86 uint32_t state;
87 ParseContext *pc = &p->pc;
88
89 int next_avc = p->is_avc ? 0 : buf_size;
90// mb_addr= pc->mb_addr - 1;
91 state = pc->state;
92 if (state > 13)
93 state = 7;
94
95 if (p->is_avc && !p->nal_length_size)
96 av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal length size invalid\n");
97
98 for (i = 0; i < buf_size; i++) {
99 if (i >= next_avc) {
100 int64_t nalsize = 0;
101 i = next_avc;
102 for (j = 0; j < p->nal_length_size; j++)
103 nalsize = (nalsize << 8) | buf[i++];
104 if (!nalsize || nalsize > buf_size - i) {
105 av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal size %"PRId64" "
106 "remaining %d\n", nalsize, buf_size - i);
107 return buf_size;
108 }
109 next_avc = i + nalsize;
110 state = 5;
111 }
112
113 if (state == 7) {
114 i += p->h264dsp.startcode_find_candidate(buf + i, next_avc - i);
115 if (i < next_avc)
116 state = 2;
117 } else if (state <= 2) {
118 if (buf[i] == 1)
119 state ^= 5; // 2->7, 1->4, 0->5
120 else if (buf[i])
121 state = 7;
122 else
123 state >>= 1; // 2->1, 1->0, 0->0
124 } else if (state <= 5) {
125 int nalu_type = buf[i] & 0x1F;
126 if (nalu_type == H264_NAL_SEI || nalu_type == H264_NAL_SPS ||
127 nalu_type == H264_NAL_PPS || nalu_type == H264_NAL_AUD) {
128 if (pc->frame_start_found) {
129 i++;
130 goto found;
131 }
132 } else if (nalu_type == H264_NAL_SLICE || nalu_type == H264_NAL_DPA ||
133 nalu_type == H264_NAL_IDR_SLICE) {
134 state += 8;
135 continue;
136 }
137 state = 7;
138 } else {
139 unsigned int mb, last_mb = p->parse_last_mb;
140 GetBitContext gb;
141 p->parse_history[p->parse_history_count++] = buf[i];
142
143 init_get_bits(&gb, p->parse_history, 8*p->parse_history_count);
145 if (get_bits_left(&gb) > 0 || p->parse_history_count > 5) {
146 p->parse_last_mb = mb;
147 if (pc->frame_start_found) {
148 if (mb <= last_mb) {
149 i -= p->parse_history_count - 1;
150 p->parse_history_count = 0;
151 goto found;
152 }
153 } else
154 pc->frame_start_found = 1;
155 p->parse_history_count = 0;
156 state = 7;
157 }
158 }
159 }
160 pc->state = state;
161 if (p->is_avc)
162 return next_avc;
163 return END_NOT_FOUND;
164
165found:
166 pc->state = 7;
167 pc->frame_start_found = 0;
168 if (p->is_avc)
169 return next_avc;
170 return i - (state & 5);
171}
172
174 void *logctx)
175{
177 int slice_type_nos = s->pict_type & 3;
178 H264ParseContext *p = s->priv_data;
179 int list_count, ref_count[2];
180
181
182 if (p->ps.pps->redundant_pic_cnt_present)
183 get_ue_golomb(gb); // redundant_pic_count
184
185 if (slice_type_nos == AV_PICTURE_TYPE_B)
186 get_bits1(gb); // direct_spatial_mv_pred
187
188 if (ff_h264_parse_ref_count(&list_count, ref_count, gb, p->ps.pps,
189 slice_type_nos, p->picture_structure, logctx) < 0)
190 return AVERROR_INVALIDDATA;
191
192 if (slice_type_nos != AV_PICTURE_TYPE_I) {
193 int list;
194 for (list = 0; list < list_count; list++) {
195 if (get_bits1(gb)) {
196 int index;
197 for (index = 0; ; index++) {
198 unsigned int reordering_of_pic_nums_idc = get_ue_golomb_31(gb);
199
200 if (reordering_of_pic_nums_idc < 3)
202 else if (reordering_of_pic_nums_idc > 3) {
203 av_log(logctx, AV_LOG_ERROR,
204 "illegal reordering_of_pic_nums_idc %d\n",
205 reordering_of_pic_nums_idc);
206 return AVERROR_INVALIDDATA;
207 } else
208 break;
209
210 if (index >= ref_count[list]) {
211 av_log(logctx, AV_LOG_ERROR,
212 "reference count %d overflow\n", index);
213 return AVERROR_INVALIDDATA;
214 }
215 }
216 }
217 }
218 }
219
220 if ((p->ps.pps->weighted_pred && slice_type_nos == AV_PICTURE_TYPE_P) ||
221 (p->ps.pps->weighted_bipred_idc == 1 && slice_type_nos == AV_PICTURE_TYPE_B))
222 ff_h264_pred_weight_table(gb, p->ps.sps, ref_count, slice_type_nos,
223 &pwt, p->picture_structure, logctx);
224
225 if (get_bits1(gb)) { // adaptive_ref_pic_marking_mode_flag
226 int i;
227 for (i = 0; i < H264_MAX_MMCO_COUNT; i++) {
228 if (get_bits_left(gb) < 1)
229 return AVERROR_INVALIDDATA;
230
231 MMCOOpcode opcode = get_ue_golomb_31(gb);
232 if (opcode > (unsigned) MMCO_LONG) {
233 av_log(logctx, AV_LOG_ERROR,
234 "illegal memory management control operation %d\n",
235 opcode);
236 return AVERROR_INVALIDDATA;
237 }
238 if (opcode == MMCO_END)
239 return 0;
240 else if (opcode == MMCO_RESET)
241 return 1;
242
243 if (opcode == MMCO_SHORT2UNUSED || opcode == MMCO_SHORT2LONG)
244 get_ue_golomb_long(gb); // difference_of_pic_nums_minus1
245 if (opcode == MMCO_SHORT2LONG || opcode == MMCO_LONG2UNUSED ||
246 opcode == MMCO_LONG || opcode == MMCO_SET_MAX_LONG)
248 }
249 }
250
251 return 0;
252}
253
254/**
255 * Parse NAL units of found picture and decode some basic information.
256 *
257 * @param s parser context.
258 * @param avctx codec context.
259 * @param buf buffer with field/frame data.
260 * @param buf_size size of the buffer.
261 */
263 AVCodecContext *avctx,
264 const uint8_t * const buf, int buf_size)
265{
266 H264ParseContext *p = s->priv_data;
267 H2645RBSP rbsp = { NULL };
268 H2645NAL nal = { NULL };
269 int buf_index, next_avc;
270 unsigned int pps_id;
271 unsigned int slice_type;
272 int state = -1, got_reset = 0;
273 int q264 = buf_size >=4 && !memcmp("Q264", buf, 4);
274 int field_poc[2];
275 int ret;
276
277 /* set some sane default values */
278 s->pict_type = AV_PICTURE_TYPE_I;
279 s->key_frame = 0;
280 s->picture_structure = AV_PICTURE_STRUCTURE_UNKNOWN;
281
282 ff_h264_sei_uninit(&p->sei);
283 p->sei.common.frame_packing.arrangement_cancel_flag = -1;
284 p->sei.common.unregistered.x264_build = -1;
285
286 if (!buf_size)
287 return 0;
288
290 if (!rbsp.rbsp_buffer)
291 return AVERROR(ENOMEM);
292
293 buf_index = 0;
294 next_avc = p->is_avc ? 0 : buf_size;
295 for (;;) {
296 const SPS *sps;
297 int src_length, consumed, nalsize = 0;
298
299 if (buf_index >= next_avc) {
300 nalsize = get_nalsize(p->nal_length_size, buf, buf_size, &buf_index, avctx);
301 if (nalsize < 0)
302 break;
303 next_avc = buf_index + nalsize;
304 } else {
305 buf_index = find_start_code(buf, buf_size, buf_index, next_avc);
306 if (buf_index >= buf_size)
307 break;
308 if (buf_index >= next_avc)
309 continue;
310 }
311 src_length = next_avc - buf_index;
312
313 state = buf[buf_index];
314 switch (state & 0x1f) {
315 case H264_NAL_SLICE:
317 case H264_NAL_DPA:
318 // Do not walk the whole buffer just to decode slice header
319 if ((state & 0x1f) == H264_NAL_IDR_SLICE || ((state >> 5) & 0x3) == 0) {
320 /* IDR or disposable slice
321 * No need to decode many bytes because MMCOs shall not be present. */
322 if (src_length > 60)
323 src_length = 60;
324 } else {
325 /* To decode up to MMCOs */
326 if (src_length > 1000)
327 src_length = 1000;
328 }
329 break;
330 }
331 consumed = ff_h2645_extract_rbsp(buf + buf_index, src_length, &rbsp, &nal, 1);
332 if (consumed < 0)
333 break;
334
335 buf_index += consumed;
336
337 ret = init_get_bits8(&nal.gb, nal.data, nal.size);
338 if (ret < 0)
339 goto fail;
340 get_bits1(&nal.gb);
341 nal.ref_idc = get_bits(&nal.gb, 2);
342 nal.type = get_bits(&nal.gb, 5);
343
344 switch (nal.type) {
345 case H264_NAL_SPS:
346 ff_h264_decode_seq_parameter_set(&nal.gb, avctx, &p->ps, 0);
347 break;
348 case H264_NAL_PPS:
349 ff_h264_decode_picture_parameter_set(&nal.gb, avctx, &p->ps,
350 nal.size_bits);
351 break;
352 case H264_NAL_SEI:
353 ff_h264_sei_decode(&p->sei, &nal.gb, &p->ps, avctx);
354 break;
356 s->key_frame = 1;
357
358 p->poc.prev_frame_num = 0;
359 p->poc.prev_frame_num_offset = 0;
360 p->poc.prev_poc_msb =
361 p->poc.prev_poc_lsb = 0;
363 case H264_NAL_SLICE:
364 case H264_NAL_DPA: // starts with a slice header too
365 get_ue_golomb_long(&nal.gb); // skip first_mb_in_slice
366 slice_type = get_ue_golomb_31(&nal.gb);
367 s->pict_type = ff_h264_golomb_to_pict_type[slice_type % 5];
368 if (p->sei.recovery_point.recovery_frame_cnt >= 0) {
369 /* key frame, since recovery_frame_cnt is set */
370 s->key_frame = 1;
371 }
372 pps_id = get_ue_golomb(&nal.gb);
373 if (pps_id >= MAX_PPS_COUNT) {
374 av_log(avctx, AV_LOG_ERROR,
375 "pps_id %u out of range\n", pps_id);
376 goto fail;
377 }
378 if (!p->ps.pps_list[pps_id]) {
379 av_log(avctx, AV_LOG_ERROR,
380 "non-existing PPS %u referenced\n", pps_id);
381 goto fail;
382 }
383
384 av_refstruct_replace(&p->ps.pps, p->ps.pps_list[pps_id]);
385 p->ps.sps = p->ps.pps->sps;
386 sps = p->ps.sps;
387
388 // heuristic to detect non marked keyframes
389 if (p->ps.sps->ref_frame_count <= 1 && p->ps.pps->ref_count[0] <= 1 && s->pict_type == AV_PICTURE_TYPE_I)
390 s->key_frame = 1;
391
392 p->poc.frame_num = get_bits(&nal.gb, sps->log2_max_frame_num);
393
394 s->coded_width = 16 * sps->mb_width;
395 s->coded_height = 16 * sps->mb_height;
396 s->width = s->coded_width - (sps->crop_right + sps->crop_left);
397 s->height = s->coded_height - (sps->crop_top + sps->crop_bottom);
398 if (s->width <= 0 || s->height <= 0) {
399 s->width = s->coded_width;
400 s->height = s->coded_height;
401 }
402
403 switch (sps->bit_depth_luma) {
404 case 9:
405 if (sps->chroma_format_idc == 3) s->format = AV_PIX_FMT_YUV444P9;
406 else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P9;
407 else s->format = AV_PIX_FMT_YUV420P9;
408 break;
409 case 10:
410 if (sps->chroma_format_idc == 3) s->format = AV_PIX_FMT_YUV444P10;
411 else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P10;
412 else s->format = AV_PIX_FMT_YUV420P10;
413 break;
414 case 8:
415 if (sps->chroma_format_idc == 3) s->format = AV_PIX_FMT_YUV444P;
416 else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P;
417 else s->format = AV_PIX_FMT_YUV420P;
418 break;
419 default:
420 s->format = AV_PIX_FMT_NONE;
421 }
422
424 avctx->level = sps->level_idc;
425
426 if (sps->frame_mbs_only_flag) {
427 p->picture_structure = PICT_FRAME;
428 s->field_order = AV_FIELD_PROGRESSIVE;
429 } else {
430 if (get_bits1(&nal.gb)) { // field_pic_flag
431 p->picture_structure = PICT_TOP_FIELD + get_bits1(&nal.gb); // bottom_field_flag
432 } else {
433 p->picture_structure = PICT_FRAME;
434 }
435 }
436
437 if (nal.type == H264_NAL_IDR_SLICE)
438 get_ue_golomb_long(&nal.gb); /* idr_pic_id */
439 if (sps->poc_type == 0) {
440 p->poc.poc_lsb = get_bits(&nal.gb, sps->log2_max_poc_lsb);
441
442 if (p->ps.pps->pic_order_present == 1 &&
443 p->picture_structure == PICT_FRAME)
444 p->poc.delta_poc_bottom = get_se_golomb(&nal.gb);
445 }
446
447 if (sps->poc_type == 1 &&
448 !sps->delta_pic_order_always_zero_flag) {
449 p->poc.delta_poc[0] = get_se_golomb(&nal.gb);
450
451 if (p->ps.pps->pic_order_present == 1 &&
452 p->picture_structure == PICT_FRAME)
453 p->poc.delta_poc[1] = get_se_golomb(&nal.gb);
454 }
455
456 /* Decode POC of this picture.
457 * The prev_ values needed for decoding POC of the next picture are not set here. */
458 field_poc[0] = field_poc[1] = INT_MAX;
459 ret = ff_h264_init_poc(field_poc, &s->output_picture_number, sps,
460 &p->poc, p->picture_structure, nal.ref_idc);
461 if (ret < 0)
462 goto fail;
463
464 /* Continue parsing to check if MMCO_RESET is present.
465 * FIXME: MMCO_RESET could appear in non-first slice.
466 * Maybe, we should parse all undisposable non-IDR slice of this
467 * picture until encountering MMCO_RESET in a slice of it. */
468 if (nal.ref_idc && nal.type != H264_NAL_IDR_SLICE) {
469 got_reset = scan_mmco_reset(s, &nal.gb, avctx);
470 if (got_reset < 0)
471 goto fail;
472 }
473
474 /* Set up the prev_ values for decoding POC of the next picture. */
475 p->poc.prev_frame_num = got_reset ? 0 : p->poc.frame_num;
476 p->poc.prev_frame_num_offset = got_reset ? 0 : p->poc.frame_num_offset;
477 if (nal.ref_idc != 0) {
478 if (!got_reset) {
479 p->poc.prev_poc_msb = p->poc.poc_msb;
480 p->poc.prev_poc_lsb = p->poc.poc_lsb;
481 } else {
482 p->poc.prev_poc_msb = 0;
483 p->poc.prev_poc_lsb =
484 p->picture_structure == PICT_BOTTOM_FIELD ? 0 : field_poc[0];
485 }
486 }
487
488 if (p->sei.picture_timing.present) {
489 ret = ff_h264_sei_process_picture_timing(&p->sei.picture_timing,
490 sps, avctx);
491 if (ret < 0) {
492 av_log(avctx, AV_LOG_ERROR, "Error processing the picture timing SEI\n");
493 p->sei.picture_timing.present = 0;
494 }
495 }
496
497 if (sps->pic_struct_present_flag && p->sei.picture_timing.present) {
498 switch (p->sei.picture_timing.pic_struct) {
501 s->repeat_pict = 0;
502 break;
506 s->repeat_pict = 1;
507 break;
510 s->repeat_pict = 2;
511 break;
513 s->repeat_pict = 3;
514 break;
516 s->repeat_pict = 5;
517 break;
518 default:
519 s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0;
520 break;
521 }
522 } else {
523 s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0;
524 }
525
526 if (p->picture_structure == PICT_FRAME) {
527 s->picture_structure = AV_PICTURE_STRUCTURE_FRAME;
528 if (sps->pic_struct_present_flag && p->sei.picture_timing.present) {
529 switch (p->sei.picture_timing.pic_struct) {
532 s->field_order = AV_FIELD_TT;
533 break;
536 s->field_order = AV_FIELD_BB;
537 break;
538 default:
539 s->field_order = AV_FIELD_PROGRESSIVE;
540 break;
541 }
542 } else {
543 if (field_poc[0] < field_poc[1])
544 s->field_order = AV_FIELD_TT;
545 else if (field_poc[0] > field_poc[1])
546 s->field_order = AV_FIELD_BB;
547 else if (sps->mb_aff) {
548 /* Default to top field first
549 * This is the same as what the decoder does */
550 s->field_order = AV_FIELD_TT;
551 }
552 }
553 } else {
554 if (p->picture_structure == PICT_TOP_FIELD)
555 s->picture_structure = AV_PICTURE_STRUCTURE_TOP_FIELD;
556 else
557 s->picture_structure = AV_PICTURE_STRUCTURE_BOTTOM_FIELD;
558 if (p->poc.frame_num == p->last_frame_num &&
559 p->last_picture_structure != AV_PICTURE_STRUCTURE_UNKNOWN &&
560 p->last_picture_structure != AV_PICTURE_STRUCTURE_FRAME &&
561 p->last_picture_structure != s->picture_structure) {
562 if (p->last_picture_structure == AV_PICTURE_STRUCTURE_TOP_FIELD)
563 s->field_order = AV_FIELD_TT;
564 else
565 s->field_order = AV_FIELD_BB;
566 } else {
567 s->field_order = AV_FIELD_UNKNOWN;
568 }
569 p->last_picture_structure = s->picture_structure;
570 p->last_frame_num = p->poc.frame_num;
571 }
572 if (sps->timing_info_present_flag) {
573 int64_t den = sps->time_scale;
574 if (p->sei.common.unregistered.x264_build < 44U)
575 den *= 2;
576 av_reduce(&avctx->framerate.den, &avctx->framerate.num,
577 sps->num_units_in_tick * 2, den, 1 << 30);
578 }
579
580 av_freep(&rbsp.rbsp_buffer);
581 return 0; /* no need to evaluate the rest */
582 }
583 }
584 if (q264) {
585 av_freep(&rbsp.rbsp_buffer);
586 return 0;
587 }
588 /* didn't find a picture! */
589 av_log(avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size);
590fail:
591 av_freep(&rbsp.rbsp_buffer);
592 return -1;
593}
594
596 AVCodecContext *avctx,
597 const uint8_t **poutbuf, int *poutbuf_size,
598 const uint8_t *buf, int buf_size)
599{
600 H264ParseContext *p = s->priv_data;
601 ParseContext *pc = &p->pc;
602 AVRational time_base = { 0, 1 };
603 int next;
604
605 if (!p->got_first) {
606 p->got_first = 1;
607 if (avctx->extradata_size) {
609 &p->ps, &p->is_avc, &p->nal_length_size,
610 avctx->err_recognition, avctx);
611 }
612 }
613
614 if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
615 next = buf_size;
616 } else {
617 next = h264_find_frame_end(p, buf, buf_size, avctx);
618
619 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
620 *poutbuf = NULL;
621 *poutbuf_size = 0;
622 return buf_size;
623 }
624
625 if (next < 0 && next != END_NOT_FOUND) {
626 av_assert1(pc->last_index + next >= 0);
627 h264_find_frame_end(p, &pc->buffer[pc->last_index + next], -next, avctx); // update state
628 }
629 }
630
631 parse_nal_units(s, avctx, buf, buf_size);
632
633 if (avctx->framerate.num)
634 time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){2, 1}));
635 if (p->sei.picture_timing.cpb_removal_delay >= 0) {
636 s->dts_sync_point = p->sei.buffering_period.present;
637 s->dts_ref_dts_delta = p->sei.picture_timing.cpb_removal_delay;
638 s->pts_dts_delta = p->sei.picture_timing.dpb_output_delay;
639 } else {
640 s->dts_sync_point = INT_MIN;
641 s->dts_ref_dts_delta = INT_MIN;
642 s->pts_dts_delta = INT_MIN;
643 }
644
645 if (s->flags & PARSER_FLAG_ONCE) {
647 }
648
649 if (s->dts_sync_point >= 0) {
650 int64_t den = time_base.den * (int64_t)avctx->pkt_timebase.num;
651 if (den > 0) {
652 int64_t num = time_base.num * (int64_t)avctx->pkt_timebase.den;
653 if (s->dts != AV_NOPTS_VALUE) {
654 // got DTS from the stream, update reference timestamp
655 p->reference_dts = av_sat_sub64(s->dts, av_rescale(s->dts_ref_dts_delta, num, den));
656 } else if (p->reference_dts != AV_NOPTS_VALUE) {
657 // compute DTS based on reference timestamp
658 s->dts = av_sat_add64(p->reference_dts, av_rescale(s->dts_ref_dts_delta, num, den));
659 }
660
661 if (p->reference_dts != AV_NOPTS_VALUE && s->pts == AV_NOPTS_VALUE) {
662 int64_t pts_dts_delta = av_rescale(s->pts_dts_delta, num, den);
663 uint64_t pts = (uint64_t)s->dts + pts_dts_delta;
664 if (pts == av_sat_add64(s->dts, pts_dts_delta))
665 s->pts = pts;
666 }
667
668 if (s->dts_sync_point > 0)
669 p->reference_dts = s->dts; // new reference
670 }
671 }
672
673 *poutbuf = buf;
674 *poutbuf_size = buf_size;
675 return next;
676}
677
679{
680 H264ParseContext *p = s->priv_data;
681 ParseContext *pc = &p->pc;
682
683 av_freep(&pc->buffer);
684
685 ff_h264_sei_uninit(&p->sei);
686 ff_h264_ps_uninit(&p->ps);
687}
688
690{
691 H264ParseContext *p = s->priv_data;
692
693 p->reference_dts = AV_NOPTS_VALUE;
694 p->last_frame_num = INT_MAX;
695 ff_h264dsp_init(&p->h264dsp, 8, 1);
696 return 0;
697}
698
701 .priv_data_size = sizeof(H264ParseContext),
702 .init = init,
703 .parse = h264_parse,
704 .close = h264_close,
705};
static int parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition apv_parser.c:92
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition avassert.h:58
Libavcodec external API header.
#define PARSER_FLAG_ONCE
Definition avcodec.h:2663
#define PARSER_FLAG_COMPLETE_FRAMES
Definition avcodec.h:2662
Convenience header that includes libavutil's core.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
static int FUNC sps(CodedBitstreamContext *ctx, RWContext *rw, H264RawSPS *current)
#define mb(name)
Definition cbs_lcevc.c:95
static int FUNC nal(CodedBitstreamContext *ctx, RWContext *rw, LCEVCRawNAL *current, int nal_unit_type)
#define s(width, name)
Definition cbs_vp9.c:198
#define av_sat_sub64
Definition common.h:142
#define av_sat_add64
Definition common.h:139
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
@ AV_FIELD_TT
Top coded_first, top displayed first.
Definition defs.h:214
@ AV_FIELD_BB
Bottom coded first, bottom displayed first.
Definition defs.h:215
@ AV_FIELD_UNKNOWN
Definition defs.h:212
@ AV_FIELD_PROGRESSIVE
Definition defs.h:213
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
error code definitions
static struct @346255127015250356166251341105367306144006377143 state
bitstream reader API header.
static int get_bits_left(GetBitContext *gb)
Definition get_bits.h:688
static unsigned int get_bits1(GetBitContext *s)
Definition get_bits.h:391
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition get_bits.h:544
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition get_bits.h:337
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition get_bits.h:517
exp golomb vlc stuff
static int get_se_golomb(GetBitContext *gb)
read signed exp golomb code.
Definition golomb.h:239
static int get_ue_golomb_31(GetBitContext *gb)
read unsigned exp golomb code, constraint to a max of 31.
Definition golomb.h:120
static int get_ue_golomb(GetBitContext *gb)
Read an unsigned Exp-Golomb code in the range 0 to 8190.
Definition golomb.h:53
static unsigned get_ue_golomb_long(GetBitContext *gb)
Read an unsigned Exp-Golomb code in the range 0 to UINT32_MAX-1.
Definition golomb.h:104
#define fail
Definition test.h:479
@ AV_CODEC_ID_H264
Definition codec_id.h:77
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
Definition utils.c:53
@ AV_PICTURE_STRUCTURE_FRAME
coded as frame
Definition avcodec.h:2625
@ AV_PICTURE_STRUCTURE_BOTTOM_FIELD
coded as bottom field
Definition avcodec.h:2624
@ AV_PICTURE_STRUCTURE_TOP_FIELD
coded as top field
Definition avcodec.h:2623
@ AV_PICTURE_STRUCTURE_UNKNOWN
unknown
Definition avcodec.h:2622
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition rational.c:80
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition rational.c:35
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition rational.h:159
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
@ AV_PICTURE_TYPE_I
Intra.
Definition avutil.h:278
@ AV_PICTURE_TYPE_P
Predicted.
Definition avutil.h:279
@ AV_PICTURE_TYPE_B
Bi-dir predicted.
Definition avutil.h:280
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
int index
Definition gxfenc.c:90
static int get_nalsize(int nal_length_size, const uint8_t *buf, int buf_size, int *buf_index, void *logctx)
H.264 common definitions.
@ H264_MAX_MMCO_COUNT
Definition h264.h:92
@ H264_NAL_DPA
Definition h264.h:36
@ H264_NAL_PPS
Definition h264.h:42
@ H264_NAL_SPS
Definition h264.h:41
@ H264_NAL_SLICE
Definition h264.h:35
@ H264_NAL_SEI
Definition h264.h:40
@ H264_NAL_AUD
Definition h264.h:43
@ H264_NAL_IDR_SLICE
Definition h264.h:39
int ff_h264_get_profile(const SPS *sps)
Compute profile from profile_idc and constraint_set?_flags.
Definition h264_parse.c:533
int ff_h264_parse_ref_count(int *plist_count, int ref_count[2], GetBitContext *gb, const PPS *pps, int slice_type_nos, int picture_structure, void *logctx)
Definition h264_parse.c:222
int ff_h264_init_poc(int pic_field_poc[2], int *pic_poc, const SPS *sps, H264POCContext *pc, int picture_structure, int nal_ref_idc)
Definition h264_parse.c:280
int ff_h264_pred_weight_table(GetBitContext *gb, const SPS *sps, const int *ref_count, int slice_type_nos, H264PredWeightTable *pwt, int picture_structure, void *logctx)
Definition h264_parse.c:30
int ff_h264_decode_extradata(const uint8_t *data, int size, H264ParamSets *ps, int *is_avc, int *nal_length_size, int err_recognition, void *logctx)
Definition h264_parse.c:466
H.264 decoder/parser shared code.
MMCOOpcode
Memory management control operation opcode.
Definition h264_parse.h:59
@ MMCO_SHORT2UNUSED
Definition h264_parse.h:61
@ MMCO_LONG2UNUSED
Definition h264_parse.h:62
@ MMCO_RESET
Definition h264_parse.h:65
@ MMCO_LONG
Definition h264_parse.h:66
@ MMCO_END
Definition h264_parse.h:60
@ MMCO_SHORT2LONG
Definition h264_parse.h:63
@ MMCO_SET_MAX_LONG
Definition h264_parse.h:64
const FFCodecParser ff_h264_parser
static int h264_find_frame_end(H264ParseContext *p, const uint8_t *buf, int buf_size, void *logctx)
Definition h264_parser.c:82
static int find_start_code(const uint8_t *buf, int buf_size, int buf_index, int next_avc)
Definition h264_parser.c:72
static int parse_nal_units(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t *const buf, int buf_size)
Parse NAL units of found picture and decode some basic information.
static av_cold void h264_close(AVCodecParserContext *s)
static int h264_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
static int scan_mmco_reset(AVCodecParserContext *s, GetBitContext *gb, void *logctx)
void ff_h264_ps_uninit(H264ParamSets *ps)
Uninit H264 param sets structure.
Definition h264_ps.c:270
int ff_h264_decode_picture_parameter_set(GetBitContext *gb, AVCodecContext *avctx, H264ParamSets *ps, int bit_length)
Decode PPS.
Definition h264_ps.c:698
int ff_h264_decode_seq_parameter_set(GetBitContext *gb, AVCodecContext *avctx, H264ParamSets *ps, int ignore_truncation)
Decode SPS.
Definition h264_ps.c:284
H.264 parameter set handling.
#define MAX_PPS_COUNT
Definition h264_ps.h:38
int ff_h264_sei_decode(H264SEIContext *h, GetBitContext *gb, const H264ParamSets *ps, void *logctx)
Definition h264_sei.c:229
void ff_h264_sei_uninit(H264SEIContext *h)
Reset SEI values at the beginning of the frame.
Definition h264_sei.c:48
int ff_h264_sei_process_picture_timing(H264SEIPictureTiming *h, const SPS *sps, void *logctx)
Parse the contents of a picture timing message given an active SPS.
Definition h264_sei.c:63
@ H264_SEI_PIC_STRUCT_BOTTOM_FIELD
2: bottom field
Definition h264_sei.h:34
@ H264_SEI_PIC_STRUCT_BOTTOM_TOP
4: bottom field, top field, in that order
Definition h264_sei.h:36
@ H264_SEI_PIC_STRUCT_TOP_BOTTOM_TOP
5: top field, bottom field, top field repeated, in that order
Definition h264_sei.h:37
@ H264_SEI_PIC_STRUCT_TOP_FIELD
1: top field
Definition h264_sei.h:33
@ H264_SEI_PIC_STRUCT_FRAME_TRIPLING
8: frame tripling
Definition h264_sei.h:40
@ H264_SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM
6: bottom field, top field, bottom field repeated, in that order
Definition h264_sei.h:38
@ H264_SEI_PIC_STRUCT_TOP_BOTTOM
3: top field, bottom field, in that order
Definition h264_sei.h:35
@ H264_SEI_PIC_STRUCT_FRAME_DOUBLING
7: frame doubling
Definition h264_sei.h:39
@ H264_SEI_PIC_STRUCT_FRAME
0: frame
Definition h264_sei.h:32
const uint8_t ff_h264_golomb_to_pict_type[5]
Definition h264data.c:37
H.264 DSP functions.
int ff_h2645_extract_rbsp(const uint8_t *src, int length, H2645RBSP *rbsp, H2645NAL *nal, int small_padding)
Extract the raw (unescaped) bitstream.
Definition h2645_parse.c:37
av_cold void ff_h264dsp_init(H264DSPContext *c, const int bit_depth, const int chroma_format_idc)
Definition h264dsp.c:66
Macro definitions for various function/variable attributes.
#define av_fallthrough
Definition attributes.h:67
#define av_cold
Definition attributes.h:117
#define FFMIN(a, b)
Definition macros.h:49
Memory handling functions.
#define PICT_TOP_FIELD
Definition mpegutils.h:31
#define PICT_BOTTOM_FIELD
Definition mpegutils.h:32
#define PICT_FRAME
Definition mpegutils.h:33
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
Combine the (truncated) bitstream to a complete frame.
Definition parser.c:213
#define END_NOT_FOUND
Definition parser.h:40
#define PARSER_CODEC_LIST(...)
pixel format definitions
#define AV_PIX_FMT_YUV444P9
Definition pixfmt.h:544
#define AV_PIX_FMT_YUV420P10
Definition pixfmt.h:545
#define AV_PIX_FMT_YUV422P9
Definition pixfmt.h:543
#define AV_PIX_FMT_YUV422P10
Definition pixfmt.h:546
#define AV_PIX_FMT_YUV420P9
Definition pixfmt.h:542
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition pixfmt.h:77
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition pixfmt.h:78
#define AV_PIX_FMT_YUV444P10
Definition pixfmt.h:548
void av_refstruct_replace(void *dstp, const void *src)
Ensure *dstp refers to the same object as src.
Definition refstruct.c:160
Accelerated start code search function for start codes common to MPEG-1/2/4 video,...
const uint8_t * avpriv_find_start_code(const uint8_t *p, const uint8_t *end, uint32_t *state)
main external API structure.
Definition avcodec.h:443
AVRational pkt_timebase
Timebase in which pkt_dts/pts and AVPacket.dts/pts are expressed.
Definition avcodec.h:554
AVRational framerate
Definition avcodec.h:563
int level
Encoding level descriptor.
Definition avcodec.h:1647
int profile
profile
Definition avcodec.h:1637
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
Definition avcodec.h:526
int extradata_size
Definition avcodec.h:527
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition avcodec.h:1417
Rational number (pair of numerator and denominator).
Definition rational.h:58
int num
Numerator.
Definition rational.h:59
int den
Denominator.
Definition rational.h:60
int rbsp_buffer_alloc_size
Definition h2645_parse.h:77
uint8_t * rbsp_buffer
Definition h2645_parse.h:75
Context for storing H.264 DSP functions.
Definition h264dsp.h:42
H264ParamSets ps
Definition h264_parser.c:57
ParseContext pc
Definition h264_parser.c:56
H264SEIContext sei
Definition h264_parser.c:60
int64_t reference_dts
Definition h264_parser.c:68
H264POCContext poc
Definition h264_parser.c:59
uint8_t parse_history[6]
Definition h264_parser.c:65
H264DSPContext h264dsp
Definition h264_parser.c:58
uint32_t state
contains the last few bytes in MSB order
Definition parser.h:33
int frame_start_found
Definition parser.h:34
uint8_t * buffer
Definition parser.h:29
int last_index
Definition parser.h:31
Sequence parameter set.
Definition h264_ps.h:44
#define av_freep(p)
#define av_log(a,...)
static int64_t pts