]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264_parser.c
avcodec/vaapi_encode_h264: Use av_clip_uintp2()
[ffmpeg] / libavcodec / h264_parser.c
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 <assert.h>
31 #include <stdint.h>
32
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 "get_bits.h"
40 #include "golomb.h"
41 #include "h264.h"
42 #include "h264_sei.h"
43 #include "h264data.h"
44 #include "internal.h"
45 #include "mpegutils.h"
46 #include "parser.h"
47
48 typedef struct H264ParseContext {
49     ParseContext pc;
50     H264ParamSets ps;
51     H264DSPContext h264dsp;
52     H264POCContext poc;
53     H264SEIContext sei;
54     int is_avc;
55     int nal_length_size;
56     int got_first;
57     int picture_structure;
58     uint8_t parse_history[6];
59     int parse_history_count;
60     int parse_last_mb;
61 } H264ParseContext;
62
63
64 static int h264_find_frame_end(H264ParseContext *p, const uint8_t *buf,
65                                int buf_size, void *logctx)
66 {
67     int i, j;
68     uint32_t state;
69     ParseContext *pc = &p->pc;
70
71     int next_avc = p->is_avc ? 0 : buf_size;
72 //    mb_addr= pc->mb_addr - 1;
73     state = pc->state;
74     if (state > 13)
75         state = 7;
76
77     if (p->is_avc && !p->nal_length_size)
78         av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal length size invalid\n");
79
80     for (i = 0; i < buf_size; i++) {
81         if (i >= next_avc) {
82             int nalsize = 0;
83             i = next_avc;
84             for (j = 0; j < p->nal_length_size; j++)
85                 nalsize = (nalsize << 8) | buf[i++];
86             if (nalsize <= 0 || nalsize > buf_size - i) {
87                 av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal size %d remaining %d\n", nalsize, buf_size - i);
88                 return buf_size;
89             }
90             next_avc = i + nalsize;
91             state    = 5;
92         }
93
94         if (state == 7) {
95             i += p->h264dsp.startcode_find_candidate(buf + i, next_avc - i);
96             if (i < next_avc)
97                 state = 2;
98         } else if (state <= 2) {
99             if (buf[i] == 1)
100                 state ^= 5;            // 2->7, 1->4, 0->5
101             else if (buf[i])
102                 state = 7;
103             else
104                 state >>= 1;           // 2->1, 1->0, 0->0
105         } else if (state <= 5) {
106             int nalu_type = buf[i] & 0x1F;
107             if (nalu_type == NAL_SEI || nalu_type == NAL_SPS ||
108                 nalu_type == NAL_PPS || nalu_type == NAL_AUD) {
109                 if (pc->frame_start_found) {
110                     i++;
111                     goto found;
112                 }
113             } else if (nalu_type == NAL_SLICE || nalu_type == NAL_DPA ||
114                        nalu_type == NAL_IDR_SLICE) {
115                 state += 8;
116                 continue;
117             }
118             state = 7;
119         } else {
120             p->parse_history[p->parse_history_count++] = buf[i];
121             if (p->parse_history_count > 5) {
122                 unsigned int mb, last_mb = p->parse_last_mb;
123                 GetBitContext gb;
124
125                 init_get_bits(&gb, p->parse_history, 8*p->parse_history_count);
126                 p->parse_history_count = 0;
127                 mb= get_ue_golomb_long(&gb);
128                 p->parse_last_mb = mb;
129                 if (pc->frame_start_found) {
130                     if (mb <= last_mb)
131                         goto found;
132                 } else
133                     pc->frame_start_found = 1;
134                 state = 7;
135             }
136         }
137     }
138     pc->state = state;
139     if (p->is_avc)
140         return next_avc;
141     return END_NOT_FOUND;
142
143 found:
144     pc->state             = 7;
145     pc->frame_start_found = 0;
146     if (p->is_avc)
147         return next_avc;
148     return i - (state & 5) - 5 * (state > 7);
149 }
150
151 static int scan_mmco_reset(AVCodecParserContext *s, GetBitContext *gb,
152                            void *logctx)
153 {
154     H264PredWeightTable pwt;
155     int slice_type_nos = s->pict_type & 3;
156     H264ParseContext *p = s->priv_data;
157     int list_count, ref_count[2];
158
159
160     if (p->ps.pps->redundant_pic_cnt_present)
161         get_ue_golomb(gb); // redundant_pic_count
162
163     if (slice_type_nos == AV_PICTURE_TYPE_B)
164         get_bits1(gb); // direct_spatial_mv_pred
165
166     if (ff_h264_parse_ref_count(&list_count, ref_count, gb, p->ps.pps,
167                                 slice_type_nos, p->picture_structure, logctx) < 0)
168         return AVERROR_INVALIDDATA;
169
170     if (slice_type_nos != AV_PICTURE_TYPE_I) {
171         int list;
172         for (list = 0; list < list_count; list++) {
173             if (get_bits1(gb)) {
174                 int index;
175                 for (index = 0; ; index++) {
176                     unsigned int reordering_of_pic_nums_idc = get_ue_golomb_31(gb);
177
178                     if (reordering_of_pic_nums_idc < 3)
179                         get_ue_golomb_long(gb);
180                     else if (reordering_of_pic_nums_idc > 3) {
181                         av_log(logctx, AV_LOG_ERROR,
182                                "illegal reordering_of_pic_nums_idc %d\n",
183                                reordering_of_pic_nums_idc);
184                         return AVERROR_INVALIDDATA;
185                     } else
186                         break;
187
188                     if (index >= ref_count[list]) {
189                         av_log(logctx, AV_LOG_ERROR,
190                                "reference count %d overflow\n", index);
191                         return AVERROR_INVALIDDATA;
192                     }
193                 }
194             }
195         }
196     }
197
198     if ((p->ps.pps->weighted_pred && slice_type_nos == AV_PICTURE_TYPE_P) ||
199         (p->ps.pps->weighted_bipred_idc == 1 && slice_type_nos == AV_PICTURE_TYPE_B))
200         ff_h264_pred_weight_table(gb, p->ps.sps, ref_count, slice_type_nos,
201                                   &pwt, logctx);
202
203     if (get_bits1(gb)) { // adaptive_ref_pic_marking_mode_flag
204         int i;
205         for (i = 0; i < MAX_MMCO_COUNT; i++) {
206             MMCOOpcode opcode = get_ue_golomb_31(gb);
207             if (opcode > (unsigned) MMCO_LONG) {
208                 av_log(logctx, AV_LOG_ERROR,
209                        "illegal memory management control operation %d\n",
210                        opcode);
211                 return AVERROR_INVALIDDATA;
212             }
213             if (opcode == MMCO_END)
214                return 0;
215             else if (opcode == MMCO_RESET)
216                 return 1;
217
218             if (opcode == MMCO_SHORT2UNUSED || opcode == MMCO_SHORT2LONG)
219                 get_ue_golomb_long(gb); // difference_of_pic_nums_minus1
220             if (opcode == MMCO_SHORT2LONG || opcode == MMCO_LONG2UNUSED ||
221                 opcode == MMCO_LONG || opcode == MMCO_SET_MAX_LONG)
222                 get_ue_golomb_31(gb);
223         }
224     }
225
226     return 0;
227 }
228
229 static inline int get_avc_nalsize(H264ParseContext *p, const uint8_t *buf,
230                                   int buf_size, int *buf_index, void *logctx)
231 {
232     int i, nalsize = 0;
233
234     if (*buf_index >= buf_size - p->nal_length_size) {
235         // the end of the buffer is reached, refill it
236         return AVERROR(EAGAIN);
237     }
238
239     for (i = 0; i < p->nal_length_size; i++)
240         nalsize = ((unsigned)nalsize << 8) | buf[(*buf_index)++];
241     if (nalsize <= 0 || nalsize > buf_size - *buf_index) {
242         av_log(logctx, AV_LOG_ERROR,
243                "AVC: nal size %d\n", nalsize);
244         return AVERROR_INVALIDDATA;
245     }
246     return nalsize;
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 static inline int parse_nal_units(AVCodecParserContext *s,
258                                   AVCodecContext *avctx,
259                                   const uint8_t * const buf, int buf_size)
260 {
261     H264ParseContext *p = s->priv_data;
262     H2645NAL nal = { NULL };
263     int buf_index, next_avc;
264     unsigned int pps_id;
265     unsigned int slice_type;
266     int state = -1, got_reset = 0;
267     int q264 = buf_size >=4 && !memcmp("Q264", buf, 4);
268     int field_poc[2];
269     int ret;
270
271     /* set some sane default values */
272     s->pict_type         = AV_PICTURE_TYPE_I;
273     s->key_frame         = 0;
274     s->picture_structure = AV_PICTURE_STRUCTURE_UNKNOWN;
275
276     ff_h264_sei_uninit(&p->sei);
277     p->sei.frame_packing.frame_packing_arrangement_cancel_flag = -1;
278
279     if (!buf_size)
280         return 0;
281
282     buf_index     = 0;
283     next_avc      = p->is_avc ? 0 : buf_size;
284     for (;;) {
285         const SPS *sps;
286         int src_length, consumed, nalsize = 0;
287
288         if (buf_index >= next_avc) {
289             nalsize = get_avc_nalsize(p, buf, buf_size, &buf_index, avctx);
290             if (nalsize < 0)
291                 break;
292             next_avc = buf_index + nalsize;
293         } else {
294             buf_index = find_start_code(buf, buf_size, buf_index, next_avc);
295             if (buf_index >= buf_size)
296                 break;
297             if (buf_index >= next_avc)
298                 continue;
299         }
300         src_length = next_avc - buf_index;
301
302         state = buf[buf_index];
303         switch (state & 0x1f) {
304         case NAL_SLICE:
305         case NAL_IDR_SLICE:
306             // Do not walk the whole buffer just to decode slice header
307             if ((state & 0x1f) == NAL_IDR_SLICE || ((state >> 5) & 0x3) == 0) {
308                 /* IDR or disposable slice
309                  * No need to decode many bytes because MMCOs shall not be present. */
310                 if (src_length > 60)
311                     src_length = 60;
312             } else {
313                 /* To decode up to MMCOs */
314                 if (src_length > 1000)
315                     src_length = 1000;
316             }
317             break;
318         }
319         consumed = ff_h2645_extract_rbsp(buf + buf_index, src_length, &nal);
320         if (consumed < 0)
321             break;
322
323         buf_index += consumed;
324
325         ret = init_get_bits8(&nal.gb, nal.data, nal.size);
326         if (ret < 0)
327             goto fail;
328         get_bits1(&nal.gb);
329         nal.ref_idc = get_bits(&nal.gb, 2);
330         nal.type    = get_bits(&nal.gb, 5);
331
332         switch (nal.type) {
333         case NAL_SPS:
334             ff_h264_decode_seq_parameter_set(&nal.gb, avctx, &p->ps, 0);
335             break;
336         case NAL_PPS:
337             ff_h264_decode_picture_parameter_set(&nal.gb, avctx, &p->ps,
338                                                  nal.size_bits);
339             break;
340         case NAL_SEI:
341             ff_h264_sei_decode(&p->sei, &nal.gb, &p->ps, avctx);
342             break;
343         case NAL_IDR_SLICE:
344             s->key_frame = 1;
345
346             p->poc.prev_frame_num        = 0;
347             p->poc.prev_frame_num_offset = 0;
348             p->poc.prev_poc_msb          =
349             p->poc.prev_poc_lsb          = 0;
350         /* fall through */
351         case NAL_SLICE:
352             get_ue_golomb_long(&nal.gb);  // skip first_mb_in_slice
353             slice_type   = get_ue_golomb_31(&nal.gb);
354             s->pict_type = ff_h264_golomb_to_pict_type[slice_type % 5];
355             if (p->sei.recovery_point.recovery_frame_cnt >= 0) {
356                 /* key frame, since recovery_frame_cnt is set */
357                 s->key_frame = 1;
358             }
359             pps_id = get_ue_golomb(&nal.gb);
360             if (pps_id >= MAX_PPS_COUNT) {
361                 av_log(avctx, AV_LOG_ERROR,
362                        "pps_id %u out of range\n", pps_id);
363                 goto fail;
364             }
365             if (!p->ps.pps_list[pps_id]) {
366                 av_log(avctx, AV_LOG_ERROR,
367                        "non-existing PPS %u referenced\n", pps_id);
368                 goto fail;
369             }
370
371             av_buffer_unref(&p->ps.pps_ref);
372             av_buffer_unref(&p->ps.sps_ref);
373             p->ps.pps = NULL;
374             p->ps.sps = NULL;
375             p->ps.pps_ref = av_buffer_ref(p->ps.pps_list[pps_id]);
376             if (!p->ps.pps_ref)
377                 goto fail;
378             p->ps.pps = (const PPS*)p->ps.pps_ref->data;
379
380             if (!p->ps.sps_list[p->ps.pps->sps_id]) {
381                 av_log(avctx, AV_LOG_ERROR,
382                        "non-existing SPS %u referenced\n", p->ps.pps->sps_id);
383                 goto fail;
384             }
385
386             p->ps.sps_ref = av_buffer_ref(p->ps.sps_list[p->ps.pps->sps_id]);
387             if (!p->ps.sps_ref)
388                 goto fail;
389             p->ps.sps = (const SPS*)p->ps.sps_ref->data;
390
391             sps = p->ps.sps;
392
393             // heuristic to detect non marked keyframes
394             if (p->ps.sps->ref_frame_count <= 1 && p->ps.pps->ref_count[0] <= 1 && s->pict_type == AV_PICTURE_TYPE_I)
395                 s->key_frame = 1;
396
397             p->poc.frame_num = get_bits(&nal.gb, sps->log2_max_frame_num);
398
399             s->coded_width  = 16 * sps->mb_width;
400             s->coded_height = 16 * sps->mb_height;
401             s->width        = s->coded_width  - (sps->crop_right + sps->crop_left);
402             s->height       = s->coded_height - (sps->crop_top   + sps->crop_bottom);
403             if (s->width <= 0 || s->height <= 0) {
404                 s->width  = s->coded_width;
405                 s->height = s->coded_height;
406             }
407
408             switch (sps->bit_depth_luma) {
409             case 9:
410                 if (sps->chroma_format_idc == 3)      s->format = AV_PIX_FMT_YUV444P9;
411                 else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P9;
412                 else                                  s->format = AV_PIX_FMT_YUV420P9;
413                 break;
414             case 10:
415                 if (sps->chroma_format_idc == 3)      s->format = AV_PIX_FMT_YUV444P10;
416                 else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P10;
417                 else                                  s->format = AV_PIX_FMT_YUV420P10;
418                 break;
419             case 8:
420                 if (sps->chroma_format_idc == 3)      s->format = AV_PIX_FMT_YUV444P;
421                 else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P;
422                 else                                  s->format = AV_PIX_FMT_YUV420P;
423                 break;
424             default:
425                 s->format = AV_PIX_FMT_NONE;
426             }
427
428             avctx->profile = ff_h264_get_profile(sps);
429             avctx->level   = sps->level_idc;
430
431             if (sps->frame_mbs_only_flag) {
432                 p->picture_structure = PICT_FRAME;
433             } else {
434                 if (get_bits1(&nal.gb)) { // field_pic_flag
435                     p->picture_structure = PICT_TOP_FIELD + get_bits1(&nal.gb); // bottom_field_flag
436                 } else {
437                     p->picture_structure = PICT_FRAME;
438                 }
439             }
440
441             if (nal.type == NAL_IDR_SLICE)
442                 get_ue_golomb_long(&nal.gb); /* idr_pic_id */
443             if (sps->poc_type == 0) {
444                 p->poc.poc_lsb = get_bits(&nal.gb, sps->log2_max_poc_lsb);
445
446                 if (p->ps.pps->pic_order_present == 1 &&
447                     p->picture_structure == PICT_FRAME)
448                     p->poc.delta_poc_bottom = get_se_golomb(&nal.gb);
449             }
450
451             if (sps->poc_type == 1 &&
452                 !sps->delta_pic_order_always_zero_flag) {
453                 p->poc.delta_poc[0] = get_se_golomb(&nal.gb);
454
455                 if (p->ps.pps->pic_order_present == 1 &&
456                     p->picture_structure == PICT_FRAME)
457                     p->poc.delta_poc[1] = get_se_golomb(&nal.gb);
458             }
459
460             /* Decode POC of this picture.
461              * The prev_ values needed for decoding POC of the next picture are not set here. */
462             field_poc[0] = field_poc[1] = INT_MAX;
463             ff_h264_init_poc(field_poc, &s->output_picture_number, sps,
464                              &p->poc, p->picture_structure, nal.ref_idc);
465
466             /* Continue parsing to check if MMCO_RESET is present.
467              * FIXME: MMCO_RESET could appear in non-first slice.
468              *        Maybe, we should parse all undisposable non-IDR slice of this
469              *        picture until encountering MMCO_RESET in a slice of it. */
470             if (nal.ref_idc && nal.type != NAL_IDR_SLICE) {
471                 got_reset = scan_mmco_reset(s, &nal.gb, avctx);
472                 if (got_reset < 0)
473                     goto fail;
474             }
475
476             /* Set up the prev_ values for decoding POC of the next picture. */
477             p->poc.prev_frame_num        = got_reset ? 0 : p->poc.frame_num;
478             p->poc.prev_frame_num_offset = got_reset ? 0 : p->poc.frame_num_offset;
479             if (nal.ref_idc != 0) {
480                 if (!got_reset) {
481                     p->poc.prev_poc_msb = p->poc.poc_msb;
482                     p->poc.prev_poc_lsb = p->poc.poc_lsb;
483                 } else {
484                     p->poc.prev_poc_msb = 0;
485                     p->poc.prev_poc_lsb =
486                         p->picture_structure == PICT_BOTTOM_FIELD ? 0 : field_poc[0];
487                 }
488             }
489
490             if (sps->pic_struct_present_flag) {
491                 switch (p->sei.picture_timing.pic_struct) {
492                 case SEI_PIC_STRUCT_TOP_FIELD:
493                 case SEI_PIC_STRUCT_BOTTOM_FIELD:
494                     s->repeat_pict = 0;
495                     break;
496                 case SEI_PIC_STRUCT_FRAME:
497                 case SEI_PIC_STRUCT_TOP_BOTTOM:
498                 case SEI_PIC_STRUCT_BOTTOM_TOP:
499                     s->repeat_pict = 1;
500                     break;
501                 case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
502                 case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
503                     s->repeat_pict = 2;
504                     break;
505                 case SEI_PIC_STRUCT_FRAME_DOUBLING:
506                     s->repeat_pict = 3;
507                     break;
508                 case SEI_PIC_STRUCT_FRAME_TRIPLING:
509                     s->repeat_pict = 5;
510                     break;
511                 default:
512                     s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0;
513                     break;
514                 }
515             } else {
516                 s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0;
517             }
518
519             if (p->picture_structure == PICT_FRAME) {
520                 s->picture_structure = AV_PICTURE_STRUCTURE_FRAME;
521                 if (sps->pic_struct_present_flag) {
522                     switch (p->sei.picture_timing.pic_struct) {
523                     case SEI_PIC_STRUCT_TOP_BOTTOM:
524                     case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
525                         s->field_order = AV_FIELD_TT;
526                         break;
527                     case SEI_PIC_STRUCT_BOTTOM_TOP:
528                     case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
529                         s->field_order = AV_FIELD_BB;
530                         break;
531                     default:
532                         s->field_order = AV_FIELD_PROGRESSIVE;
533                         break;
534                     }
535                 } else {
536                     if (field_poc[0] < field_poc[1])
537                         s->field_order = AV_FIELD_TT;
538                     else if (field_poc[0] > field_poc[1])
539                         s->field_order = AV_FIELD_BB;
540                     else
541                         s->field_order = AV_FIELD_PROGRESSIVE;
542                 }
543             } else {
544                 if (p->picture_structure == PICT_TOP_FIELD)
545                     s->picture_structure = AV_PICTURE_STRUCTURE_TOP_FIELD;
546                 else
547                     s->picture_structure = AV_PICTURE_STRUCTURE_BOTTOM_FIELD;
548                 s->field_order = AV_FIELD_UNKNOWN;
549             }
550
551             av_freep(&nal.rbsp_buffer);
552             return 0; /* no need to evaluate the rest */
553         }
554     }
555     if (q264) {
556         av_freep(&nal.rbsp_buffer);
557         return 0;
558     }
559     /* didn't find a picture! */
560     av_log(avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size);
561 fail:
562     av_freep(&nal.rbsp_buffer);
563     return -1;
564 }
565
566 static int h264_parse(AVCodecParserContext *s,
567                       AVCodecContext *avctx,
568                       const uint8_t **poutbuf, int *poutbuf_size,
569                       const uint8_t *buf, int buf_size)
570 {
571     H264ParseContext *p = s->priv_data;
572     ParseContext *pc = &p->pc;
573     int next;
574
575     if (!p->got_first) {
576         p->got_first = 1;
577         if (avctx->extradata_size) {
578             ff_h264_decode_extradata(avctx->extradata, avctx->extradata_size,
579                                      &p->ps, &p->is_avc, &p->nal_length_size,
580                                      avctx->err_recognition, avctx);
581         }
582     }
583
584     if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
585         next = buf_size;
586     } else {
587         next = h264_find_frame_end(p, buf, buf_size, avctx);
588
589         if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
590             *poutbuf      = NULL;
591             *poutbuf_size = 0;
592             return buf_size;
593         }
594
595         if (next < 0 && next != END_NOT_FOUND) {
596             av_assert1(pc->last_index + next >= 0);
597             h264_find_frame_end(p, &pc->buffer[pc->last_index + next], -next, avctx); // update state
598         }
599     }
600
601     parse_nal_units(s, avctx, buf, buf_size);
602
603     if (avctx->framerate.num)
604         avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
605     if (p->sei.picture_timing.cpb_removal_delay >= 0) {
606         s->dts_sync_point    = p->sei.buffering_period.present;
607         s->dts_ref_dts_delta = p->sei.picture_timing.cpb_removal_delay;
608         s->pts_dts_delta     = p->sei.picture_timing.dpb_output_delay;
609     } else {
610         s->dts_sync_point    = INT_MIN;
611         s->dts_ref_dts_delta = INT_MIN;
612         s->pts_dts_delta     = INT_MIN;
613     }
614
615     if (s->flags & PARSER_FLAG_ONCE) {
616         s->flags &= PARSER_FLAG_COMPLETE_FRAMES;
617     }
618
619     *poutbuf      = buf;
620     *poutbuf_size = buf_size;
621     return next;
622 }
623
624 static int h264_split(AVCodecContext *avctx,
625                       const uint8_t *buf, int buf_size)
626 {
627     uint32_t state = -1;
628     int has_sps    = 0;
629     int has_pps    = 0;
630     const uint8_t *ptr = buf, *end = buf + buf_size;
631     int nalu_type;
632
633     while (ptr < end) {
634         ptr = avpriv_find_start_code(ptr, end, &state);
635         if ((state & 0xFFFFFF00) != 0x100)
636             break;
637         nalu_type = state & 0x1F;
638         if (nalu_type == NAL_SPS) {
639             has_sps = 1;
640         } else if (nalu_type == NAL_PPS)
641             has_pps = 1;
642         /* else if (nalu_type == 0x01 ||
643          *     nalu_type == 0x02 ||
644          *     nalu_type == 0x05) {
645          *  }
646          */
647         else if ((nalu_type != NAL_SEI || has_pps) &&
648                   nalu_type != NAL_AUD && nalu_type != NAL_SPS_EXT &&
649                   nalu_type != 0x0f) {
650             if (has_sps) {
651                 while (ptr - 4 > buf && ptr[-5] == 0)
652                     ptr--;
653                 return ptr - 4 - buf;
654             }
655         }
656     }
657
658     return 0;
659 }
660
661 static void h264_close(AVCodecParserContext *s)
662 {
663     H264ParseContext *p = s->priv_data;
664     ParseContext *pc = &p->pc;
665
666     av_freep(&pc->buffer);
667
668     ff_h264_sei_uninit(&p->sei);
669     ff_h264_ps_uninit(&p->ps);
670 }
671
672 static av_cold int init(AVCodecParserContext *s)
673 {
674     H264ParseContext *p = s->priv_data;
675
676     ff_h264dsp_init(&p->h264dsp, 8, 1);
677     return 0;
678 }
679
680 AVCodecParser ff_h264_parser = {
681     .codec_ids      = { AV_CODEC_ID_H264 },
682     .priv_data_size = sizeof(H264ParseContext),
683     .parser_init    = init,
684     .parser_parse   = h264_parse,
685     .parser_close   = h264_close,
686     .split          = h264_split,
687 };