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"
a687fb99
 #include "hevc_ps.h"
 #include "hevc_sei.h"
2cd841c0
 
c4b08c8a
 static int decode_nal_sei_decoded_picture_hash(HEVCSEIPictureHash *s, GetBitContext *gb)
c8dd048a
 {
     int cIdx, i;
     uint8_t hash_type;
     //uint16_t picture_crc;
     //uint32_t picture_checksum;
     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);
         }
     }
043f46f5
     return 0;
c8dd048a
 }
 
c4b08c8a
 static int decode_nal_sei_mastering_display_info(HEVCSEIMasteringDisplay *s, GetBitContext *gb)
3b0974d3
 {
     int i;
     // Mastering primaries
     for (i = 0; i < 3; i++) {
         s->display_primaries[i][0] = get_bits(gb, 16);
         s->display_primaries[i][1] = get_bits(gb, 16);
     }
     // White point (x, y)
     s->white_point[0] = get_bits(gb, 16);
     s->white_point[1] = get_bits(gb, 16);
 
     // Max and min luminance of mastering display
c4b08c8a
     s->max_luminance = get_bits_long(gb, 32);
     s->min_luminance = get_bits_long(gb, 32);
3b0974d3
 
     // As this SEI message comes before the first frame that references it,
     // initialize the flag to 2 and decrement on IRAP access unit so it
     // persists for the coded video sequence (e.g., between two IRAPs)
c4b08c8a
     s->present = 2;
3b0974d3
     return 0;
 }
 
c4b08c8a
 static int decode_nal_sei_content_light_info(HEVCSEIContentLight *s, GetBitContext *gb)
157e57a1
 {
     // Max and average light levels
     s->max_content_light_level     = get_bits_long(gb, 16);
     s->max_pic_average_light_level = get_bits_long(gb, 16);
     // As this SEI message comes before the first frame that references it,
     // initialize the flag to 2 and decrement on IRAP access unit so it
     // persists for the coded video sequence (e.g., between two IRAPs)
c4b08c8a
     s->present = 2;
157e57a1
     return  0;
 }
 
c4b08c8a
 static int decode_nal_sei_frame_packing_arrangement(HEVCSEIFramePacking *s, GetBitContext *gb)
c8dd048a
 {
c51c08e0
     get_ue_golomb_long(gb);             // frame_packing_arrangement_id
c4b08c8a
     s->present = !get_bits1(gb);
3a149e23
 
c4b08c8a
     if (s->present) {
         s->arrangement_type               = get_bits(gb, 7);
3a149e23
         s->quincunx_subsampling           = get_bits1(gb);
         s->content_interpretation_type    = get_bits(gb, 6);
c8dd048a
 
99e9697e
         // spatial_flipping_flag, frame0_flipped_flag, field_views_flag
         skip_bits(gb, 3);
         s->current_frame_is_frame0_flag = get_bits1(gb);
         // frame0_self_contained_flag, frame1_self_contained_flag
         skip_bits(gb, 2);
c8dd048a
 
c4b08c8a
         if (!s->quincunx_subsampling && s->arrangement_type != 5)
b23692b3
             skip_bits(gb, 16);  // frame[01]_grid_position_[xy]
         skip_bits(gb, 8);       // frame_packing_arrangement_reserved_byte
41ed7ab4
         skip_bits1(gb);         // frame_packing_arrangement_persistence_flag
c8dd048a
     }
b23692b3
     skip_bits1(gb);             // upsampled_aspect_ratio_flag
043f46f5
     return 0;
c8dd048a
 }
 
c4b08c8a
 static int decode_nal_sei_display_orientation(HEVCSEIDisplayOrientation *s, GetBitContext *gb)
0569a7e0
 {
c4b08c8a
     s->present = !get_bits1(gb);
0569a7e0
 
c4b08c8a
     if (s->present) {
         s->hflip = get_bits1(gb);     // hor_flip
         s->vflip = get_bits1(gb);     // ver_flip
0569a7e0
 
c4b08c8a
         s->anticlockwise_rotation = get_bits(gb, 16);
0569a7e0
         skip_bits1(gb);     // display_orientation_persistence_flag
     }
043f46f5
 
     return 0;
0569a7e0
 }
 
bd8f1fa1
 static int decode_nal_sei_pic_timing(HEVCSEI *s, GetBitContext *gb, const HEVCParamSets *ps,
f7381408
                                      void *logctx, int size)
7c8b65f6
 {
c4b08c8a
     HEVCSEIPictureTiming *h = &s->picture_timing;
8a701ef7
     HEVCSPS *sps;
7c8b65f6
 
c4b08c8a
     if (!ps->sps_list[s->active_seq_parameter_set_id])
7c8b65f6
         return(AVERROR(ENOMEM));
c4b08c8a
     sps = (HEVCSPS*)ps->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);
c4b08c8a
         h->picture_struct = AV_PICTURE_STRUCTURE_UNKNOWN;
876dada0
         if (pic_struct == 2 || pic_struct == 10 || pic_struct == 12) {
c4b08c8a
             av_log(logctx, AV_LOG_DEBUG, "BOTTOM Field\n");
             h->picture_struct = AV_PICTURE_STRUCTURE_BOTTOM_FIELD;
876dada0
         } else if (pic_struct == 1 || pic_struct == 9 || pic_struct == 11) {
c4b08c8a
             av_log(logctx, AV_LOG_DEBUG, "TOP Field\n");
             h->picture_struct = AV_PICTURE_STRUCTURE_TOP_FIELD;
7c8b65f6
         }
         get_bits(gb, 2);                   // source_scan_type
         get_bits(gb, 1);                   // duplicate_flag
f7381408
         skip_bits1(gb);
         size--;
7c8b65f6
     }
f7381408
     skip_bits_long(gb, 8 * size);
 
     return 0;
7c8b65f6
 }
 
c4b08c8a
 static int decode_registered_user_data_closed_caption(HEVCSEIA53Caption *s, GetBitContext *gb,
                                                       int size)
7f7fa90f
 {
     int flag;
     int user_data_type_code;
     int cc_count;
 
     if (size < 3)
        return AVERROR(EINVAL);
 
     user_data_type_code = get_bits(gb, 8);
     if (user_data_type_code == 0x3) {
         skip_bits(gb, 1); // reserved
 
         flag = get_bits(gb, 1); // process_cc_data_flag
         if (flag) {
             skip_bits(gb, 1);
             cc_count = get_bits(gb, 5);
             skip_bits(gb, 8); // reserved
             size -= 2;
 
             if (cc_count && size >= cc_count * 3) {
b1a32429
                 const uint64_t new_size = (s->a53_caption_size + cc_count
                                            * UINT64_C(3));
                 int i, ret;
 
                 if (new_size > INT_MAX)
                     return AVERROR(EINVAL);
 
                 /* Allow merging of the cc data from two fields. */
                 ret = av_reallocp(&s->a53_caption, new_size);
                 if (ret < 0)
                     return ret;
 
                 for (i = 0; i < cc_count; i++) {
                     s->a53_caption[s->a53_caption_size++] = get_bits(gb, 8);
                     s->a53_caption[s->a53_caption_size++] = get_bits(gb, 8);
                     s->a53_caption[s->a53_caption_size++] = get_bits(gb, 8);
7f7fa90f
                 }
                 skip_bits(gb, 8); // marker_bits
             }
         }
     } else {
b1a32429
         int i;
7f7fa90f
         for (i = 0; i < size - 1; i++)
             skip_bits(gb, 8);
     }
 
     return 0;
 }
 
bd8f1fa1
 static int decode_nal_sei_user_data_registered_itu_t_t35(HEVCSEI *s, GetBitContext *gb,
c4b08c8a
                                                          int size)
7f7fa90f
 {
     uint32_t country_code;
     uint32_t user_identifier;
 
     if (size < 7)
         return AVERROR(EINVAL);
     size -= 7;
 
     country_code = get_bits(gb, 8);
     if (country_code == 0xFF) {
         skip_bits(gb, 8);
         size--;
     }
 
     skip_bits(gb, 8);
     skip_bits(gb, 8);
 
     user_identifier = get_bits_long(gb, 32);
 
     switch (user_identifier) {
         case MKBETAG('G', 'A', '9', '4'):
c4b08c8a
             return decode_registered_user_data_closed_caption(&s->a53_caption, gb, size);
7f7fa90f
         default:
             skip_bits_long(gb, size * 8);
             break;
     }
     return 0;
 }
 
bd8f1fa1
 static int decode_nal_sei_active_parameter_sets(HEVCSEI *s, GetBitContext *gb, void *logctx)
f578e5d9
 {
7c8b65f6
     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
 
93b0ee21
     if (num_sps_ids_minus1 < 0 || num_sps_ids_minus1 > 15) {
c4b08c8a
         av_log(logctx, AV_LOG_ERROR, "num_sps_ids_minus1 %d invalid\n", num_sps_ids_minus1);
93b0ee21
         return AVERROR_INVALIDDATA;
     }
 
63a37d0e
     active_seq_parameter_set_id = get_ue_golomb_long(gb);
6397815b
     if (active_seq_parameter_set_id >= HEVC_MAX_SPS_COUNT) {
c4b08c8a
         av_log(logctx, AV_LOG_ERROR, "active_parameter_set_id %d invalid\n", active_seq_parameter_set_id);
63a37d0e
         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
 }
 
3426832a
 static int decode_nal_sei_alternative_transfer(HEVCSEIAlternativeTransfer *s, GetBitContext *gb)
 {
     s->present = 1;
     s->preferred_transfer_characteristics = get_bits(gb, 8);
     return 0;
 }
 
9e2b0f32
 static int decode_nal_sei_prefix(GetBitContext *gb, void *logctx, HEVCSEI *s,
                                  const HEVCParamSets *ps, int type, int size)
979cb551
 {
     switch (type) {
     case 256:  // Mismatched value from HM 8.1
c4b08c8a
         return decode_nal_sei_decoded_picture_hash(&s->picture_hash, gb);
a687fb99
     case HEVC_SEI_TYPE_FRAME_PACKING:
c4b08c8a
         return decode_nal_sei_frame_packing_arrangement(&s->frame_packing, gb);
a687fb99
     case HEVC_SEI_TYPE_DISPLAY_ORIENTATION:
c4b08c8a
         return decode_nal_sei_display_orientation(&s->display_orientation, gb);
a687fb99
     case HEVC_SEI_TYPE_PICTURE_TIMING:
f7381408
         return decode_nal_sei_pic_timing(s, gb, ps, logctx, size);
a687fb99
     case HEVC_SEI_TYPE_MASTERING_DISPLAY_INFO:
c4b08c8a
         return decode_nal_sei_mastering_display_info(&s->mastering_display, gb);
a687fb99
     case HEVC_SEI_TYPE_CONTENT_LIGHT_LEVEL_INFO:
c4b08c8a
         return decode_nal_sei_content_light_info(&s->content_light, gb);
a687fb99
     case HEVC_SEI_TYPE_ACTIVE_PARAMETER_SETS:
6655939f
         return decode_nal_sei_active_parameter_sets(s, gb, logctx);
a687fb99
     case HEVC_SEI_TYPE_USER_DATA_REGISTERED_ITU_T_T35:
c4b08c8a
         return decode_nal_sei_user_data_registered_itu_t_t35(s, gb, size);
3426832a
     case HEVC_SEI_TYPE_ALTERNATIVE_TRANSFER_CHARACTERISTICS:
         return decode_nal_sei_alternative_transfer(&s->alternative_transfer, gb);
979cb551
     default:
c4b08c8a
         av_log(logctx, AV_LOG_DEBUG, "Skipped PREFIX SEI %d\n", type);
979cb551
         skip_bits_long(gb, 8 * size);
         return 0;
     }
 }
 
9e2b0f32
 static int decode_nal_sei_suffix(GetBitContext *gb, void *logctx, HEVCSEI *s,
                                  int type, int size)
979cb551
 {
     switch (type) {
a687fb99
     case HEVC_SEI_TYPE_DECODED_PICTURE_HASH:
c4b08c8a
         return decode_nal_sei_decoded_picture_hash(&s->picture_hash, gb);
979cb551
     default:
c4b08c8a
         av_log(logctx, AV_LOG_DEBUG, "Skipped SUFFIX SEI %d\n", type);
979cb551
         skip_bits_long(gb, 8 * size);
         return 0;
     }
 }
 
9e2b0f32
 static int decode_nal_sei_message(GetBitContext *gb, void *logctx, HEVCSEI *s,
                                   const HEVCParamSets *ps, int nal_unit_type)
c8dd048a
 {
     int payload_type = 0;
     int payload_size = 0;
     int byte = 0xFF;
c4b08c8a
     av_log(logctx, AV_LOG_DEBUG, "Decoding SEI\n");
c8dd048a
 
     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;
     }
c4b08c8a
     if (nal_unit_type == HEVC_NAL_SEI_PREFIX) {
9e2b0f32
         return decode_nal_sei_prefix(gb, logctx, s, ps, payload_type, payload_size);
c8dd048a
     } else { /* nal_unit_type == NAL_SEI_SUFFIX */
9e2b0f32
         return decode_nal_sei_suffix(gb, logctx, s, payload_type, payload_size);
c8dd048a
     }
 }
 
 static int more_rbsp_data(GetBitContext *gb)
 {
     return get_bits_left(gb) > 0 && show_bits(gb, 8) != 0x80;
 }
 
bd8f1fa1
 int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s,
c4b08c8a
                            const HEVCParamSets *ps, int type)
c8dd048a
 {
7c8b65f6
     int ret;
 
c8dd048a
     do {
9e2b0f32
         ret = decode_nal_sei_message(gb, logctx, s, ps, type);
7c8b65f6
         if (ret < 0)
fb0f29f9
             return ret;
c4b08c8a
     } while (more_rbsp_data(gb));
7c8b65f6
     return 1;
c8dd048a
 }
964f07f6
 
bd8f1fa1
 void ff_hevc_reset_sei(HEVCSEI *s)
964f07f6
 {
c4b08c8a
     s->a53_caption.a53_caption_size = 0;
     av_freep(&s->a53_caption.a53_caption);
964f07f6
 }