h264_parser.c 23.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * H.26L/H.264/AVC/JVT/14496-10/... parser
 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
23
 * @file
24
 * H.264 / AVC / MPEG-4 part10 parser.
25 26 27
 * @author Michael Niedermayer <michaelni@gmx.at>
 */

28 29
#define UNCHECKED_BITSTREAM_READER 1

30 31 32 33 34 35 36 37 38 39
#include <assert.h>
#include <stdint.h>

#include "libavutil/avutil.h"
#include "libavutil/error.h"
#include "libavutil/log.h"
#include "libavutil/mem.h"
#include "libavutil/pixfmt.h"

#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 49
typedef struct H264ParseContext {
    ParseContext pc;
50
    H264ParamSets ps;
51
    H264DSPContext h264dsp;
52
    H264POCContext poc;
53
    H264SEIContext sei;
54 55
    int is_avc;
    int nal_length_size;
56
    int got_first;
57
    int picture_structure;
58 59 60
    uint8_t parse_history[6];
    int parse_history_count;
    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 74 75
    state = pc->state;
    if (state > 13)
        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 83
            int nalsize = 0;
            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 89
                return buf_size;
            }
90 91
            next_avc = i + nalsize;
            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 99 100 101 102 103 104 105
        } else if (state <= 2) {
            if (buf[i] == 1)
                state ^= 5;            // 2->7, 1->4, 0->5
            else if (buf[i])
                state = 7;
            else
                state >>= 1;           // 2->1, 1->0, 0->0
        } else if (state <= 5) {
106 107 108
            int nalu_type = buf[i] & 0x1F;
            if (nalu_type == NAL_SEI || nalu_type == NAL_SPS ||
                nalu_type == NAL_PPS || nalu_type == NAL_AUD) {
109
                if (pc->frame_start_found) {
110
                    i++;
111
                    goto found;
112
                }
113 114
            } else if (nalu_type == NAL_SLICE || nalu_type == NAL_DPA ||
                       nalu_type == NAL_IDR_SLICE) {
115
                state += 8;
116 117
                continue;
            }
118 119
            state = 7;
        } else {
120 121 122
            p->parse_history[p->parse_history_count++] = buf[i];
            if (p->parse_history_count > 5) {
                unsigned int mb, last_mb = p->parse_last_mb;
123 124
                GetBitContext gb;

125 126
                init_get_bits(&gb, p->parse_history, 8*p->parse_history_count);
                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 145
    pc->state             = 7;
    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 155
    H264PredWeightTable pwt;
    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 164
    if (slice_type_nos == AV_PICTURE_TYPE_B)
        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 169
        return AVERROR_INVALIDDATA;

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 175
                int index;
                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 183 184 185 186 187
                               "illegal reordering_of_pic_nums_idc %d\n",
                               reordering_of_pic_nums_idc);
                        return AVERROR_INVALIDDATA;
                    } else
                        break;

188
                    if (index >= ref_count[list]) {
189
                        av_log(logctx, AV_LOG_ERROR,
190
                               "reference count %d overflow\n", index);
191 192 193 194 195 196 197
                        return AVERROR_INVALIDDATA;
                    }
                }
            }
        }
    }

198 199 200
    if ((p->ps.pps->weighted_pred && slice_type_nos == AV_PICTURE_TYPE_P) ||
        (p->ps.pps->weighted_bipred_idc == 1 && slice_type_nos == AV_PICTURE_TYPE_B))
        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 205
        int i;
        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 210 211 212 213 214 215 216 217 218
                       "illegal memory management control operation %d\n",
                       opcode);
                return AVERROR_INVALIDDATA;
            }
            if (opcode == MMCO_END)
               return 0;
            else if (opcode == MMCO_RESET)
                return 1;

            if (opcode == MMCO_SHORT2UNUSED || opcode == MMCO_SHORT2LONG)
219
                get_ue_golomb_long(gb); // difference_of_pic_nums_minus1
220 221
            if (opcode == MMCO_SHORT2LONG || opcode == MMCO_LONG2UNUSED ||
                opcode == MMCO_LONG || opcode == MMCO_SET_MAX_LONG)
222
                get_ue_golomb_31(gb);
223 224 225 226 227 228
        }
    }

    return 0;
}

229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
static inline int get_avc_nalsize(H264ParseContext *p, const uint8_t *buf,
                                  int buf_size, int *buf_index, void *logctx)
{
    int i, nalsize = 0;

    if (*buf_index >= buf_size - p->nal_length_size) {
        // the end of the buffer is reached, refill it
        return AVERROR(EAGAIN);
    }

    for (i = 0; i < p->nal_length_size; i++)
        nalsize = ((unsigned)nalsize << 8) | buf[(*buf_index)++];
    if (nalsize <= 0 || nalsize > buf_size - *buf_index) {
        av_log(logctx, AV_LOG_ERROR,
               "AVC: nal size %d\n", nalsize);
        return AVERROR_INVALIDDATA;
    }
    return nalsize;
}

249
/**
250 251 252 253 254 255 256 257 258
 * Parse NAL units of found picture and decode some basic information.
 *
 * @param s parser context.
 * @param avctx codec context.
 * @param buf buffer with field/frame data.
 * @param buf_size size of the buffer.
 */
static inline int parse_nal_units(AVCodecParserContext *s,
                                  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 273
    s->pict_type         = AV_PICTURE_TYPE_I;
    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 280 281
    if (!buf_size)
        return 0;

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 295 296 297 298
            buf_index = find_start_code(buf, buf_size, buf_index, next_avc);
            if (buf_index >= buf_size)
                break;
            if (buf_index >= next_avc)
                continue;
299
        }
300 301 302
        src_length = next_avc - buf_index;

        state = buf[buf_index];
303 304 305 306
        switch (state & 0x1f) {
        case NAL_SLICE:
        case NAL_IDR_SLICE:
            // Do not walk the whole buffer just to decode slice header
307
            if ((state & 0x1f) == NAL_IDR_SLICE || ((state >> 5) & 0x3) == 0) {
308 309 310 311 312 313 314 315 316
                /* IDR or disposable slice
                 * No need to decode many bytes because MMCOs shall not be present. */
                if (src_length > 60)
                    src_length = 60;
            } else {
                /* To decode up to MMCOs */
                if (src_length > 1000)
                    src_length = 1000;
            }
317 318
            break;
        }
319
        consumed = ff_h2645_extract_rbsp(buf + buf_index, src_length, &nal);
320
        if (consumed < 0)
321 322
            break;

323 324
        buf_index += consumed;

325
        ret = init_get_bits8(&nal.gb, nal.data, nal.size);
326 327 328 329 330 331
        if (ret < 0)
            goto fail;
        get_bits1(&nal.gb);
        nal.ref_idc = get_bits(&nal.gb, 2);
        nal.type    = get_bits(&nal.gb, 5);

332
        switch (nal.type) {
333
        case NAL_SPS:
334
            ff_h264_decode_seq_parameter_set(&nal.gb, avctx, &p->ps, 0);
335 336
            break;
        case NAL_PPS:
337 338
            ff_h264_decode_picture_parameter_set(&nal.gb, avctx, &p->ps,
                                                 nal.size_bits);
339 340
            break;
        case NAL_SEI:
341
            ff_h264_sei_decode(&p->sei, &nal.gb, &p->ps, avctx);
342 343
            break;
        case NAL_IDR_SLICE:
344
            s->key_frame = 1;
345

346 347 348 349
            p->poc.prev_frame_num        = 0;
            p->poc.prev_frame_num_offset = 0;
            p->poc.prev_poc_msb          =
            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 357 358
                /* key frame, since recovery_frame_cnt is set */
                s->key_frame = 1;
            }
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
            p->ps.pps = (const PPS*)p->ps.pps_list[pps_id]->data;
            if (!p->ps.sps_list[p->ps.pps->sps_id]) {
372
                av_log(avctx, AV_LOG_ERROR,
373
                       "non-existing SPS %u referenced\n", p->ps.pps->sps_id);
374
                goto fail;
375
            }
376
            p->ps.sps = (SPS*)p->ps.sps_list[p->ps.pps->sps_id]->data;
377

378
            sps = p->ps.sps;
379

380
            // heuristic to detect non marked keyframes
381
            if (p->ps.sps->ref_frame_count <= 1 && p->ps.pps->ref_count[0] <= 1 && s->pict_type == AV_PICTURE_TYPE_I)
382 383
                s->key_frame = 1;

384
            p->poc.frame_num = get_bits(&nal.gb, sps->log2_max_frame_num);
385 386 387 388 389

            s->coded_width  = 16 * sps->mb_width;
            s->coded_height = 16 * sps->mb_height;
            s->width        = s->coded_width  - (sps->crop_right + sps->crop_left);
            s->height       = s->coded_height - (sps->crop_top   + sps->crop_bottom);
390 391 392 393 394
            if (s->width <= 0 || s->height <= 0) {
                s->width  = s->coded_width;
                s->height = s->coded_height;
            }

395
            switch (sps->bit_depth_luma) {
396
            case 9:
397 398 399
                if (sps->chroma_format_idc == 3)      s->format = AV_PIX_FMT_YUV444P9;
                else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P9;
                else                                  s->format = AV_PIX_FMT_YUV420P9;
400 401
                break;
            case 10:
402 403 404
                if (sps->chroma_format_idc == 3)      s->format = AV_PIX_FMT_YUV444P10;
                else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P10;
                else                                  s->format = AV_PIX_FMT_YUV420P10;
405 406
                break;
            case 8:
407 408 409
                if (sps->chroma_format_idc == 3)      s->format = AV_PIX_FMT_YUV444P;
                else if (sps->chroma_format_idc == 2) s->format = AV_PIX_FMT_YUV422P;
                else                                  s->format = AV_PIX_FMT_YUV420P;
410 411 412 413 414
                break;
            default:
                s->format = AV_PIX_FMT_NONE;
            }

415 416
            avctx->profile = ff_h264_get_profile(sps);
            avctx->level   = sps->level_idc;
417

418
            if (sps->frame_mbs_only_flag) {
419
                p->picture_structure = PICT_FRAME;
420
            } else {
421
                if (get_bits1(&nal.gb)) { // field_pic_flag
422
                    p->picture_structure = PICT_TOP_FIELD + get_bits1(&nal.gb); // bottom_field_flag
423
                } else {
424
                    p->picture_structure = PICT_FRAME;
425 426 427
                }
            }

428
            if (nal.type == NAL_IDR_SLICE)
429
                get_ue_golomb_long(&nal.gb); /* idr_pic_id */
430
            if (sps->poc_type == 0) {
431
                p->poc.poc_lsb = get_bits(&nal.gb, sps->log2_max_poc_lsb);
432

433
                if (p->ps.pps->pic_order_present == 1 &&
434
                    p->picture_structure == PICT_FRAME)
435
                    p->poc.delta_poc_bottom = get_se_golomb(&nal.gb);
436 437
            }

438 439
            if (sps->poc_type == 1 &&
                !sps->delta_pic_order_always_zero_flag) {
440
                p->poc.delta_poc[0] = get_se_golomb(&nal.gb);
441

442
                if (p->ps.pps->pic_order_present == 1 &&
443
                    p->picture_structure == PICT_FRAME)
444
                    p->poc.delta_poc[1] = get_se_golomb(&nal.gb);
445 446
            }

447 448
            /* Decode POC of this picture.
             * The prev_ values needed for decoding POC of the next picture are not set here. */
449
            field_poc[0] = field_poc[1] = INT_MAX;
450
            ff_h264_init_poc(field_poc, &s->output_picture_number, sps,
451
                             &p->poc, p->picture_structure, nal.ref_idc);
452

453 454 455 456
            /* Continue parsing to check if MMCO_RESET is present.
             * FIXME: MMCO_RESET could appear in non-first slice.
             *        Maybe, we should parse all undisposable non-IDR slice of this
             *        picture until encountering MMCO_RESET in a slice of it. */
457 458
            if (nal.ref_idc && nal.type != NAL_IDR_SLICE) {
                got_reset = scan_mmco_reset(s, &nal.gb, avctx);
459
                if (got_reset < 0)
460
                    goto fail;
461 462
            }

463
            /* Set up the prev_ values for decoding POC of the next picture. */
464 465
            p->poc.prev_frame_num        = got_reset ? 0 : p->poc.frame_num;
            p->poc.prev_frame_num_offset = got_reset ? 0 : p->poc.frame_num_offset;
466
            if (nal.ref_idc != 0) {
467
                if (!got_reset) {
468 469
                    p->poc.prev_poc_msb = p->poc.poc_msb;
                    p->poc.prev_poc_lsb = p->poc.poc_lsb;
470
                } else {
471 472
                    p->poc.prev_poc_msb = 0;
                    p->poc.prev_poc_lsb =
473
                        p->picture_structure == PICT_BOTTOM_FIELD ? 0 : field_poc[0];
474
                }
475 476
            }

477
            if (sps->pic_struct_present_flag) {
478
                switch (p->sei.picture_timing.pic_struct) {
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
                case SEI_PIC_STRUCT_TOP_FIELD:
                case SEI_PIC_STRUCT_BOTTOM_FIELD:
                    s->repeat_pict = 0;
                    break;
                case SEI_PIC_STRUCT_FRAME:
                case SEI_PIC_STRUCT_TOP_BOTTOM:
                case SEI_PIC_STRUCT_BOTTOM_TOP:
                    s->repeat_pict = 1;
                    break;
                case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
                case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
                    s->repeat_pict = 2;
                    break;
                case SEI_PIC_STRUCT_FRAME_DOUBLING:
                    s->repeat_pict = 3;
                    break;
                case SEI_PIC_STRUCT_FRAME_TRIPLING:
                    s->repeat_pict = 5;
                    break;
                default:
499
                    s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0;
500
                    break;
501 502
                }
            } else {
503
                s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0;
504 505
            }

506
            if (p->picture_structure == PICT_FRAME) {
507
                s->picture_structure = AV_PICTURE_STRUCTURE_FRAME;
508
                if (sps->pic_struct_present_flag) {
509
                    switch (p->sei.picture_timing.pic_struct) {
510 511 512 513 514 515 516 517 518 519 520
                    case SEI_PIC_STRUCT_TOP_BOTTOM:
                    case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
                        s->field_order = AV_FIELD_TT;
                        break;
                    case SEI_PIC_STRUCT_BOTTOM_TOP:
                    case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
                        s->field_order = AV_FIELD_BB;
                        break;
                    default:
                        s->field_order = AV_FIELD_PROGRESSIVE;
                        break;
521 522 523 524 525 526 527 528 529 530
                    }
                } else {
                    if (field_poc[0] < field_poc[1])
                        s->field_order = AV_FIELD_TT;
                    else if (field_poc[0] > field_poc[1])
                        s->field_order = AV_FIELD_BB;
                    else
                        s->field_order = AV_FIELD_PROGRESSIVE;
                }
            } else {
531
                if (p->picture_structure == PICT_TOP_FIELD)
532 533 534 535 536 537
                    s->picture_structure = AV_PICTURE_STRUCTURE_TOP_FIELD;
                else
                    s->picture_structure = AV_PICTURE_STRUCTURE_BOTTOM_FIELD;
                s->field_order = AV_FIELD_UNKNOWN;
            }

538
            av_freep(&nal.rbsp_buffer);
539 540 541
            return 0; /* no need to evaluate the rest */
        }
    }
542 543
    if (q264) {
        av_freep(&nal.rbsp_buffer);
544
        return 0;
545 546
    }
    /* didn't find a picture! */
547
    av_log(avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size);
548 549
fail:
    av_freep(&nal.rbsp_buffer);
550 551 552
    return -1;
}

553 554 555 556 557
static int h264_parse(AVCodecParserContext *s,
                      AVCodecContext *avctx,
                      const uint8_t **poutbuf, int *poutbuf_size,
                      const uint8_t *buf, int buf_size)
{
558 559
    H264ParseContext *p = s->priv_data;
    ParseContext *pc = &p->pc;
560 561
    int next;

562 563
    if (!p->got_first) {
        p->got_first = 1;
564
        if (avctx->extradata_size) {
565 566 567
            ff_h264_decode_extradata(avctx->extradata, avctx->extradata_size,
                                     &p->ps, &p->is_avc, &p->nal_length_size,
                                     avctx->err_recognition, avctx);
568 569 570
        }
    }

571 572 573
    if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
        next = buf_size;
    } else {
574
        next = h264_find_frame_end(p, buf, buf_size, avctx);
575 576

        if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
577
            *poutbuf      = NULL;
578 579 580 581
            *poutbuf_size = 0;
            return buf_size;
        }

582
        if (next < 0 && next != END_NOT_FOUND) {
583
            av_assert1(pc->last_index + next >= 0);
584
            h264_find_frame_end(p, &pc->buffer[pc->last_index + next], -next, avctx); // update state
585
        }
586
    }
587

588
    parse_nal_units(s, avctx, buf, buf_size);
589

590 591
    if (avctx->framerate.num)
        avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
592 593 594 595
    if (p->sei.picture_timing.cpb_removal_delay >= 0) {
        s->dts_sync_point    = p->sei.buffering_period.present;
        s->dts_ref_dts_delta = p->sei.picture_timing.cpb_removal_delay;
        s->pts_dts_delta     = p->sei.picture_timing.dpb_output_delay;
596 597 598 599 600
    } else {
        s->dts_sync_point    = INT_MIN;
        s->dts_ref_dts_delta = INT_MIN;
        s->pts_dts_delta     = INT_MIN;
    }
601

602 603 604
    if (s->flags & PARSER_FLAG_ONCE) {
        s->flags &= PARSER_FLAG_COMPLETE_FRAMES;
    }
605

606
    *poutbuf      = buf;
607 608 609 610 611 612 613 614
    *poutbuf_size = buf_size;
    return next;
}

static int h264_split(AVCodecContext *avctx,
                      const uint8_t *buf, int buf_size)
{
    uint32_t state = -1;
615
    int has_sps    = 0;
616
    int has_pps    = 0;
617 618
    const uint8_t *ptr = buf, *end = buf + buf_size;
    int nalu_type;
619

620 621 622 623 624 625
    while (ptr < end) {
        ptr = avpriv_find_start_code(ptr, end, &state);
        if ((state & 0xFFFFFF00) != 0x100)
            break;
        nalu_type = state & 0x1F;
        if (nalu_type == NAL_SPS) {
626
            has_sps = 1;
627
        } else if (nalu_type == NAL_PPS)
628
            has_pps = 1;
629 630 631
        /* else if (nalu_type == 0x01 ||
         *     nalu_type == 0x02 ||
         *     nalu_type == 0x05) {
632 633
         *  }
         */
634 635 636
        else if ((nalu_type != NAL_SEI || has_pps) &&
                  nalu_type != NAL_AUD && nalu_type != NAL_SPS_EXT &&
                  nalu_type != 0x0f) {
637
            if (has_sps) {
638 639 640
                while (ptr - 4 > buf && ptr[-5] == 0)
                    ptr--;
                return ptr - 4 - buf;
641 642 643
            }
        }
    }
644

645 646 647
    return 0;
}

648
static void h264_close(AVCodecParserContext *s)
649
{
650 651
    H264ParseContext *p = s->priv_data;
    ParseContext *pc = &p->pc;
652

653
    av_freep(&pc->buffer);
654

655
    ff_h264_sei_uninit(&p->sei);
656
    ff_h264_ps_uninit(&p->ps);
657 658
}

659
static av_cold int init(AVCodecParserContext *s)
660
{
661
    H264ParseContext *p = s->priv_data;
662

663
    ff_h264dsp_init(&p->h264dsp, 8, 1);
664 665
    return 0;
}
666

667
AVCodecParser ff_h264_parser = {
668
    .codec_ids      = { AV_CODEC_ID_H264 },
669
    .priv_data_size = sizeof(H264ParseContext),
670 671
    .parser_init    = init,
    .parser_parse   = h264_parse,
672
    .parser_close   = h264_close,
673
    .split          = h264_split,
674
};