libavcodec/hevc_sei.c
c8dd048a
 /*
  * HEVC Supplementary Enhancement Information messages
  *
  * Copyright (C) 2012 - 2013 Guillaume Martres
  * Copyright (C) 2012 - 2013 Gildas Cocherel
  * Copyright (C) 2013 Vittorio Giovara
  *
  * 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 "golomb.h"
679a6377
 #include "hevc.h"
c8dd048a
 
c673fc91
 static void decode_nal_sei_decoded_picture_hash(HEVCContext *s)
c8dd048a
 {
     int cIdx, i;
     uint8_t hash_type;
     //uint16_t picture_crc;
     //uint32_t picture_checksum;
0c8aba38
     GetBitContext *gb = &s->HEVClc->gb;
c8dd048a
     hash_type = get_bits(gb, 8);
 
f578e5d9
     for (cIdx = 0; cIdx < 3/*((s->sps->chroma_format_idc == 0) ? 1 : 3)*/; cIdx++) {
         if (hash_type == 0) {
c8dd048a
             s->is_md5 = 1;
1a6948fa
             for (i = 0; i < 16; i++)
c8dd048a
                 s->md5[cIdx][i] = get_bits(gb, 8);
1a6948fa
         } else if (hash_type == 1) {
c8dd048a
             // picture_crc = get_bits(gb, 16);
             skip_bits(gb, 16);
f578e5d9
         } else if (hash_type == 2) {
5183fac9
             // picture_checksum = get_bits_long(gb, 32);
c8dd048a
             skip_bits(gb, 32);
         }
     }
 }
 
7c8b65f6
 static void decode_nal_sei_frame_packing_arrangement(HEVCContext *s)
c8dd048a
 {
7c8b65f6
     GetBitContext *gb = &s->HEVClc->gb;
c8dd048a
 
b23692b3
     get_ue_golomb(gb);                  // frame_packing_arrangement_id
3a149e23
     s->sei_frame_packing_present = !get_bits1(gb);
 
     if (s->sei_frame_packing_present) {
         s->frame_packing_arrangement_type = get_bits(gb, 7);
         s->quincunx_subsampling           = get_bits1(gb);
         s->content_interpretation_type    = get_bits(gb, 6);
c8dd048a
 
         // the following skips spatial_flipping_flag frame0_flipped_flag
         // field_views_flag current_frame_is_frame0_flag
         // frame0_self_contained_flag frame1_self_contained_flag
         skip_bits(gb, 6);
 
3a149e23
         if (!s->quincunx_subsampling && s->frame_packing_arrangement_type != 5)
b23692b3
             skip_bits(gb, 16);  // frame[01]_grid_position_[xy]
         skip_bits(gb, 8);       // frame_packing_arrangement_reserved_byte
         skip_bits1(gb);         // frame_packing_arrangement_persistance_flag
c8dd048a
     }
b23692b3
     skip_bits1(gb);             // upsampled_aspect_ratio_flag
c8dd048a
 }
 
0569a7e0
 static void decode_nal_sei_display_orientation(HEVCContext *s)
 {
efc66d69
     GetBitContext *gb = &s->HEVClc->gb;
0569a7e0
 
     s->sei_display_orientation_present = !get_bits1(gb);
 
     if (s->sei_display_orientation_present) {
         s->sei_hflip = get_bits1(gb);     // hor_flip
         s->sei_vflip = get_bits1(gb);     // ver_flip
 
         s->sei_anticlockwise_rotation = get_bits(gb, 16);
         skip_bits1(gb);     // display_orientation_persistence_flag
     }
 }
 
7c8b65f6
 static int decode_pic_timing(HEVCContext *s)
 {
     GetBitContext *gb = &s->HEVClc->gb;
8a701ef7
     HEVCSPS *sps;
7c8b65f6
 
8a701ef7
     if (!s->sps_list[s->active_seq_parameter_set_id])
7c8b65f6
         return(AVERROR(ENOMEM));
8a701ef7
     sps = (HEVCSPS*)s->sps_list[s->active_seq_parameter_set_id]->data;
7c8b65f6
 
     if (sps->vui.frame_field_info_present_flag) {
         int pic_struct = get_bits(gb, 4);
         s->picture_struct = AV_PICTURE_STRUCTURE_UNKNOWN;
         if (pic_struct == 2) {
             av_log(s->avctx, AV_LOG_DEBUG, "BOTTOM Field\n");
             s->picture_struct = AV_PICTURE_STRUCTURE_BOTTOM_FIELD;
         } else if (pic_struct == 1) {
             av_log(s->avctx, AV_LOG_DEBUG, "TOP Field\n");
             s->picture_struct = AV_PICTURE_STRUCTURE_TOP_FIELD;
         }
         get_bits(gb, 2);                   // source_scan_type
         get_bits(gb, 1);                   // duplicate_flag
     }
     return 1;
 }
 
63a37d0e
 static int active_parameter_sets(HEVCContext *s)
f578e5d9
 {
7c8b65f6
     GetBitContext *gb = &s->HEVClc->gb;
     int num_sps_ids_minus1;
     int i;
63a37d0e
     unsigned active_seq_parameter_set_id;
7c8b65f6
 
     get_bits(gb, 4); // active_video_parameter_set_id
     get_bits(gb, 1); // self_contained_cvs_flag
     get_bits(gb, 1); // num_sps_ids_minus1
     num_sps_ids_minus1 = get_ue_golomb_long(gb); // num_sps_ids_minus1
 
63a37d0e
     active_seq_parameter_set_id = get_ue_golomb_long(gb);
     if (active_seq_parameter_set_id >= MAX_SPS_COUNT) {
         av_log(s->avctx, AV_LOG_ERROR, "active_parameter_set_id %d invalid\n", active_seq_parameter_set_id);
         return AVERROR_INVALIDDATA;
     }
     s->active_seq_parameter_set_id = active_seq_parameter_set_id;
7c8b65f6
 
     for (i = 1; i <= num_sps_ids_minus1; i++)
         get_ue_golomb_long(gb); // active_seq_parameter_set_id[i]
63a37d0e
 
     return 0;
7c8b65f6
 }
 
c8dd048a
 static int decode_nal_sei_message(HEVCContext *s)
 {
0c8aba38
     GetBitContext *gb = &s->HEVClc->gb;
c8dd048a
 
     int payload_type = 0;
     int payload_size = 0;
     int byte = 0xFF;
     av_log(s->avctx, AV_LOG_DEBUG, "Decoding SEI\n");
 
     while (byte == 0xFF) {
b23692b3
         byte          = get_bits(gb, 8);
c8dd048a
         payload_type += byte;
     }
     byte = 0xFF;
     while (byte == 0xFF) {
b23692b3
         byte          = get_bits(gb, 8);
c8dd048a
         payload_size += byte;
     }
     if (s->nal_unit_type == NAL_SEI_PREFIX) {
7c8b65f6
         if (payload_type == 256 /*&& s->decode_checksum_sei*/) {
c673fc91
             decode_nal_sei_decoded_picture_hash(s);
7c8b65f6
         } else if (payload_type == 45) {
             decode_nal_sei_frame_packing_arrangement(s);
efc66d69
         } else if (payload_type == 47) {
0569a7e0
             decode_nal_sei_display_orientation(s);
7c8b65f6
         } else if (payload_type == 1){
             int ret = decode_pic_timing(s);
c8dd048a
             av_log(s->avctx, AV_LOG_DEBUG, "Skipped PREFIX SEI %d\n", payload_type);
b23692b3
             skip_bits(gb, 8 * payload_size);
7c8b65f6
             return ret;
         } else if (payload_type == 129){
             active_parameter_sets(s);
             av_log(s->avctx, AV_LOG_DEBUG, "Skipped PREFIX SEI %d\n", payload_type);
         } else {
             av_log(s->avctx, AV_LOG_DEBUG, "Skipped PREFIX SEI %d\n", payload_type);
             skip_bits(gb, 8*payload_size);
c8dd048a
         }
     } else { /* nal_unit_type == NAL_SEI_SUFFIX */
         if (payload_type == 132 /* && s->decode_checksum_sei */)
c673fc91
             decode_nal_sei_decoded_picture_hash(s);
c8dd048a
         else {
             av_log(s->avctx, AV_LOG_DEBUG, "Skipped SUFFIX SEI %d\n", payload_type);
b23692b3
             skip_bits(gb, 8 * payload_size);
c8dd048a
         }
     }
92c29914
     return 1;
c8dd048a
 }
 
 static int more_rbsp_data(GetBitContext *gb)
 {
     return get_bits_left(gb) > 0 && show_bits(gb, 8) != 0x80;
 }
 
 int ff_hevc_decode_nal_sei(HEVCContext *s)
 {
7c8b65f6
     int ret;
 
c8dd048a
     do {
7c8b65f6
         ret = decode_nal_sei_message(s);
         if (ret < 0)
             return(AVERROR(ENOMEM));
0c8aba38
     } while (more_rbsp_data(&s->HEVClc->gb));
7c8b65f6
     return 1;
c8dd048a
 }