Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

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