libavcodec/hevc_parser.c
c8dd048a
 /*
  * HEVC Annex B format parser
  *
  * Copyright (C) 2012 - 2013 Guillaume Martres
  *
  * 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
  */
 
 #include "libavutil/common.h"
f578e5d9
 
afa93d19
 #include "golomb.h"
c359d624
 #include "hevc.h"
1c088632
 #include "hevc_ps.h"
 #include "hevc_sei.h"
fa936a30
 #include "h2645_parse.h"
1c088632
 #include "internal.h"
650060df
 #include "parser.h"
c8dd048a
 
 #define START_CODE 0x000001 ///< start_code_prefix_one_3bytes
 
650060df
 #define IS_IRAP_NAL(nal) (nal->type >= 16 && nal->type <= 23)
1c088632
 #define IS_IDR_NAL(nal) (nal->type == HEVC_NAL_IDR_W_RADL || nal->type == HEVC_NAL_IDR_N_LP)
4496ccc7
 
650060df
 typedef struct HEVCParserContext {
afa93d19
     ParseContext pc;
650060df
 
fa936a30
     H2645Packet pkt;
650060df
     HEVCParamSets ps;
1c088632
     HEVCSEIContext sei;
     SliceHeader sh;
650060df
 
     int parsed_extradata;
4496ccc7
 
1c088632
     int poc;
     int pocTid0;
650060df
 } HEVCParserContext;
 
bf1e3be5
 static int hevc_parse_slice_header(AVCodecParserContext *s, H2645NAL *nal,
                                    AVCodecContext *avctx)
 {
     HEVCParserContext *ctx = s->priv_data;
     HEVCParamSets *ps = &ctx->ps;
     HEVCSEIContext *sei = &ctx->sei;
     SliceHeader *sh = &ctx->sh;
     GetBitContext *gb = &nal->gb;
000fb61a
     const HEVCWindow *ow;
bf1e3be5
     int i, num = 0, den = 0;
 
     sh->first_slice_in_pic_flag = get_bits1(gb);
     s->picture_structure = sei->picture_timing.picture_struct;
     s->field_order = sei->picture_timing.picture_struct;
 
     if (IS_IRAP_NAL(nal)) {
         s->key_frame = 1;
         sh->no_output_of_prior_pics_flag = get_bits1(gb);
     }
 
     sh->pps_id = get_ue_golomb(gb);
     if (sh->pps_id >= HEVC_MAX_PPS_COUNT || !ps->pps_list[sh->pps_id]) {
         av_log(avctx, AV_LOG_ERROR, "PPS id out of range: %d\n", sh->pps_id);
         return AVERROR_INVALIDDATA;
     }
     ps->pps = (HEVCPPS*)ps->pps_list[sh->pps_id]->data;
 
     if (ps->pps->sps_id >= HEVC_MAX_SPS_COUNT || !ps->sps_list[ps->pps->sps_id]) {
         av_log(avctx, AV_LOG_ERROR, "SPS id out of range: %d\n", ps->pps->sps_id);
         return AVERROR_INVALIDDATA;
     }
     if (ps->sps != (HEVCSPS*)ps->sps_list[ps->pps->sps_id]->data) {
         ps->sps = (HEVCSPS*)ps->sps_list[ps->pps->sps_id]->data;
         ps->vps = (HEVCVPS*)ps->vps_list[ps->sps->vps_id]->data;
     }
000fb61a
     ow  = &ps->sps->output_window;
bf1e3be5
 
     s->coded_width  = ps->sps->width;
     s->coded_height = ps->sps->height;
000fb61a
     s->width        = ps->sps->width  - ow->left_offset - ow->right_offset;
     s->height       = ps->sps->height - ow->top_offset  - ow->bottom_offset;
bf1e3be5
     s->format       = ps->sps->pix_fmt;
     avctx->profile  = ps->sps->ptl.general_ptl.profile_idc;
     avctx->level    = ps->sps->ptl.general_ptl.level_idc;
 
     if (ps->vps->vps_timing_info_present_flag) {
         num = ps->vps->vps_num_units_in_tick;
         den = ps->vps->vps_time_scale;
     } else if (ps->sps->vui.vui_timing_info_present_flag) {
         num = ps->sps->vui.vui_num_units_in_tick;
         den = ps->sps->vui.vui_time_scale;
     }
 
     if (num != 0 && den != 0)
         av_reduce(&avctx->framerate.den, &avctx->framerate.num,
                   num, den, 1 << 30);
 
     if (!sh->first_slice_in_pic_flag) {
         int slice_address_length;
 
         if (ps->pps->dependent_slice_segments_enabled_flag)
             sh->dependent_slice_segment_flag = get_bits1(gb);
         else
             sh->dependent_slice_segment_flag = 0;
 
         slice_address_length = av_ceil_log2_c(ps->sps->ctb_width *
                                               ps->sps->ctb_height);
         sh->slice_segment_addr = get_bitsz(gb, slice_address_length);
         if (sh->slice_segment_addr >= ps->sps->ctb_width * ps->sps->ctb_height) {
             av_log(avctx, AV_LOG_ERROR, "Invalid slice segment address: %u.\n",
                    sh->slice_segment_addr);
             return AVERROR_INVALIDDATA;
         }
     } else
         sh->dependent_slice_segment_flag = 0;
 
     if (sh->dependent_slice_segment_flag)
         return 0; /* break; */
 
     for (i = 0; i < ps->pps->num_extra_slice_header_bits; i++)
         skip_bits(gb, 1); // slice_reserved_undetermined_flag[]
 
     sh->slice_type = get_ue_golomb(gb);
     if (!(sh->slice_type == HEVC_SLICE_I || sh->slice_type == HEVC_SLICE_P ||
           sh->slice_type == HEVC_SLICE_B)) {
         av_log(avctx, AV_LOG_ERROR, "Unknown slice type: %d.\n",
                sh->slice_type);
         return AVERROR_INVALIDDATA;
     }
     s->pict_type = sh->slice_type == HEVC_SLICE_B ? AV_PICTURE_TYPE_B :
                    sh->slice_type == HEVC_SLICE_P ? AV_PICTURE_TYPE_P :
                                                AV_PICTURE_TYPE_I;
 
     if (ps->pps->output_flag_present_flag)
         sh->pic_output_flag = get_bits1(gb);
 
     if (ps->sps->separate_colour_plane_flag)
         sh->colour_plane_id = get_bits(gb, 2);
 
     if (!IS_IDR_NAL(nal)) {
         sh->pic_order_cnt_lsb = get_bits(gb, ps->sps->log2_max_poc_lsb);
         s->output_picture_number = ctx->poc = ff_hevc_compute_poc(ps->sps, ctx->pocTid0, sh->pic_order_cnt_lsb, nal->type);
     } else
         s->output_picture_number = ctx->poc = 0;
 
     if (nal->temporal_id == 0 &&
         nal->type != HEVC_NAL_TRAIL_N &&
         nal->type != HEVC_NAL_TSA_N &&
         nal->type != HEVC_NAL_STSA_N &&
         nal->type != HEVC_NAL_RADL_N &&
         nal->type != HEVC_NAL_RASL_N &&
         nal->type != HEVC_NAL_RADL_R &&
         nal->type != HEVC_NAL_RASL_R)
         ctx->pocTid0 = ctx->poc;
 
     return 1; /* no need to evaluate the rest */
 }
 
afa93d19
 /**
  * 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.
  */
859cc5c8
 static int parse_nal_units(AVCodecParserContext *s, const uint8_t *buf,
4496ccc7
                            int buf_size, AVCodecContext *avctx)
 {
     HEVCParserContext *ctx = s->priv_data;
1c088632
     HEVCParamSets *ps = &ctx->ps;
     HEVCSEIContext *sei = &ctx->sei;
54882156
     int is_global = buf == avctx->extradata;
859cc5c8
     int ret, i;
4496ccc7
 
     /* set some sane default values */
     s->pict_type         = AV_PICTURE_TYPE_I;
     s->key_frame         = 0;
     s->picture_structure = AV_PICTURE_STRUCTURE_UNKNOWN;
 
c4b08c8a
     ff_hevc_reset_sei(sei);
964f07f6
 
ceb08590
     ret = ff_h2645_packet_split(&ctx->pkt, buf, buf_size, avctx, 0, 0,
                                 AV_CODEC_ID_HEVC, 1);
     if (ret < 0)
         return ret;
4496ccc7
 
ceb08590
     for (i = 0; i < ctx->pkt.nb_nals; i++) {
         H2645NAL *nal = &ctx->pkt.nals[i];
1c088632
         GetBitContext *gb = &nal->gb;
bd6610c3
 
1c088632
         switch (nal->type) {
6397815b
         case HEVC_NAL_VPS:
4496ccc7
             ff_hevc_decode_nal_vps(gb, avctx, ps);
             break;
6397815b
         case HEVC_NAL_SPS:
4496ccc7
             ff_hevc_decode_nal_sps(gb, avctx, ps, 1);
             break;
6397815b
         case HEVC_NAL_PPS:
4496ccc7
             ff_hevc_decode_nal_pps(gb, avctx, ps);
             break;
6397815b
         case HEVC_NAL_SEI_PREFIX:
         case HEVC_NAL_SEI_SUFFIX:
1c088632
             ff_hevc_decode_nal_sei(gb, avctx, sei, ps, nal->type);
4496ccc7
             break;
6397815b
         case HEVC_NAL_TRAIL_N:
         case HEVC_NAL_TRAIL_R:
         case HEVC_NAL_TSA_N:
         case HEVC_NAL_TSA_R:
         case HEVC_NAL_STSA_N:
         case HEVC_NAL_STSA_R:
         case HEVC_NAL_BLA_W_LP:
         case HEVC_NAL_BLA_W_RADL:
         case HEVC_NAL_BLA_N_LP:
         case HEVC_NAL_IDR_W_RADL:
         case HEVC_NAL_IDR_N_LP:
         case HEVC_NAL_CRA_NUT:
859cc5c8
         case HEVC_NAL_RADL_N:
         case HEVC_NAL_RADL_R:
         case HEVC_NAL_RASL_N:
         case HEVC_NAL_RASL_R:
54882156
 
             if (is_global) {
1c088632
                 av_log(avctx, AV_LOG_ERROR, "Invalid NAL unit: %d\n", nal->type);
54882156
                 return AVERROR_INVALIDDATA;
             }
 
bf1e3be5
             ret = hevc_parse_slice_header(s, nal, avctx);
             if (ret)
                 return ret;
             break;
4496ccc7
         }
     }
     /* didn't find a picture! */
54882156
     if (!is_global)
1c088632
         av_log(avctx, AV_LOG_ERROR, "missing picture in access unit\n");
4496ccc7
     return -1;
 }
afa93d19
 
214f4133
 /**
  * Find the end of the current frame in the bitstream.
  * @return the position of the first byte of the next frame, or END_NOT_FOUND
  */
 static int hevc_find_frame_end(AVCodecParserContext *s, const uint8_t *buf,
                                int buf_size)
 {
     HEVCParserContext *ctx = s->priv_data;
     ParseContext       *pc = &ctx->pc;
     int i;
 
     for (i = 0; i < buf_size; i++) {
         int nut;
 
         pc->state64 = (pc->state64 << 8) | buf[i];
 
         if (((pc->state64 >> 3 * 8) & 0xFFFFFF) != START_CODE)
             continue;
 
         nut = (pc->state64 >> 2 * 8 + 1) & 0x3F;
         // Beginning of access unit
ca2209d6
         if ((nut >= HEVC_NAL_VPS && nut <= HEVC_NAL_EOB_NUT) || nut == HEVC_NAL_SEI_PREFIX ||
214f4133
             (nut >= 41 && nut <= 44) || (nut >= 48 && nut <= 55)) {
             if (pc->frame_start_found) {
                 pc->frame_start_found = 0;
                 return i - 5;
             }
         } else if (nut <= HEVC_NAL_RASL_R ||
                    (nut >= HEVC_NAL_BLA_W_LP && nut <= HEVC_NAL_CRA_NUT)) {
             int first_slice_segment_in_pic_flag = buf[i] >> 7;
             if (first_slice_segment_in_pic_flag) {
                 if (!pc->frame_start_found) {
                     pc->frame_start_found = 1;
                 } else { // First slice of next frame found
                     pc->frame_start_found = 0;
                     return i - 5;
                 }
             }
         }
     }
 
     return END_NOT_FOUND;
 }
 
859cc5c8
 static int hevc_parse(AVCodecParserContext *s, AVCodecContext *avctx,
c8dd048a
                       const uint8_t **poutbuf, int *poutbuf_size,
                       const uint8_t *buf, int buf_size)
 {
     int next;
650060df
     HEVCParserContext *ctx = s->priv_data;
     ParseContext *pc = &ctx->pc;
 
     if (avctx->extradata && !ctx->parsed_extradata) {
         parse_nal_units(s, avctx->extradata, avctx->extradata_size, avctx);
         ctx->parsed_extradata = 1;
     }
c8dd048a
 
     if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
         next = buf_size;
     } else {
         next = hevc_find_frame_end(s, buf, buf_size);
         if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
f578e5d9
             *poutbuf      = NULL;
c8dd048a
             *poutbuf_size = 0;
             return buf_size;
         }
     }
 
650060df
     parse_nal_units(s, buf, buf_size, avctx);
afa93d19
 
b23692b3
     *poutbuf      = buf;
c8dd048a
     *poutbuf_size = buf_size;
     return next;
 }
 
 // Split after the parameter sets at the beginning of the stream if they exist.
 static int hevc_split(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
 {
b3a56e60
     const uint8_t *ptr = buf, *end = buf + buf_size;
c8dd048a
     uint32_t state = -1;
62bd8dee
     int has_vps = 0;
     int has_sps = 0;
     int has_pps = 0;
     int nut;
c8dd048a
 
b3a56e60
     while (ptr < end) {
         ptr = avpriv_find_start_code(ptr, end, &state);
         if ((state >> 8) != START_CODE)
             break;
         nut = (state >> 1) & 0x3F;
6397815b
         if (nut == HEVC_NAL_VPS)
62bd8dee
             has_vps = 1;
6397815b
         else if (nut == HEVC_NAL_SPS)
62bd8dee
             has_sps = 1;
6397815b
         else if (nut == HEVC_NAL_PPS)
62bd8dee
             has_pps = 1;
6397815b
         else if ((nut != HEVC_NAL_SEI_PREFIX || has_pps) &&
                   nut != HEVC_NAL_AUD) {
62bd8dee
             if (has_vps && has_sps) {
                 while (ptr - 4 > buf && ptr[-5] == 0)
                     ptr--;
                 return ptr - 4 - buf;
             }
         }
c8dd048a
     }
     return 0;
 }
 
650060df
 static void hevc_parser_close(AVCodecParserContext *s)
afa93d19
 {
650060df
     HEVCParserContext *ctx = s->priv_data;
9e810a98
 
e5bbb521
     ff_hevc_ps_uninit(&ctx->ps);
8229eff4
     ff_h2645_packet_uninit(&ctx->pkt);
1e8daf31
     ff_hevc_reset_sei(&ctx->sei);
650060df
 
     av_freep(&ctx->pc.buffer);
afa93d19
 }
 
c8dd048a
 AVCodecParser ff_hevc_parser = {
     .codec_ids      = { AV_CODEC_ID_HEVC },
650060df
     .priv_data_size = sizeof(HEVCParserContext),
c8dd048a
     .parser_parse   = hevc_parse,
650060df
     .parser_close   = hevc_parser_close,
c8dd048a
     .split          = hevc_split,
 };