123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779 |
- /*!
- ************************************************************************
- * \file
- * parset.c
- * \brief
- * Parameter Sets
- * \author
- * Main contributors (see contributors.h for copyright, address and affiliation details)
- * - Stephan Wenger <[email protected]>
- *
- ***********************************************************************
- */
- #include "global.h"
- #include "image.h"
- #include "parsetcommon.h"
- #include "parset.h"
- #include "nalu.h"
- #include "memalloc.h"
- #include "fmo.h"
- #include "cabac.h"
- #include "vlc.h"
- #include "mbuffer.h"
- #include "erc_api.h"
- #if TRACE
- #define SYMTRACESTRING(s) strncpy(sym->tracestring,s,TRACESTRING_SIZE)
- #else
- #define SYMTRACESTRING(s) // do nothing
- #endif
- extern void init_frext(VideoParameters *p_Vid);
- // syntax for scaling list matrix values
- void Scaling_List(int *scalingList, int sizeOfScalingList, Boolean *UseDefaultScalingMatrix, Bitstream *s)
- {
- int j, scanj;
- int delta_scale, lastScale, nextScale;
- lastScale = 8;
- nextScale = 8;
- for(j=0; j<sizeOfScalingList; j++)
- {
- scanj = (sizeOfScalingList==16) ? ZZ_SCAN[j]:ZZ_SCAN8[j];
- if(nextScale!=0)
- {
- delta_scale = se_v ( " : delta_sl " , s);
- nextScale = (lastScale + delta_scale + 256) % 256;
- *UseDefaultScalingMatrix = (Boolean) (scanj==0 && nextScale==0);
- }
- scalingList[scanj] = (nextScale==0) ? lastScale:nextScale;
- lastScale = scalingList[scanj];
- }
- }
- // fill sps with content of p
- static void InterpretSPS (VideoParameters *p_Vid, DataPartition *p, seq_parameter_set_rbsp_t *sps)
- {
- unsigned i;
- unsigned n_ScalingList;
- int reserved_zero;
- Bitstream *s = p->bitstream;
- assert (p != NULL);
- assert (p->bitstream != NULL);
- assert (p->bitstream->streamBuffer != 0);
- assert (sps != NULL);
- sps->profile_idc = u_v (8, "SPS: profile_idc" , s);
- if ((sps->profile_idc!=BASELINE ) &&
- (sps->profile_idc!=MAIN ) &&
- (sps->profile_idc!=EXTENDED ) &&
- (sps->profile_idc!=FREXT_HP ) &&
- (sps->profile_idc!=FREXT_Hi10P ) &&
- (sps->profile_idc!=FREXT_Hi422 ) &&
- (sps->profile_idc!=FREXT_Hi444 ) &&
- (sps->profile_idc!=FREXT_CAVLC444 ))
- {
- printf("Invalid Profile IDC (%d) encountered. \n", sps->profile_idc);
- return;
- }
- sps->constrained_set0_flag = u_1 ( "SPS: constrained_set0_flag" , s);
- sps->constrained_set1_flag = u_1 ( "SPS: constrained_set1_flag" , s);
- sps->constrained_set2_flag = u_1 ( "SPS: constrained_set2_flag" , s);
- sps->constrained_set3_flag = u_1 ( "SPS: constrained_set3_flag" , s);
- reserved_zero = u_v (4, "SPS: reserved_zero_4bits" , s);
- assert (reserved_zero==0);
- sps->level_idc = u_v (8, "SPS: level_idc" , s);
- sps->seq_parameter_set_id = ue_v ("SPS: seq_parameter_set_id" , s);
- // Fidelity Range Extensions stuff
- sps->chroma_format_idc = 1;
- sps->bit_depth_luma_minus8 = 0;
- sps->bit_depth_chroma_minus8 = 0;
- p_Vid->lossless_qpprime_flag = 0;
- sps->separate_colour_plane_flag = 0;
- if((IS_FREXT_PROFILE(sps->profile_idc)))/*==FREXT_HP ) ||
- (sps->profile_idc==FREXT_Hi10P) ||
- (sps->profile_idc==FREXT_Hi422) ||
- (sps->profile_idc==FREXT_Hi444) ||
- (sps->profile_idc==FREXT_CAVLC444))*/
- {
- sps->chroma_format_idc = ue_v ("SPS: chroma_format_idc" , s);
- if(sps->chroma_format_idc == YUV444)
- {
- sps->separate_colour_plane_flag = u_1 ("SPS: separate_colour_plane_flag" , s);
- }
- sps->bit_depth_luma_minus8 = ue_v ("SPS: bit_depth_luma_minus8" , s);
- sps->bit_depth_chroma_minus8 = ue_v ("SPS: bit_depth_chroma_minus8" , s);
- p_Vid->lossless_qpprime_flag = u_1 ("SPS: lossless_qpprime_y_zero_flag" , s);
- sps->seq_scaling_matrix_present_flag = u_1 ( "SPS: seq_scaling_matrix_present_flag" , s);
- if(sps->seq_scaling_matrix_present_flag)
- {
- n_ScalingList = (sps->chroma_format_idc != YUV444) ? 8 : 12;
- for(i=0; i<n_ScalingList; i++)
- {
- sps->seq_scaling_list_present_flag[i] = u_1 ( "SPS: seq_scaling_list_present_flag" , s);
- if(sps->seq_scaling_list_present_flag[i])
- {
- if(i<6)
- Scaling_List(sps->ScalingList4x4[i], 16, &sps->UseDefaultScalingMatrix4x4Flag[i], s);
- else
- Scaling_List(sps->ScalingList8x8[i-6], 64, &sps->UseDefaultScalingMatrix8x8Flag[i-6], s);
- }
- }
- }
- }
- sps->log2_max_frame_num_minus4 = ue_v ("SPS: log2_max_frame_num_minus4" , s);
- sps->pic_order_cnt_type = ue_v ("SPS: pic_order_cnt_type" , s);
- if (sps->pic_order_cnt_type == 0)
- sps->log2_max_pic_order_cnt_lsb_minus4 = ue_v ("SPS: log2_max_pic_order_cnt_lsb_minus4" , s);
- else if (sps->pic_order_cnt_type == 1)
- {
- sps->delta_pic_order_always_zero_flag = u_1 ("SPS: delta_pic_order_always_zero_flag" , s);
- sps->offset_for_non_ref_pic = se_v ("SPS: offset_for_non_ref_pic" , s);
- sps->offset_for_top_to_bottom_field = se_v ("SPS: offset_for_top_to_bottom_field" , s);
- sps->num_ref_frames_in_pic_order_cnt_cycle = ue_v ("SPS: num_ref_frames_in_pic_order_cnt_cycle" , s);
- for(i=0; i<sps->num_ref_frames_in_pic_order_cnt_cycle; i++)
- sps->offset_for_ref_frame[i] = se_v ("SPS: offset_for_ref_frame[i]" , s);
- }
- sps->num_ref_frames = ue_v ("SPS: num_ref_frames" , s);
- sps->gaps_in_frame_num_value_allowed_flag = u_1 ("SPS: gaps_in_frame_num_value_allowed_flag" , s);
- sps->pic_width_in_mbs_minus1 = ue_v ("SPS: pic_width_in_mbs_minus1" , s);
- sps->pic_height_in_map_units_minus1 = ue_v ("SPS: pic_height_in_map_units_minus1" , s);
- sps->frame_mbs_only_flag = u_1 ("SPS: frame_mbs_only_flag" , s);
- if (!sps->frame_mbs_only_flag)
- {
- sps->mb_adaptive_frame_field_flag = u_1 ("SPS: mb_adaptive_frame_field_flag" , s);
- }
- sps->direct_8x8_inference_flag = u_1 ("SPS: direct_8x8_inference_flag" , s);
- sps->frame_cropping_flag = u_1 ("SPS: frame_cropping_flag" , s);
- if (sps->frame_cropping_flag)
- {
- sps->frame_cropping_rect_left_offset = ue_v ("SPS: frame_cropping_rect_left_offset" , s);
- sps->frame_cropping_rect_right_offset = ue_v ("SPS: frame_cropping_rect_right_offset" , s);
- sps->frame_cropping_rect_top_offset = ue_v ("SPS: frame_cropping_rect_top_offset" , s);
- sps->frame_cropping_rect_bottom_offset = ue_v ("SPS: frame_cropping_rect_bottom_offset" , s);
- }
- sps->vui_parameters_present_flag = (Boolean) u_1 ("SPS: vui_parameters_present_flag" , s);
- InitVUI(sps);
- ReadVUI(p, sps);
- sps->Valid = TRUE;
- }
- void InitVUI(seq_parameter_set_rbsp_t *sps)
- {
- sps->vui_seq_parameters.matrix_coefficients = 2;
- }
- int ReadVUI(DataPartition *p, seq_parameter_set_rbsp_t *sps)
- {
- Bitstream *s = p->bitstream;
- if (sps->vui_parameters_present_flag)
- {
- sps->vui_seq_parameters.aspect_ratio_info_present_flag = u_1 ("VUI: aspect_ratio_info_present_flag" , s);
- if (sps->vui_seq_parameters.aspect_ratio_info_present_flag)
- {
- sps->vui_seq_parameters.aspect_ratio_idc = u_v ( 8, "VUI: aspect_ratio_idc" , s);
- if (255==sps->vui_seq_parameters.aspect_ratio_idc)
- {
- sps->vui_seq_parameters.sar_width = (unsigned short) u_v (16, "VUI: sar_width" , s);
- sps->vui_seq_parameters.sar_height = (unsigned short) u_v (16, "VUI: sar_height" , s);
- }
- }
- sps->vui_seq_parameters.overscan_info_present_flag = u_1 ("VUI: overscan_info_present_flag" , s);
- if (sps->vui_seq_parameters.overscan_info_present_flag)
- {
- sps->vui_seq_parameters.overscan_appropriate_flag = u_1 ("VUI: overscan_appropriate_flag" , s);
- }
- sps->vui_seq_parameters.video_signal_type_present_flag = u_1 ("VUI: video_signal_type_present_flag" , s);
- if (sps->vui_seq_parameters.video_signal_type_present_flag)
- {
- sps->vui_seq_parameters.video_format = u_v ( 3,"VUI: video_format" , s);
- sps->vui_seq_parameters.video_full_range_flag = u_1 ( "VUI: video_full_range_flag" , s);
- sps->vui_seq_parameters.colour_description_present_flag = u_1 ( "VUI: color_description_present_flag" , s);
- if(sps->vui_seq_parameters.colour_description_present_flag)
- {
- sps->vui_seq_parameters.colour_primaries = u_v ( 8,"VUI: colour_primaries" , s);
- sps->vui_seq_parameters.transfer_characteristics = u_v ( 8,"VUI: transfer_characteristics" , s);
- sps->vui_seq_parameters.matrix_coefficients = u_v ( 8,"VUI: matrix_coefficients" , s);
- }
- }
- sps->vui_seq_parameters.chroma_location_info_present_flag = u_1 ( "VUI: chroma_loc_info_present_flag" , s);
- if(sps->vui_seq_parameters.chroma_location_info_present_flag)
- {
- sps->vui_seq_parameters.chroma_sample_loc_type_top_field = ue_v ( "VUI: chroma_sample_loc_type_top_field" , s);
- sps->vui_seq_parameters.chroma_sample_loc_type_bottom_field = ue_v ( "VUI: chroma_sample_loc_type_bottom_field" , s);
- }
- sps->vui_seq_parameters.timing_info_present_flag = u_1 ("VUI: timing_info_present_flag" , s);
- if (sps->vui_seq_parameters.timing_info_present_flag)
- {
- sps->vui_seq_parameters.num_units_in_tick = u_v (32,"VUI: num_units_in_tick" , s);
- sps->vui_seq_parameters.time_scale = u_v (32,"VUI: time_scale" , s);
- sps->vui_seq_parameters.fixed_frame_rate_flag = u_1 ( "VUI: fixed_frame_rate_flag" , s);
- }
- sps->vui_seq_parameters.nal_hrd_parameters_present_flag = u_1 ("VUI: nal_hrd_parameters_present_flag" , s);
- if (sps->vui_seq_parameters.nal_hrd_parameters_present_flag)
- {
- ReadHRDParameters(p, &(sps->vui_seq_parameters.nal_hrd_parameters));
- }
- sps->vui_seq_parameters.vcl_hrd_parameters_present_flag = u_1 ("VUI: vcl_hrd_parameters_present_flag" , s);
- if (sps->vui_seq_parameters.vcl_hrd_parameters_present_flag)
- {
- ReadHRDParameters(p, &(sps->vui_seq_parameters.vcl_hrd_parameters));
- }
- if (sps->vui_seq_parameters.nal_hrd_parameters_present_flag || sps->vui_seq_parameters.vcl_hrd_parameters_present_flag)
- {
- sps->vui_seq_parameters.low_delay_hrd_flag = u_1 ("VUI: low_delay_hrd_flag" , s);
- }
- sps->vui_seq_parameters.pic_struct_present_flag = u_1 ("VUI: pic_struct_present_flag " , s);
- sps->vui_seq_parameters.bitstream_restriction_flag = u_1 ("VUI: bitstream_restriction_flag" , s);
- if (sps->vui_seq_parameters.bitstream_restriction_flag)
- {
- sps->vui_seq_parameters.motion_vectors_over_pic_boundaries_flag = u_1 ("VUI: motion_vectors_over_pic_boundaries_flag", s);
- sps->vui_seq_parameters.max_bytes_per_pic_denom = ue_v ("VUI: max_bytes_per_pic_denom" , s);
- sps->vui_seq_parameters.max_bits_per_mb_denom = ue_v ("VUI: max_bits_per_mb_denom" , s);
- sps->vui_seq_parameters.log2_max_mv_length_horizontal = ue_v ("VUI: log2_max_mv_length_horizontal" , s);
- sps->vui_seq_parameters.log2_max_mv_length_vertical = ue_v ("VUI: log2_max_mv_length_vertical" , s);
- sps->vui_seq_parameters.num_reorder_frames = ue_v ("VUI: num_reorder_frames" , s);
- sps->vui_seq_parameters.max_dec_frame_buffering = ue_v ("VUI: max_dec_frame_buffering" , s);
- }
- }
- return 0;
- }
- int ReadHRDParameters(DataPartition *p, hrd_parameters_t *hrd)
- {
- Bitstream *s = p->bitstream;
- unsigned int SchedSelIdx;
- hrd->cpb_cnt_minus1 = ue_v ( "VUI: cpb_cnt_minus1" , s);
- hrd->bit_rate_scale = u_v ( 4,"VUI: bit_rate_scale" , s);
- hrd->cpb_size_scale = u_v ( 4,"VUI: cpb_size_scale" , s);
- for( SchedSelIdx = 0; SchedSelIdx <= hrd->cpb_cnt_minus1; SchedSelIdx++ )
- {
- hrd->bit_rate_value_minus1[ SchedSelIdx ] = ue_v ( "VUI: bit_rate_value_minus1" , s);
- hrd->cpb_size_value_minus1[ SchedSelIdx ] = ue_v ( "VUI: cpb_size_value_minus1" , s);
- hrd->cbr_flag[ SchedSelIdx ] = u_1 ( "VUI: cbr_flag" , s);
- }
- hrd->initial_cpb_removal_delay_length_minus1 = u_v ( 5,"VUI: initial_cpb_removal_delay_length_minus1" , s);
- hrd->cpb_removal_delay_length_minus1 = u_v ( 5,"VUI: cpb_removal_delay_length_minus1" , s);
- hrd->dpb_output_delay_length_minus1 = u_v ( 5,"VUI: dpb_output_delay_length_minus1" , s);
- hrd->time_offset_length = u_v ( 5,"VUI: time_offset_length" , s);
- return 0;
- }
- static void InterpretPPS (VideoParameters *p_Vid, DataPartition *p, pic_parameter_set_rbsp_t *pps)
- {
- unsigned i;
- unsigned n_ScalingList;
- int chroma_format_idc;
- int NumberBitsPerSliceGroupId;
- Bitstream *s = p->bitstream;
- assert (p != NULL);
- assert (p->bitstream != NULL);
- assert (p->bitstream->streamBuffer != 0);
- assert (pps != NULL);
- pps->pic_parameter_set_id = ue_v ("PPS: pic_parameter_set_id" , s);
- pps->seq_parameter_set_id = ue_v ("PPS: seq_parameter_set_id" , s);
- pps->entropy_coding_mode_flag = u_1 ("PPS: entropy_coding_mode_flag" , s);
- //! Note: as per JVT-F078 the following bit is unconditional. If F078 is not accepted, then
- //! one has to fetch the correct SPS to check whether the bit is present (hopefully there is
- //! no consistency problem :-(
- //! The current encoder code handles this in the same way. When you change this, don't forget
- //! the encoder! StW, 12/8/02
- pps->bottom_field_pic_order_in_frame_present_flag = u_1 ("PPS: bottom_field_pic_order_in_frame_present_flag" , s);
- pps->num_slice_groups_minus1 = ue_v ("PPS: num_slice_groups_minus1" , s);
- // FMO stuff begins here
- if (pps->num_slice_groups_minus1 > 0)
- {
- pps->slice_group_map_type = ue_v ("PPS: slice_group_map_type" , s);
- if (pps->slice_group_map_type == 0)
- {
- for (i=0; i<=pps->num_slice_groups_minus1; i++)
- pps->run_length_minus1 [i] = ue_v ("PPS: run_length_minus1 [i]" , s);
- }
- else if (pps->slice_group_map_type == 2)
- {
- for (i=0; i<pps->num_slice_groups_minus1; i++)
- {
- //! JVT-F078: avoid reference of SPS by using ue(v) instead of u(v)
- pps->top_left [i] = ue_v ("PPS: top_left [i]" , s);
- pps->bottom_right [i] = ue_v ("PPS: bottom_right [i]" , s);
- }
- }
- else if (pps->slice_group_map_type == 3 ||
- pps->slice_group_map_type == 4 ||
- pps->slice_group_map_type == 5)
- {
- pps->slice_group_change_direction_flag = u_1 ("PPS: slice_group_change_direction_flag" , s);
- pps->slice_group_change_rate_minus1 = ue_v ("PPS: slice_group_change_rate_minus1" , s);
- }
- else if (pps->slice_group_map_type == 6)
- {
- if (pps->num_slice_groups_minus1+1 >4)
- NumberBitsPerSliceGroupId = 3;
- else if (pps->num_slice_groups_minus1+1 > 2)
- NumberBitsPerSliceGroupId = 2;
- else
- NumberBitsPerSliceGroupId = 1;
- pps->pic_size_in_map_units_minus1 = ue_v ("PPS: pic_size_in_map_units_minus1" , s);
- if ((pps->slice_group_id = calloc (pps->pic_size_in_map_units_minus1+1, 1)) == NULL)
- no_mem_exit ("InterpretPPS: slice_group_id");
- for (i=0; i<=pps->pic_size_in_map_units_minus1; i++)
- pps->slice_group_id[i] = (byte) u_v (NumberBitsPerSliceGroupId, "slice_group_id[i]", s);
- }
- }
- // End of FMO stuff
- pps->num_ref_idx_l0_active_minus1 = ue_v ("PPS: num_ref_idx_l0_active_minus1" , s);
- pps->num_ref_idx_l1_active_minus1 = ue_v ("PPS: num_ref_idx_l1_active_minus1" , s);
- pps->weighted_pred_flag = u_1 ("PPS: weighted_pred_flag" , s);
- pps->weighted_bipred_idc = u_v ( 2, "PPS: weighted_bipred_idc" , s);
- pps->pic_init_qp_minus26 = se_v ("PPS: pic_init_qp_minus26" , s);
- pps->pic_init_qs_minus26 = se_v ("PPS: pic_init_qs_minus26" , s);
- pps->chroma_qp_index_offset = se_v ("PPS: chroma_qp_index_offset" , s);
- pps->deblocking_filter_control_present_flag = u_1 ("PPS: deblocking_filter_control_present_flag" , s);
- pps->constrained_intra_pred_flag = u_1 ("PPS: constrained_intra_pred_flag" , s);
- pps->redundant_pic_cnt_present_flag = u_1 ("PPS: redundant_pic_cnt_present_flag" , s);
- if(more_rbsp_data(s->streamBuffer, s->frame_bitoffset,s->bitstream_length)) // more_data_in_rbsp()
- {
- //Fidelity Range Extensions Stuff
- pps->transform_8x8_mode_flag = u_1 ("PPS: transform_8x8_mode_flag" , s);
- pps->pic_scaling_matrix_present_flag = u_1 ("PPS: pic_scaling_matrix_present_flag" , s);
- if(pps->pic_scaling_matrix_present_flag)
- {
- chroma_format_idc = p_Vid->SeqParSet[pps->seq_parameter_set_id].chroma_format_idc;
- n_ScalingList = 6 + ((chroma_format_idc != YUV444) ? 2 : 6) * pps->transform_8x8_mode_flag;
- for(i=0; i<n_ScalingList; i++)
- {
- pps->pic_scaling_list_present_flag[i]= u_1 ("PPS: pic_scaling_list_present_flag" , s);
- if(pps->pic_scaling_list_present_flag[i])
- {
- if(i<6)
- Scaling_List(pps->ScalingList4x4[i], 16, &pps->UseDefaultScalingMatrix4x4Flag[i], s);
- else
- Scaling_List(pps->ScalingList8x8[i-6], 64, &pps->UseDefaultScalingMatrix8x8Flag[i-6], s);
- }
- }
- }
- pps->second_chroma_qp_index_offset = se_v ("PPS: second_chroma_qp_index_offset" , s);
- }
- else
- {
- pps->second_chroma_qp_index_offset = pps->chroma_qp_index_offset;
- }
- pps->Valid = TRUE;
- }
- void PPSConsistencyCheck (pic_parameter_set_rbsp_t *pps)
- {
- printf ("Consistency checking a picture parset, to be implemented\n");
- // if (pps->seq_parameter_set_id invalid then do something)
- }
- void SPSConsistencyCheck (seq_parameter_set_rbsp_t *sps)
- {
- printf ("Consistency checking a sequence parset, to be implemented\n");
- }
- void MakePPSavailable (VideoParameters *p_Vid, int id, pic_parameter_set_rbsp_t *pps)
- {
- assert (pps->Valid == TRUE);
- if (p_Vid->PicParSet[id].Valid == TRUE && p_Vid->PicParSet[id].slice_group_id != NULL)
- free (p_Vid->PicParSet[id].slice_group_id);
- memcpy (&p_Vid->PicParSet[id], pps, sizeof (pic_parameter_set_rbsp_t));
- // we can simply use the memory provided with the pps. the PPS is destroyed after this function
- // call and will not try to free if pps->slice_group_id == NULL
- p_Vid->PicParSet[id].slice_group_id = pps->slice_group_id;
- pps->slice_group_id = NULL;
- }
- void CleanUpPPS(VideoParameters *p_Vid)
- {
- int i;
- for (i=0; i<MAXPPS; i++)
- {
- if (p_Vid->PicParSet[i].Valid == TRUE && p_Vid->PicParSet[i].slice_group_id != NULL)
- free (p_Vid->PicParSet[i].slice_group_id);
- p_Vid->PicParSet[i].Valid = FALSE;
- }
- }
- void MakeSPSavailable (VideoParameters *p_Vid, int id, seq_parameter_set_rbsp_t *sps)
- {
- assert (sps->Valid == TRUE);
- memcpy (&p_Vid->SeqParSet[id], sps, sizeof (seq_parameter_set_rbsp_t));
- }
- void ProcessSPS_Memory(VideoParameters *p_Vid, const void *buffer, size_t bufferlen)
- {
-
- }
- void ProcessSPS(VideoParameters *p_Vid, NALU_t *nalu)
- {
- DataPartition *dp = AllocPartition(1);
- seq_parameter_set_rbsp_t *sps = AllocSPS();
-
- //memcpy (dp->bitstream->streamBuffer, buffer, bufferlen);
- dp->bitstream->streamBuffer = &nalu->buf[1];
- dp->bitstream->code_len = dp->bitstream->bitstream_length = RBSPtoSODB (dp->bitstream->streamBuffer, nalu->len-1);
- dp->bitstream->read_len = dp->bitstream->frame_bitoffset = 0;
- InterpretSPS (p_Vid, dp, sps);
- if (sps->Valid)
- {
- if (p_Vid->active_sps)
- {
- if (sps->seq_parameter_set_id == p_Vid->active_sps->seq_parameter_set_id)
- {
- if (!sps_is_equal(sps, p_Vid->active_sps))
- {
- if (p_Vid->dec_picture)
- {
- // this may only happen on slice loss
- exit_picture(p_Vid, &p_Vid->dec_picture);
- }
- p_Vid->active_sps=NULL;
- }
- }
- }
- // SPSConsistencyCheck (pps);
- MakeSPSavailable (p_Vid, sps->seq_parameter_set_id, sps);
- p_Vid->profile_idc = sps->profile_idc;
- p_Vid->separate_colour_plane_flag = sps->separate_colour_plane_flag;
- if( p_Vid->separate_colour_plane_flag )
- {
- p_Vid->ChromaArrayType = 0;
- }
- else
- {
- p_Vid->ChromaArrayType = sps->chroma_format_idc;
- }
- }
- FreePartition (dp, 1);
- FreeSPS (sps);
-
- }
- void ProcessPPS (VideoParameters *p_Vid, NALU_t *nalu)
- {
- DataPartition *dp = AllocPartition(1);
- pic_parameter_set_rbsp_t *pps = AllocPPS();
- //memcpy (dp->bitstream->streamBuffer, &nalu->buf[1], nalu->len-1);
- dp->bitstream->streamBuffer = &nalu->buf[1];
- dp->bitstream->code_len = dp->bitstream->bitstream_length = RBSPtoSODB (dp->bitstream->streamBuffer, nalu->len-1);
- dp->bitstream->read_len = dp->bitstream->frame_bitoffset = 0;
- InterpretPPS (p_Vid, dp, pps);
- // PPSConsistencyCheck (pps);
- if (p_Vid->active_pps)
- {
- if (pps->pic_parameter_set_id == p_Vid->active_pps->pic_parameter_set_id)
- {
- if (!pps_is_equal(pps, p_Vid->active_pps))
- {
- if (p_Vid->dec_picture)
- {
- // this may only happen on slice loss
- exit_picture(p_Vid, &p_Vid->dec_picture);
- }
- p_Vid->active_pps = NULL;
- }
- }
- }
- MakePPSavailable (p_Vid, pps->pic_parameter_set_id, pps);
- FreePartition (dp, 1);
- FreePPS (pps);
- }
- /*!
- ************************************************************************
- * \brief
- * Updates images max values
- *
- ************************************************************************
- */
- static void updateMaxValue(FrameFormat *format)
- {
- format->max_value[0] = (1 << format->bit_depth[0]) - 1;
- format->max_value_sq[0] = format->max_value[0] * format->max_value[0];
- format->max_value[1] = (1 << format->bit_depth[1]) - 1;
- format->max_value_sq[1] = format->max_value[1] * format->max_value[1];
- format->max_value[2] = (1 << format->bit_depth[2]) - 1;
- format->max_value_sq[2] = format->max_value[2] * format->max_value[2];
- }
- /*!
- ************************************************************************
- * \brief
- * Reset format information
- *
- ************************************************************************
- */
- static void reset_format_info(seq_parameter_set_rbsp_t *sps, VideoParameters *p_Vid, FrameFormat *output)
- {
- InputParameters *p_Inp = p_Vid->p_Inp;
- static const int SubWidthC [4]= { 1, 2, 2, 1};
- static const int SubHeightC [4]= { 1, 2, 1, 1};
- int crop_left, crop_right;
- int crop_top, crop_bottom;
- // cropping for luma
- if (sps->frame_cropping_flag)
- {
- crop_left = SubWidthC [sps->chroma_format_idc] * sps->frame_cropping_rect_left_offset;
- crop_right = SubWidthC [sps->chroma_format_idc] * sps->frame_cropping_rect_right_offset;
- crop_top = SubHeightC[sps->chroma_format_idc] * ( 2 - sps->frame_mbs_only_flag ) * sps->frame_cropping_rect_top_offset;
- crop_bottom = SubHeightC[sps->chroma_format_idc] * ( 2 - sps->frame_mbs_only_flag ) * sps->frame_cropping_rect_bottom_offset;
- }
- else
- {
- crop_left = crop_right = crop_top = crop_bottom = 0;
- }
- output->width_crop = p_Vid->width - crop_left - crop_right;
- output->height_crop = p_Vid->height - crop_top - crop_bottom;
- output->width = p_Vid->width;
- output->height = p_Vid->height;
- output->width_cr = p_Vid->width_cr;
- output->height_cr = p_Vid->height_cr;
- // output size (excluding padding)
- output->size_cmp[0] = output->width * output->height;
- output->size_cmp[1] = output->width_cr * output->height_cr;
- output->size_cmp[2] = output->size_cmp[1];
- output->size = output->size_cmp[0] + output->size_cmp[1] + output->size_cmp[2];
- output->mb_width = output->width / MB_BLOCK_SIZE;
- output->mb_height = output->height / MB_BLOCK_SIZE;
- output->bit_depth[0] = p_Vid->bitdepth_luma;
- output->bit_depth[1] = p_Vid->bitdepth_chroma;
- output->bit_depth[2] = p_Vid->bitdepth_chroma;
- output->yuv_format = (ColorFormat) sps->chroma_format_idc;
- updateMaxValue(output);
- }
- /*!
- ************************************************************************
- * \brief
- * Activate Sequence Parameter Sets
- *
- ************************************************************************
- */
- void activate_sps (VideoParameters *p_Vid, seq_parameter_set_rbsp_t *sps)
- {
- InputParameters *p_Inp = p_Vid->p_Inp;
- if (p_Vid->active_sps != sps)
- {
- if (p_Vid->dec_picture)
- {
- // this may only happen on slice loss
- exit_picture(p_Vid, &p_Vid->dec_picture);
- }
- p_Vid->active_sps = sps;
- p_Vid->bitdepth_chroma = 0;
- p_Vid->width_cr = 0;
- p_Vid->height_cr = 0;
- // maximum vertical motion vector range in luma quarter pixel units
- if (p_Vid->active_sps->level_idc <= 10)
- {
- p_Vid->max_vmv_r = 64 * 4;
- }
- else if (p_Vid->active_sps->level_idc <= 20)
- {
- p_Vid->max_vmv_r = 128 * 4;
- }
- else if (p_Vid->active_sps->level_idc <= 30)
- {
- p_Vid->max_vmv_r = 256 * 4;
- }
- else
- {
- p_Vid->max_vmv_r = 512 * 4; // 512 pixels in quarter pixels
- }
- // Fidelity Range Extensions stuff (part 1)
- p_Vid->bitdepth_luma = (short) (sps->bit_depth_luma_minus8 + 8);
- p_Vid->bitdepth_scale[0] = 1 << sps->bit_depth_luma_minus8;
- if (sps->chroma_format_idc != YUV400)
- {
- p_Vid->bitdepth_chroma = (short) (sps->bit_depth_chroma_minus8 + 8);
- p_Vid->bitdepth_scale[1] = 1 << sps->bit_depth_chroma_minus8;
- }
- p_Vid->MaxFrameNum = 1<<(sps->log2_max_frame_num_minus4+4);
- p_Vid->PicWidthInMbs = (sps->pic_width_in_mbs_minus1 +1);
- p_Vid->PicHeightInMapUnits = (sps->pic_height_in_map_units_minus1 +1);
- p_Vid->FrameHeightInMbs = ( 2 - sps->frame_mbs_only_flag ) * p_Vid->PicHeightInMapUnits;
- p_Vid->FrameSizeInMbs = p_Vid->PicWidthInMbs * p_Vid->FrameHeightInMbs;
- p_Vid->yuv_format=sps->chroma_format_idc;
- p_Vid->width = p_Vid->PicWidthInMbs * MB_BLOCK_SIZE;
- p_Vid->height = p_Vid->FrameHeightInMbs * MB_BLOCK_SIZE;
-
- if (sps->chroma_format_idc == YUV420)
- {
- p_Vid->width_cr = (p_Vid->width >> 1);
- p_Vid->height_cr = (p_Vid->height >> 1);
- }
- else if (sps->chroma_format_idc == YUV422)
- {
- p_Vid->width_cr = (p_Vid->width >> 1);
- p_Vid->height_cr = p_Vid->height;
- }
- else if (sps->chroma_format_idc == YUV444)
- {
- //YUV444
- p_Vid->width_cr = p_Vid->width;
- p_Vid->height_cr = p_Vid->height;
- }
- init_frext(p_Vid);
- init_global_buffers(p_Vid);
- if (!p_Vid->no_output_of_prior_pics_flag)
- {
- flush_dpb(p_Vid);
- }
- init_dpb(p_Vid);
- ercInit(p_Vid, p_Vid->width, p_Vid->height, 1);
- image_cache_set_dimensions(&p_Vid->image_cache[0], p_Vid->width, p_Vid->height);
- image_cache_set_dimensions(&p_Vid->image_cache[1], p_Vid->width_cr, p_Vid->height_cr);
- motion_cache_set_dimensions(&p_Vid->motion_cache, p_Vid->width / BLOCK_SIZE, p_Vid->height / BLOCK_SIZE);
-
- }
-
- reset_format_info(sps, p_Vid, &p_Inp->output);
- }
- void activate_pps(VideoParameters *p_Vid, pic_parameter_set_rbsp_t *pps)
- {
- if (p_Vid->active_pps != pps)
- {
- if (p_Vid->dec_picture)
- {
- // this may only happen on slice loss
- exit_picture(p_Vid, &p_Vid->dec_picture);
- }
- p_Vid->active_pps = pps;
- // Fidelity Range Extensions stuff (part 2)
- p_Vid->Transform8x8Mode = pps->transform_8x8_mode_flag;
- }
- }
- void UseParameterSet (Slice *currSlice, int PicParsetId)
- {
- VideoParameters *p_Vid = currSlice->p_Vid;
- seq_parameter_set_rbsp_t *sps = &p_Vid->SeqParSet[p_Vid->PicParSet[PicParsetId].seq_parameter_set_id];
- pic_parameter_set_rbsp_t *pps = &p_Vid->PicParSet[PicParsetId];
- if (p_Vid->PicParSet[PicParsetId].Valid != TRUE)
- printf ("Trying to use an invalid (uninitialized) Picture Parameter Set with ID %d, expect the unexpected...\n", PicParsetId);
- if (p_Vid->SeqParSet[p_Vid->PicParSet[PicParsetId].seq_parameter_set_id].Valid != TRUE)
- printf ("PicParset %d references an invalid (uninitialized) Sequence Parameter Set with ID %d, expect the unexpected...\n", PicParsetId, (int) p_Vid->PicParSet[PicParsetId].seq_parameter_set_id);
- sps = &p_Vid->SeqParSet[p_Vid->PicParSet[PicParsetId].seq_parameter_set_id];
- // In theory, and with a well-designed software, the lines above
- // are everything necessary. In practice, we need to patch many values
- // in p_Vid-> (but no more in p_Inp-> -- these have been taken care of)
- // Sequence Parameter Set Stuff first
- // printf ("Using Picture Parameter set %d and associated Sequence Parameter Set %d\n", PicParsetId, p_Vid->PicParSet[PicParsetId].seq_parameter_set_id);
- if ((int) sps->pic_order_cnt_type < 0 || sps->pic_order_cnt_type > 2) // != 1
- {
- printf ("invalid sps->pic_order_cnt_type = %d\n", (int) sps->pic_order_cnt_type);
- error ("pic_order_cnt_type != 1", -1000);
- }
- if (sps->pic_order_cnt_type == 1)
- {
- if(sps->num_ref_frames_in_pic_order_cnt_cycle >= MAXnum_ref_frames_in_pic_order_cnt_cycle)
- {
- error("num_ref_frames_in_pic_order_cnt_cycle too large",-1011);
- }
- }
- activate_sps(p_Vid, sps);
- activate_pps(p_Vid, pps);
- // currSlice->dp_mode is set by read_new_slice (NALU first byte available there)
- if (pps->entropy_coding_mode_flag == CAVLC)
- {
- currSlice->nal_startcode_follows = uvlc_startcode_follows;
- }
- else
- {
- currSlice->nal_startcode_follows = cabac_startcode_follows;
- }
- }
|