libavcodec/h264_parser.c
26b4fe82
 /*
  * 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
  */
 
 /**
ba87f080
  * @file
41ed7ab4
  * H.264 / AVC / MPEG-4 part10 parser.
26b4fe82
  * @author Michael Niedermayer <michaelni@gmx.at>
  */
 
38331d20
 #define UNCHECKED_BITSTREAM_READER 1
 
02cd8bb9
 #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"
ff6474dd
 #include "golomb.h"
02cd8bb9
 #include "h264.h"
728d90a0
 #include "h264_sei.h"
02cd8bb9
 #include "h264data.h"
f1e93986
 #include "internal.h"
e0c16e4e
 #include "mpegutils.h"
02cd8bb9
 #include "parser.h"
26b4fe82
 
9404a47a
 typedef struct H264ParseContext {
     ParseContext pc;
3176217c
     H264ParamSets ps;
113aeee6
     H264DSPContext h264dsp;
c8dcff0c
     H264POCContext poc;
728d90a0
     H264SEIContext sei;
98c97994
     int is_avc;
     int nal_length_size;
9404a47a
     int got_first;
72da8d9b
     int picture_structure;
34ec084b
     uint8_t parse_history[6];
     int parse_history_count;
     int parse_last_mb;
9404a47a
 } H264ParseContext;
26b4fe82
 
9404a47a
 
 static int h264_find_frame_end(H264ParseContext *p, const uint8_t *buf,
48ea5433
                                int buf_size, void *logctx)
26b4fe82
 {
d5c0e89e
     int i, j;
26b4fe82
     uint32_t state;
9404a47a
     ParseContext *pc = &p->pc;
d5c0e89e
 
0bf5fd2e
     int next_avc = p->is_avc ? 0 : buf_size;
26b4fe82
 //    mb_addr= pc->mb_addr - 1;
f8a4d5e9
     state = pc->state;
     if (state > 13)
         state = 7;
26b4fe82
 
0bf5fd2e
     if (p->is_avc && !p->nal_length_size)
48ea5433
         av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal length size invalid\n");
d5c0e89e
 
f8a4d5e9
     for (i = 0; i < buf_size; i++) {
e2d4bcd7
         if (i >= next_avc) {
d5c0e89e
             int nalsize = 0;
             i = next_avc;
0bf5fd2e
             for (j = 0; j < p->nal_length_size; j++)
d5c0e89e
                 nalsize = (nalsize << 8) | buf[i++];
e2d4bcd7
             if (nalsize <= 0 || nalsize > buf_size - i) {
48ea5433
                 av_log(logctx, AV_LOG_ERROR, "AVC-parser: nal size %d remaining %d\n", nalsize, buf_size - i);
d5c0e89e
                 return buf_size;
             }
e2d4bcd7
             next_avc = i + nalsize;
             state    = 5;
d5c0e89e
         }
 
f8a4d5e9
         if (state == 7) {
65d5f32f
             i += p->h264dsp.startcode_find_candidate(buf + i, next_avc - i);
c0f2ad3d
             if (i < next_avc)
218d6844
                 state = 2;
f8a4d5e9
         } 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) {
dc971acf
             int nalu_type = buf[i] & 0x1F;
             if (nalu_type == NAL_SEI || nalu_type == NAL_SPS ||
                 nalu_type == NAL_PPS || nalu_type == NAL_AUD) {
f8a4d5e9
                 if (pc->frame_start_found) {
26b4fe82
                     i++;
9aa1cfec
                     goto found;
26b4fe82
                 }
dc971acf
             } else if (nalu_type == NAL_SLICE || nalu_type == NAL_DPA ||
                        nalu_type == NAL_IDR_SLICE) {
e2d4bcd7
                 state += 8;
4ffed61b
                 continue;
             }
e2d4bcd7
             state = 7;
         } else {
34ec084b
             p->parse_history[p->parse_history_count++] = buf[i];
             if (p->parse_history_count > 5) {
                 unsigned int mb, last_mb = p->parse_last_mb;
4ffed61b
                 GetBitContext gb;
 
34ec084b
                 init_get_bits(&gb, p->parse_history, 8*p->parse_history_count);
                 p->parse_history_count = 0;
4ffed61b
                 mb= get_ue_golomb_long(&gb);
34ec084b
                 p->parse_last_mb = mb;
f8a4d5e9
                 if (pc->frame_start_found) {
e2d4bcd7
                     if (mb <= last_mb)
4ffed61b
                         goto found;
f8a4d5e9
                 } else
26b4fe82
                     pc->frame_start_found = 1;
e2d4bcd7
                 state = 7;
26b4fe82
             }
         }
     }
f8a4d5e9
     pc->state = state;
0bf5fd2e
     if (p->is_avc)
d5c0e89e
         return next_avc;
26b4fe82
     return END_NOT_FOUND;
9aa1cfec
 
 found:
f8a4d5e9
     pc->state             = 7;
     pc->frame_start_found = 0;
0bf5fd2e
     if (p->is_avc)
d5c0e89e
         return next_avc;
0782fb6b
     return i - (state & 5) - 5 * (state > 7);
26b4fe82
 }
 
72da8d9b
 static int scan_mmco_reset(AVCodecParserContext *s, GetBitContext *gb,
38a2d9ae
                            void *logctx)
4baba6c8
 {
44d16df4
     H264PredWeightTable pwt;
     int slice_type_nos = s->pict_type & 3;
9404a47a
     H264ParseContext *p = s->priv_data;
a6e27f7a
     int list_count, ref_count[2];
4baba6c8
 
 
3176217c
     if (p->ps.pps->redundant_pic_cnt_present)
44d16df4
         get_ue_golomb(gb); // redundant_pic_count
4baba6c8
 
44d16df4
     if (slice_type_nos == AV_PICTURE_TYPE_B)
         get_bits1(gb); // direct_spatial_mv_pred
e9f88441
 
3176217c
     if (ff_h264_parse_ref_count(&list_count, ref_count, gb, p->ps.pps,
38a2d9ae
                                 slice_type_nos, p->picture_structure, logctx) < 0)
4baba6c8
         return AVERROR_INVALIDDATA;
 
44d16df4
     if (slice_type_nos != AV_PICTURE_TYPE_I) {
4baba6c8
         int list;
a6e27f7a
         for (list = 0; list < list_count; list++) {
44d16df4
             if (get_bits1(gb)) {
4baba6c8
                 int index;
                 for (index = 0; ; index++) {
44d16df4
                     unsigned int reordering_of_pic_nums_idc = get_ue_golomb_31(gb);
4baba6c8
 
                     if (reordering_of_pic_nums_idc < 3)
2dc954e0
                         get_ue_golomb_long(gb);
4baba6c8
                     else if (reordering_of_pic_nums_idc > 3) {
38a2d9ae
                         av_log(logctx, AV_LOG_ERROR,
4baba6c8
                                "illegal reordering_of_pic_nums_idc %d\n",
                                reordering_of_pic_nums_idc);
                         return AVERROR_INVALIDDATA;
                     } else
                         break;
 
a6e27f7a
                     if (index >= ref_count[list]) {
38a2d9ae
                         av_log(logctx, AV_LOG_ERROR,
73e8fab3
                                "reference count %d overflow\n", index);
4baba6c8
                         return AVERROR_INVALIDDATA;
                     }
                 }
             }
         }
     }
 
3176217c
     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,
38a2d9ae
                                   &pwt, logctx);
4baba6c8
 
44d16df4
     if (get_bits1(gb)) { // adaptive_ref_pic_marking_mode_flag
4baba6c8
         int i;
         for (i = 0; i < MAX_MMCO_COUNT; i++) {
44d16df4
             MMCOOpcode opcode = get_ue_golomb_31(gb);
4baba6c8
             if (opcode > (unsigned) MMCO_LONG) {
38a2d9ae
                 av_log(logctx, AV_LOG_ERROR,
4baba6c8
                        "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)
2dc954e0
                 get_ue_golomb_long(gb); // difference_of_pic_nums_minus1
4baba6c8
             if (opcode == MMCO_SHORT2LONG || opcode == MMCO_LONG2UNUSED ||
                 opcode == MMCO_LONG || opcode == MMCO_SET_MAX_LONG)
44d16df4
                 get_ue_golomb_31(gb);
4baba6c8
         }
     }
 
     return 0;
 }
 
0bf5fd2e
 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;
 }
 
adbfc605
 /**
ff6474dd
  * 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,
69a9a90d
                                   const uint8_t * const buf, int buf_size)
ff6474dd
 {
9404a47a
     H264ParseContext *p = s->priv_data;
8d0cc8ca
     H2645NAL nal = { NULL };
69a9a90d
     int buf_index, next_avc;
96c3da93
     unsigned int pps_id;
ff6474dd
     unsigned int slice_type;
4baba6c8
     int state = -1, got_reset = 0;
2d6a45c1
     int q264 = buf_size >=4 && !memcmp("Q264", buf, 4);
3f1a7ceb
     int field_poc[2];
8d0cc8ca
     int ret;
ff6474dd
 
     /* set some sane default values */
f8a4d5e9
     s->pict_type         = AV_PICTURE_TYPE_I;
     s->key_frame         = 0;
3f1a7ceb
     s->picture_structure = AV_PICTURE_STRUCTURE_UNKNOWN;
ff6474dd
 
728d90a0
     ff_h264_sei_uninit(&p->sei);
0ed14bba
     p->sei.frame_packing.frame_packing_arrangement_cancel_flag = -1;
ff6474dd
 
9479415e
     if (!buf_size)
         return 0;
 
69a9a90d
     buf_index     = 0;
0bf5fd2e
     next_avc      = p->is_avc ? 0 : buf_size;
f8a4d5e9
     for (;;) {
3176217c
         const SPS *sps;
15ad0232
         int src_length, consumed, nalsize = 0;
69a9a90d
 
         if (buf_index >= next_avc) {
0bf5fd2e
             nalsize = get_avc_nalsize(p, buf, buf_size, &buf_index, avctx);
69a9a90d
             if (nalsize < 0)
3fa6d205
                 break;
69a9a90d
             next_avc = buf_index + nalsize;
3fa6d205
         } else {
69a9a90d
             buf_index = find_start_code(buf, buf_size, buf_index, next_avc);
             if (buf_index >= buf_size)
                 break;
             if (buf_index >= next_avc)
                 continue;
3fa6d205
         }
69a9a90d
         src_length = next_avc - buf_index;
 
         state = buf[buf_index];
ff6474dd
         switch (state & 0x1f) {
         case NAL_SLICE:
         case NAL_IDR_SLICE:
             // Do not walk the whole buffer just to decode slice header
9c0fe487
             if ((state & 0x1f) == NAL_IDR_SLICE || ((state >> 5) & 0x3) == 0) {
4baba6c8
                 /* 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;
             }
ff6474dd
             break;
         }
15ad0232
         consumed = ff_h2645_extract_rbsp(buf + buf_index, src_length, &nal);
8d0cc8ca
         if (consumed < 0)
ff6474dd
             break;
 
69a9a90d
         buf_index += consumed;
 
15ad0232
         ret = init_get_bits8(&nal.gb, nal.data, nal.size);
8d0cc8ca
         if (ret < 0)
             goto fail;
         get_bits1(&nal.gb);
         nal.ref_idc = get_bits(&nal.gb, 2);
         nal.type    = get_bits(&nal.gb, 5);
 
72da8d9b
         switch (nal.type) {
ff6474dd
         case NAL_SPS:
1534ef87
             ff_h264_decode_seq_parameter_set(&nal.gb, avctx, &p->ps, 0);
ff6474dd
             break;
         case NAL_PPS:
3176217c
             ff_h264_decode_picture_parameter_set(&nal.gb, avctx, &p->ps,
                                                  nal.size_bits);
ff6474dd
             break;
         case NAL_SEI:
728d90a0
             ff_h264_sei_decode(&p->sei, &nal.gb, &p->ps, avctx);
ff6474dd
             break;
         case NAL_IDR_SLICE:
0ed260c7
             s->key_frame = 1;
3f1a7ceb
 
c8dcff0c
             p->poc.prev_frame_num        = 0;
             p->poc.prev_frame_num_offset = 0;
             p->poc.prev_poc_msb          =
             p->poc.prev_poc_lsb          = 0;
f8a4d5e9
         /* fall through */
ff6474dd
         case NAL_SLICE:
2dc954e0
             get_ue_golomb_long(&nal.gb);  // skip first_mb_in_slice
44d16df4
             slice_type   = get_ue_golomb_31(&nal.gb);
a7da517f
             s->pict_type = ff_h264_golomb_to_pict_type[slice_type % 5];
728d90a0
             if (p->sei.recovery_point.recovery_frame_cnt >= 0) {
0ed260c7
                 /* key frame, since recovery_frame_cnt is set */
                 s->key_frame = 1;
             }
44d16df4
             pps_id = get_ue_golomb(&nal.gb);
f8a4d5e9
             if (pps_id >= MAX_PPS_COUNT) {
72da8d9b
                 av_log(avctx, AV_LOG_ERROR,
73e8fab3
                        "pps_id %u out of range\n", pps_id);
8d0cc8ca
                 goto fail;
96c3da93
             }
3176217c
             if (!p->ps.pps_list[pps_id]) {
72da8d9b
                 av_log(avctx, AV_LOG_ERROR,
73e8fab3
                        "non-existing PPS %u referenced\n", pps_id);
8d0cc8ca
                 goto fail;
96c3da93
             }
e4eab67a
 
             av_buffer_unref(&p->ps.pps_ref);
             av_buffer_unref(&p->ps.sps_ref);
             p->ps.pps = NULL;
             p->ps.sps = NULL;
             p->ps.pps_ref = av_buffer_ref(p->ps.pps_list[pps_id]);
             if (!p->ps.pps_ref)
                 goto fail;
             p->ps.pps = (const PPS*)p->ps.pps_ref->data;
 
3176217c
             if (!p->ps.sps_list[p->ps.pps->sps_id]) {
72da8d9b
                 av_log(avctx, AV_LOG_ERROR,
3176217c
                        "non-existing SPS %u referenced\n", p->ps.pps->sps_id);
8d0cc8ca
                 goto fail;
96c3da93
             }
e4eab67a
 
             p->ps.sps_ref = av_buffer_ref(p->ps.sps_list[p->ps.pps->sps_id]);
             if (!p->ps.sps_ref)
                 goto fail;
             p->ps.sps = (SPS*)p->ps.sps_ref->data;
96c3da93
 
3176217c
             sps = p->ps.sps;
96c3da93
 
1534ef87
             // heuristic to detect non marked keyframes
0ed14bba
             if (p->ps.sps->ref_frame_count <= 1 && p->ps.pps->ref_count[0] <= 1 && s->pict_type == AV_PICTURE_TYPE_I)
e0b2bdd3
                 s->key_frame = 1;
 
c8dcff0c
             p->poc.frame_num = get_bits(&nal.gb, sps->log2_max_frame_num);
3176217c
 
             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);
31d2039c
             if (s->width <= 0 || s->height <= 0) {
                 s->width  = s->coded_width;
                 s->height = s->coded_height;
             }
 
3176217c
             switch (sps->bit_depth_luma) {
31d2039c
             case 9:
72da8d9b
                 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;
31d2039c
                 break;
             case 10:
72da8d9b
                 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;
31d2039c
                 break;
             case 8:
72da8d9b
                 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;
31d2039c
                 break;
             default:
                 s->format = AV_PIX_FMT_NONE;
             }
 
3176217c
             avctx->profile = ff_h264_get_profile(sps);
             avctx->level   = sps->level_idc;
dd0cd3d2
 
3176217c
             if (sps->frame_mbs_only_flag) {
72da8d9b
                 p->picture_structure = PICT_FRAME;
f8a4d5e9
             } else {
44d16df4
                 if (get_bits1(&nal.gb)) { // field_pic_flag
72da8d9b
                     p->picture_structure = PICT_TOP_FIELD + get_bits1(&nal.gb); // bottom_field_flag
96c3da93
                 } else {
72da8d9b
                     p->picture_structure = PICT_FRAME;
96c3da93
                 }
             }
 
72da8d9b
             if (nal.type == NAL_IDR_SLICE)
2dc954e0
                 get_ue_golomb_long(&nal.gb); /* idr_pic_id */
3176217c
             if (sps->poc_type == 0) {
c8dcff0c
                 p->poc.poc_lsb = get_bits(&nal.gb, sps->log2_max_poc_lsb);
3f1a7ceb
 
3176217c
                 if (p->ps.pps->pic_order_present == 1 &&
72da8d9b
                     p->picture_structure == PICT_FRAME)
c8dcff0c
                     p->poc.delta_poc_bottom = get_se_golomb(&nal.gb);
3f1a7ceb
             }
 
3176217c
             if (sps->poc_type == 1 &&
                 !sps->delta_pic_order_always_zero_flag) {
c8dcff0c
                 p->poc.delta_poc[0] = get_se_golomb(&nal.gb);
3f1a7ceb
 
3176217c
                 if (p->ps.pps->pic_order_present == 1 &&
72da8d9b
                     p->picture_structure == PICT_FRAME)
c8dcff0c
                     p->poc.delta_poc[1] = get_se_golomb(&nal.gb);
3f1a7ceb
             }
 
4baba6c8
             /* Decode POC of this picture.
              * The prev_ values needed for decoding POC of the next picture are not set here. */
b81dbd6c
             field_poc[0] = field_poc[1] = INT_MAX;
c8dcff0c
             ff_h264_init_poc(field_poc, &s->output_picture_number, sps,
72da8d9b
                              &p->poc, p->picture_structure, nal.ref_idc);
3f1a7ceb
 
4baba6c8
             /* 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. */
72da8d9b
             if (nal.ref_idc && nal.type != NAL_IDR_SLICE) {
                 got_reset = scan_mmco_reset(s, &nal.gb, avctx);
4baba6c8
                 if (got_reset < 0)
8d0cc8ca
                     goto fail;
4baba6c8
             }
 
b81dbd6c
             /* Set up the prev_ values for decoding POC of the next picture. */
c8dcff0c
             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;
72da8d9b
             if (nal.ref_idc != 0) {
4baba6c8
                 if (!got_reset) {
c8dcff0c
                     p->poc.prev_poc_msb = p->poc.poc_msb;
                     p->poc.prev_poc_lsb = p->poc.poc_lsb;
4baba6c8
                 } else {
c8dcff0c
                     p->poc.prev_poc_msb = 0;
                     p->poc.prev_poc_lsb =
72da8d9b
                         p->picture_structure == PICT_BOTTOM_FIELD ? 0 : field_poc[0];
4baba6c8
                 }
b81dbd6c
             }
 
3176217c
             if (sps->pic_struct_present_flag) {
728d90a0
                 switch (p->sei.picture_timing.pic_struct) {
f8a4d5e9
                 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:
72da8d9b
                     s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0;
f8a4d5e9
                     break;
346db3ef
                 }
             } else {
72da8d9b
                 s->repeat_pict = p->picture_structure == PICT_FRAME ? 1 : 0;
346db3ef
             }
 
72da8d9b
             if (p->picture_structure == PICT_FRAME) {
3f1a7ceb
                 s->picture_structure = AV_PICTURE_STRUCTURE_FRAME;
3176217c
                 if (sps->pic_struct_present_flag) {
728d90a0
                     switch (p->sei.picture_timing.pic_struct) {
f8a4d5e9
                     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;
3f1a7ceb
                     }
                 } 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 {
72da8d9b
                 if (p->picture_structure == PICT_TOP_FIELD)
3f1a7ceb
                     s->picture_structure = AV_PICTURE_STRUCTURE_TOP_FIELD;
                 else
                     s->picture_structure = AV_PICTURE_STRUCTURE_BOTTOM_FIELD;
                 s->field_order = AV_FIELD_UNKNOWN;
             }
 
8d0cc8ca
             av_freep(&nal.rbsp_buffer);
ff6474dd
             return 0; /* no need to evaluate the rest */
         }
     }
15ad0232
     if (q264) {
         av_freep(&nal.rbsp_buffer);
2d6a45c1
         return 0;
ff6474dd
     }
     /* didn't find a picture! */
0ed14bba
     av_log(avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size);
8d0cc8ca
 fail:
     av_freep(&nal.rbsp_buffer);
ff6474dd
     return -1;
 }
 
26b4fe82
 static int h264_parse(AVCodecParserContext *s,
                       AVCodecContext *avctx,
                       const uint8_t **poutbuf, int *poutbuf_size,
                       const uint8_t *buf, int buf_size)
 {
9404a47a
     H264ParseContext *p = s->priv_data;
     ParseContext *pc = &p->pc;
26b4fe82
     int next;
 
9404a47a
     if (!p->got_first) {
         p->got_first = 1;
23584bec
         if (avctx->extradata_size) {
98c97994
             ff_h264_decode_extradata(avctx->extradata, avctx->extradata_size,
                                      &p->ps, &p->is_avc, &p->nal_length_size,
                                      avctx->err_recognition, avctx);
23584bec
         }
     }
 
f8a4d5e9
     if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
         next = buf_size;
     } else {
48ea5433
         next = h264_find_frame_end(p, buf, buf_size, avctx);
26b4fe82
 
         if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
f8a4d5e9
             *poutbuf      = NULL;
26b4fe82
             *poutbuf_size = 0;
             return buf_size;
         }
 
f8a4d5e9
         if (next < 0 && next != END_NOT_FOUND) {
e2d4bcd7
             av_assert1(pc->last_index + next >= 0);
48ea5433
             h264_find_frame_end(p, &pc->buffer[pc->last_index + next], -next, avctx); // update state
26b4fe82
         }
01f5b9c5
     }
ff6474dd
 
9c09dead
     parse_nal_units(s, avctx, buf, buf_size);
c733922e
 
09450c55
     if (avctx->framerate.num)
         avctx->time_base = av_inv_q(av_mul_q(avctx->framerate, (AVRational){avctx->ticks_per_frame, 1}));
728d90a0
     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;
9c09dead
     } else {
         s->dts_sync_point    = INT_MIN;
         s->dts_ref_dts_delta = INT_MIN;
         s->pts_dts_delta     = INT_MIN;
     }
01f5b9c5
 
9c09dead
     if (s->flags & PARSER_FLAG_ONCE) {
         s->flags &= PARSER_FLAG_COMPLETE_FRAMES;
     }
26b4fe82
 
f8a4d5e9
     *poutbuf      = buf;
26b4fe82
     *poutbuf_size = buf_size;
     return next;
 }
 
 static int h264_split(AVCodecContext *avctx,
                       const uint8_t *buf, int buf_size)
 {
     uint32_t state = -1;
f8a4d5e9
     int has_sps    = 0;
9d6ad68f
     int has_pps    = 0;
2a72b166
     const uint8_t *ptr = buf, *end = buf + buf_size;
     int nalu_type;
f8a4d5e9
 
2a72b166
     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) {
f8a4d5e9
             has_sps = 1;
2a72b166
         } else if (nalu_type == NAL_PPS)
9d6ad68f
             has_pps = 1;
2a72b166
         /* else if (nalu_type == 0x01 ||
          *     nalu_type == 0x02 ||
          *     nalu_type == 0x05) {
f8a4d5e9
          *  }
          */
2a72b166
         else if ((nalu_type != NAL_SEI || has_pps) &&
                   nalu_type != NAL_AUD && nalu_type != NAL_SPS_EXT &&
                   nalu_type != 0x0f) {
f8a4d5e9
             if (has_sps) {
2a72b166
                 while (ptr - 4 > buf && ptr[-5] == 0)
                     ptr--;
                 return ptr - 4 - buf;
26b4fe82
             }
         }
     }
2a72b166
 
26b4fe82
     return 0;
 }
 
ccaa5dcb
 static void h264_close(AVCodecParserContext *s)
3ee4f5e4
 {
9404a47a
     H264ParseContext *p = s->priv_data;
     ParseContext *pc = &p->pc;
3ee4f5e4
 
fc8d59fa
     av_freep(&pc->buffer);
3176217c
 
728d90a0
     ff_h264_sei_uninit(&p->sei);
0ea58059
     ff_h264_ps_uninit(&p->ps);
3ee4f5e4
 }
 
6fee1b90
 static av_cold int init(AVCodecParserContext *s)
e9ca315d
 {
9404a47a
     H264ParseContext *p = s->priv_data;
92c6c2a6
 
113aeee6
     ff_h264dsp_init(&p->h264dsp, 8, 1);
e9ca315d
     return 0;
 }
26b4fe82
 
e7e2df27
 AVCodecParser ff_h264_parser = {
36ef5369
     .codec_ids      = { AV_CODEC_ID_H264 },
9404a47a
     .priv_data_size = sizeof(H264ParseContext),
5511ad14
     .parser_init    = init,
     .parser_parse   = h264_parse,
ccaa5dcb
     .parser_close   = h264_close,
5511ad14
     .split          = h264_split,
26b4fe82
 };