source: SHVCSoftware/trunk/source/Lib/TLibDecoder/TDecCAVLC.cpp @ 594

Last change on this file since 594 was 588, checked in by seregin, 11 years ago

merge with SHM-5.0-dev

  • Property svn:eol-style set to native
File size: 111.3 KB
RevLine 
[313]1/* The copyright in this software is being made available under the BSD
2* License, included below. This software may be subject to other third party
3* and contributor rights, including patent rights, and no such rights are
4* granted under this license.
5*
6* Copyright (c) 2010-2013, ITU/ISO/IEC
7* All rights reserved.
8*
9* Redistribution and use in source and binary forms, with or without
10* modification, are permitted provided that the following conditions are met:
11*
12*  * Redistributions of source code must retain the above copyright notice,
13*    this list of conditions and the following disclaimer.
14*  * Redistributions in binary form must reproduce the above copyright notice,
15*    this list of conditions and the following disclaimer in the documentation
16*    and/or other materials provided with the distribution.
17*  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18*    be used to endorse or promote products derived from this software without
19*    specific prior written permission.
20*
21* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31* THE POSSIBILITY OF SUCH DAMAGE.
32*/
33
34/** \file     TDecCAVLC.cpp
35\brief    CAVLC decoder class
36*/
37
38#include "TDecCAVLC.h"
39#include "SEIread.h"
40#include "TDecSlice.h"
41
42//! \ingroup TLibDecoder
43//! \{
44
45#if ENC_DEC_TRACE
46
47Void  xTraceSPSHeader (TComSPS *pSPS)
48{
49  fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() );
50}
51
52Void  xTracePPSHeader (TComPPS *pPPS)
53{
54  fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() );
55}
56
57Void  xTraceSliceHeader (TComSlice *pSlice)
58{
59  fprintf( g_hTrace, "=========== Slice ===========\n");
60}
61
62#endif
63
64// ====================================================================================================================
65// Constructor / destructor / create / destroy
66// ====================================================================================================================
67
68TDecCavlc::TDecCavlc()
69{
70}
71
72TDecCavlc::~TDecCavlc()
73{
74
75}
76
77// ====================================================================================================================
78// Public member functions
79// ====================================================================================================================
80
81void TDecCavlc::parseShortTermRefPicSet( TComSPS* sps, TComReferencePictureSet* rps, Int idx )
82{
83  UInt code;
84  UInt interRPSPred;
85  if (idx > 0)
86  {
87    READ_FLAG(interRPSPred, "inter_ref_pic_set_prediction_flag");  rps->setInterRPSPrediction(interRPSPred);
88  }
89  else
90  {
91    interRPSPred = false;
92    rps->setInterRPSPrediction(false);
93  }
94
95  if (interRPSPred)
96  {
97    UInt bit;
98    if(idx == sps->getRPSList()->getNumberOfReferencePictureSets())
99    {
100      READ_UVLC(code, "delta_idx_minus1" ); // delta index of the Reference Picture Set used for prediction minus 1
101    }
102    else
103    {
104      code = 0;
105    }
106    assert(code <= idx-1); // delta_idx_minus1 shall not be larger than idx-1, otherwise we will predict from a negative row position that does not exist. When idx equals 0 there is no legal value and interRPSPred must be zero. See J0185-r2
107    Int rIdx =  idx - 1 - code;
108    assert (rIdx <= idx-1 && rIdx >= 0); // Made assert tighter; if rIdx = idx then prediction is done from itself. rIdx must belong to range 0, idx-1, inclusive, see J0185-r2
109    TComReferencePictureSet*   rpsRef = sps->getRPSList()->getReferencePictureSet(rIdx);
110    Int k = 0, k0 = 0, k1 = 0;
111    READ_CODE(1, bit, "delta_rps_sign"); // delta_RPS_sign
112    READ_UVLC(code, "abs_delta_rps_minus1");  // absolute delta RPS minus 1
113    Int deltaRPS = (1 - 2 * bit) * (code + 1); // delta_RPS
114    for(Int j=0 ; j <= rpsRef->getNumberOfPictures(); j++)
115    {
116      READ_CODE(1, bit, "used_by_curr_pic_flag" ); //first bit is "1" if Idc is 1
117      Int refIdc = bit;
118      if (refIdc == 0)
119      {
120        READ_CODE(1, bit, "use_delta_flag" ); //second bit is "1" if Idc is 2, "0" otherwise.
121        refIdc = bit<<1; //second bit is "1" if refIdc is 2, "0" if refIdc = 0.
122      }
123      if (refIdc == 1 || refIdc == 2)
124      {
125        Int deltaPOC = deltaRPS + ((j < rpsRef->getNumberOfPictures())? rpsRef->getDeltaPOC(j) : 0);
126        rps->setDeltaPOC(k, deltaPOC);
127        rps->setUsed(k, (refIdc == 1));
128
129        if (deltaPOC < 0)
130        {
131          k0++;
132        }
133        else
134        {
135          k1++;
136        }
137        k++;
138      }
139      rps->setRefIdc(j,refIdc);
140    }
141    rps->setNumRefIdc(rpsRef->getNumberOfPictures()+1);
142    rps->setNumberOfPictures(k);
143    rps->setNumberOfNegativePictures(k0);
144    rps->setNumberOfPositivePictures(k1);
145    rps->sortDeltaPOC();
146  }
147  else
148  {
149    READ_UVLC(code, "num_negative_pics");           rps->setNumberOfNegativePictures(code);
150    READ_UVLC(code, "num_positive_pics");           rps->setNumberOfPositivePictures(code);
151    Int prev = 0;
152    Int poc;
153    for(Int j=0 ; j < rps->getNumberOfNegativePictures(); j++)
154    {
155      READ_UVLC(code, "delta_poc_s0_minus1");
156      poc = prev-code-1;
157      prev = poc;
158      rps->setDeltaPOC(j,poc);
159      READ_FLAG(code, "used_by_curr_pic_s0_flag");  rps->setUsed(j,code);
160    }
161    prev = 0;
162    for(Int j=rps->getNumberOfNegativePictures(); j < rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures(); j++)
163    {
164      READ_UVLC(code, "delta_poc_s1_minus1");
165      poc = prev+code+1;
166      prev = poc;
167      rps->setDeltaPOC(j,poc);
168      READ_FLAG(code, "used_by_curr_pic_s1_flag");  rps->setUsed(j,code);
169    }
170    rps->setNumberOfPictures(rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures());
171  }
172#if PRINT_RPS_INFO
173  rps->printDeltaPOC();
174#endif
175}
176
177Void TDecCavlc::parsePPS(TComPPS* pcPPS)
178{
179#if ENC_DEC_TRACE
180  xTracePPSHeader (pcPPS);
181#endif
182  UInt  uiCode;
183
184  Int   iCode;
185
186  READ_UVLC( uiCode, "pps_pic_parameter_set_id");
187  assert(uiCode <= 63);
188  pcPPS->setPPSId (uiCode);
[494]189
[313]190  READ_UVLC( uiCode, "pps_seq_parameter_set_id");
191  assert(uiCode <= 15);
192  pcPPS->setSPSId (uiCode);
[494]193
[313]194  READ_FLAG( uiCode, "dependent_slice_segments_enabled_flag"    );    pcPPS->setDependentSliceSegmentsEnabledFlag   ( uiCode == 1 );
195  READ_FLAG( uiCode, "output_flag_present_flag" );                    pcPPS->setOutputFlagPresentFlag( uiCode==1 );
196
197  READ_CODE(3, uiCode, "num_extra_slice_header_bits");                pcPPS->setNumExtraSliceHeaderBits(uiCode);
198  READ_FLAG ( uiCode, "sign_data_hiding_flag" ); pcPPS->setSignHideFlag( uiCode );
199
200  READ_FLAG( uiCode,   "cabac_init_present_flag" );            pcPPS->setCabacInitPresentFlag( uiCode ? true : false );
201
202  READ_UVLC(uiCode, "num_ref_idx_l0_default_active_minus1");
203  assert(uiCode <= 14);
204  pcPPS->setNumRefIdxL0DefaultActive(uiCode+1);
205
206  READ_UVLC(uiCode, "num_ref_idx_l1_default_active_minus1");
207  assert(uiCode <= 14);
208  pcPPS->setNumRefIdxL1DefaultActive(uiCode+1);
209
210  READ_SVLC(iCode, "init_qp_minus26" );                            pcPPS->setPicInitQPMinus26(iCode);
211  READ_FLAG( uiCode, "constrained_intra_pred_flag" );              pcPPS->setConstrainedIntraPred( uiCode ? true : false );
212  READ_FLAG( uiCode, "transform_skip_enabled_flag" );
213  pcPPS->setUseTransformSkip ( uiCode ? true : false );
214
215  READ_FLAG( uiCode, "cu_qp_delta_enabled_flag" );            pcPPS->setUseDQP( uiCode ? true : false );
216  if( pcPPS->getUseDQP() )
217  {
218    READ_UVLC( uiCode, "diff_cu_qp_delta_depth" );
219    pcPPS->setMaxCuDQPDepth( uiCode );
220  }
221  else
222  {
223    pcPPS->setMaxCuDQPDepth( 0 );
224  }
225  READ_SVLC( iCode, "pps_cb_qp_offset");
226  pcPPS->setChromaCbQpOffset(iCode);
227  assert( pcPPS->getChromaCbQpOffset() >= -12 );
228  assert( pcPPS->getChromaCbQpOffset() <=  12 );
229
230  READ_SVLC( iCode, "pps_cr_qp_offset");
231  pcPPS->setChromaCrQpOffset(iCode);
232  assert( pcPPS->getChromaCrQpOffset() >= -12 );
233  assert( pcPPS->getChromaCrQpOffset() <=  12 );
234
235  READ_FLAG( uiCode, "pps_slice_chroma_qp_offsets_present_flag" );
236  pcPPS->setSliceChromaQpFlag( uiCode ? true : false );
237
238  READ_FLAG( uiCode, "weighted_pred_flag" );          // Use of Weighting Prediction (P_SLICE)
239  pcPPS->setUseWP( uiCode==1 );
240  READ_FLAG( uiCode, "weighted_bipred_flag" );         // Use of Bi-Directional Weighting Prediction (B_SLICE)
241  pcPPS->setWPBiPred( uiCode==1 );
242
243  READ_FLAG( uiCode, "transquant_bypass_enable_flag");
244  pcPPS->setTransquantBypassEnableFlag(uiCode ? true : false);
245  READ_FLAG( uiCode, "tiles_enabled_flag"               );    pcPPS->setTilesEnabledFlag            ( uiCode == 1 );
246  READ_FLAG( uiCode, "entropy_coding_sync_enabled_flag" );    pcPPS->setEntropyCodingSyncEnabledFlag( uiCode == 1 );
247
248  if( pcPPS->getTilesEnabledFlag() )
249  {
250    READ_UVLC ( uiCode, "num_tile_columns_minus1" );                pcPPS->setNumColumnsMinus1( uiCode );
251    READ_UVLC ( uiCode, "num_tile_rows_minus1" );                   pcPPS->setNumRowsMinus1( uiCode );
252    READ_FLAG ( uiCode, "uniform_spacing_flag" );                   pcPPS->setUniformSpacingFlag( uiCode );
253
254    if( !pcPPS->getUniformSpacingFlag())
255    {
256      UInt* columnWidth = (UInt*)malloc(pcPPS->getNumColumnsMinus1()*sizeof(UInt));
257      for(UInt i=0; i<pcPPS->getNumColumnsMinus1(); i++)
258      {
259        READ_UVLC( uiCode, "column_width_minus1" );
260        columnWidth[i] = uiCode+1;
261      }
262      pcPPS->setColumnWidth(columnWidth);
263      free(columnWidth);
264
265      UInt* rowHeight = (UInt*)malloc(pcPPS->getNumRowsMinus1()*sizeof(UInt));
266      for(UInt i=0; i<pcPPS->getNumRowsMinus1(); i++)
267      {
268        READ_UVLC( uiCode, "row_height_minus1" );
269        rowHeight[i] = uiCode + 1;
270      }
271      pcPPS->setRowHeight(rowHeight);
272      free(rowHeight);
273    }
274
275    if(pcPPS->getNumColumnsMinus1() !=0 || pcPPS->getNumRowsMinus1() !=0)
276    {
277      READ_FLAG ( uiCode, "loop_filter_across_tiles_enabled_flag" );   pcPPS->setLoopFilterAcrossTilesEnabledFlag( uiCode ? true : false );
278    }
279  }
280  READ_FLAG( uiCode, "loop_filter_across_slices_enabled_flag" );       pcPPS->setLoopFilterAcrossSlicesEnabledFlag( uiCode ? true : false );
281  READ_FLAG( uiCode, "deblocking_filter_control_present_flag" );       pcPPS->setDeblockingFilterControlPresentFlag( uiCode ? true : false );
282  if(pcPPS->getDeblockingFilterControlPresentFlag())
283  {
284    READ_FLAG( uiCode, "deblocking_filter_override_enabled_flag" );    pcPPS->setDeblockingFilterOverrideEnabledFlag( uiCode ? true : false );
285    READ_FLAG( uiCode, "pps_disable_deblocking_filter_flag" );         pcPPS->setPicDisableDeblockingFilterFlag(uiCode ? true : false );
286    if(!pcPPS->getPicDisableDeblockingFilterFlag())
287    {
288      READ_SVLC ( iCode, "pps_beta_offset_div2" );                     pcPPS->setDeblockingFilterBetaOffsetDiv2( iCode );
289      READ_SVLC ( iCode, "pps_tc_offset_div2" );                       pcPPS->setDeblockingFilterTcOffsetDiv2( iCode );
290    }
291  }
[442]292
[540]293#if SCALINGLIST_INFERRING
294  if( pcPPS->getLayerId() > 0 )
295  {
296    READ_FLAG( uiCode, "pps_infer_scaling_list_flag" );
297    pcPPS->setInferScalingListFlag( uiCode );
298  }
[442]299
[540]300  if( pcPPS->getInferScalingListFlag() )
[313]301  {
[540]302    READ_UVLC( uiCode, "pps_scaling_list_ref_layer_id" ); pcPPS->setScalingListRefLayerId( uiCode );
[442]303
[540]304    // The value of pps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive
305    assert( pcPPS->getScalingListRefLayerId() <= 62 );
[494]306
[540]307    pcPPS->setScalingListPresentFlag( false );
308  }
309  else
310  {
311#endif
[442]312
[540]313  READ_FLAG( uiCode, "pps_scaling_list_data_present_flag" );           pcPPS->setScalingListPresentFlag( uiCode ? true : false );
[442]314
[540]315  if(pcPPS->getScalingListPresentFlag ())
316  {
[313]317    parseScalingList( pcPPS->getScalingList() );
318  }
319
[540]320#if SCALINGLIST_INFERRING
321  }
322#endif
323
[313]324  READ_FLAG( uiCode, "lists_modification_present_flag");
325  pcPPS->setListsModificationPresentFlag(uiCode);
326
327  READ_UVLC( uiCode, "log2_parallel_merge_level_minus2");
328  pcPPS->setLog2ParallelMergeLevelMinus2 (uiCode);
329
330  READ_FLAG( uiCode, "slice_segment_header_extension_present_flag");
331  pcPPS->setSliceHeaderExtensionPresentFlag(uiCode);
332
333  READ_FLAG( uiCode, "pps_extension_flag");
334  if (uiCode)
335  {
336    while ( xMoreRbspData() )
337    {
338      READ_FLAG( uiCode, "pps_extension_data_flag");
339    }
340  }
341}
342
343Void  TDecCavlc::parseVUI(TComVUI* pcVUI, TComSPS *pcSPS)
344{
345#if ENC_DEC_TRACE
346  fprintf( g_hTrace, "----------- vui_parameters -----------\n");
347#endif
348  UInt  uiCode;
349
350  READ_FLAG(     uiCode, "aspect_ratio_info_present_flag");           pcVUI->setAspectRatioInfoPresentFlag(uiCode);
351  if (pcVUI->getAspectRatioInfoPresentFlag())
352  {
353    READ_CODE(8, uiCode, "aspect_ratio_idc");                         pcVUI->setAspectRatioIdc(uiCode);
354    if (pcVUI->getAspectRatioIdc() == 255)
355    {
356      READ_CODE(16, uiCode, "sar_width");                             pcVUI->setSarWidth(uiCode);
357      READ_CODE(16, uiCode, "sar_height");                            pcVUI->setSarHeight(uiCode);
358    }
359  }
360
361  READ_FLAG(     uiCode, "overscan_info_present_flag");               pcVUI->setOverscanInfoPresentFlag(uiCode);
362  if (pcVUI->getOverscanInfoPresentFlag())
363  {
364    READ_FLAG(   uiCode, "overscan_appropriate_flag");                pcVUI->setOverscanAppropriateFlag(uiCode);
365  }
366
367  READ_FLAG(     uiCode, "video_signal_type_present_flag");           pcVUI->setVideoSignalTypePresentFlag(uiCode);
368  if (pcVUI->getVideoSignalTypePresentFlag())
369  {
370    READ_CODE(3, uiCode, "video_format");                             pcVUI->setVideoFormat(uiCode);
371    READ_FLAG(   uiCode, "video_full_range_flag");                    pcVUI->setVideoFullRangeFlag(uiCode);
372    READ_FLAG(   uiCode, "colour_description_present_flag");          pcVUI->setColourDescriptionPresentFlag(uiCode);
373    if (pcVUI->getColourDescriptionPresentFlag())
374    {
375      READ_CODE(8, uiCode, "colour_primaries");                       pcVUI->setColourPrimaries(uiCode);
376      READ_CODE(8, uiCode, "transfer_characteristics");               pcVUI->setTransferCharacteristics(uiCode);
377      READ_CODE(8, uiCode, "matrix_coefficients");                    pcVUI->setMatrixCoefficients(uiCode);
378    }
379  }
380
381  READ_FLAG(     uiCode, "chroma_loc_info_present_flag");             pcVUI->setChromaLocInfoPresentFlag(uiCode);
382  if (pcVUI->getChromaLocInfoPresentFlag())
383  {
384    READ_UVLC(   uiCode, "chroma_sample_loc_type_top_field" );        pcVUI->setChromaSampleLocTypeTopField(uiCode);
385    READ_UVLC(   uiCode, "chroma_sample_loc_type_bottom_field" );     pcVUI->setChromaSampleLocTypeBottomField(uiCode);
386  }
387
388  READ_FLAG(     uiCode, "neutral_chroma_indication_flag");           pcVUI->setNeutralChromaIndicationFlag(uiCode);
389
390  READ_FLAG(     uiCode, "field_seq_flag");                           pcVUI->setFieldSeqFlag(uiCode);
391
392  READ_FLAG(uiCode, "frame_field_info_present_flag");                 pcVUI->setFrameFieldInfoPresentFlag(uiCode);
393
394  READ_FLAG(     uiCode, "default_display_window_flag");
395  if (uiCode != 0)
396  {
397    Window &defDisp = pcVUI->getDefaultDisplayWindow();
398    READ_UVLC(   uiCode, "def_disp_win_left_offset" );                defDisp.setWindowLeftOffset  ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc()) );
399    READ_UVLC(   uiCode, "def_disp_win_right_offset" );               defDisp.setWindowRightOffset ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc()) );
400    READ_UVLC(   uiCode, "def_disp_win_top_offset" );                 defDisp.setWindowTopOffset   ( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc()) );
401    READ_UVLC(   uiCode, "def_disp_win_bottom_offset" );              defDisp.setWindowBottomOffset( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc()) );
402  }
403  TimingInfo *timingInfo = pcVUI->getTimingInfo();
404  READ_FLAG(       uiCode, "vui_timing_info_present_flag");         timingInfo->setTimingInfoPresentFlag      (uiCode ? true : false);
[442]405#if TIMING_INFO_NONZERO_LAYERID_SPS
406  if( pcSPS->getLayerId() > 0 )
407  {
408    assert( timingInfo->getTimingInfoPresentFlag() == false );
409  }
410#endif
[313]411  if(timingInfo->getTimingInfoPresentFlag())
412  {
413    READ_CODE( 32, uiCode, "vui_num_units_in_tick");                timingInfo->setNumUnitsInTick             (uiCode);
414    READ_CODE( 32, uiCode, "vui_time_scale");                       timingInfo->setTimeScale                  (uiCode);
415    READ_FLAG(     uiCode, "vui_poc_proportional_to_timing_flag");  timingInfo->setPocProportionalToTimingFlag(uiCode ? true : false);
416    if(timingInfo->getPocProportionalToTimingFlag())
417    {
418      READ_UVLC(   uiCode, "vui_num_ticks_poc_diff_one_minus1");    timingInfo->setNumTicksPocDiffOneMinus1   (uiCode);
419    }
420  READ_FLAG(     uiCode, "hrd_parameters_present_flag");              pcVUI->setHrdParametersPresentFlag(uiCode);
421  if( pcVUI->getHrdParametersPresentFlag() )
422  {
423    parseHrdParameters( pcVUI->getHrdParameters(), 1, pcSPS->getMaxTLayers() - 1 );
424  }
425  }
426  READ_FLAG(     uiCode, "bitstream_restriction_flag");               pcVUI->setBitstreamRestrictionFlag(uiCode);
427  if (pcVUI->getBitstreamRestrictionFlag())
428  {
429    READ_FLAG(   uiCode, "tiles_fixed_structure_flag");               pcVUI->setTilesFixedStructureFlag(uiCode);
430    READ_FLAG(   uiCode, "motion_vectors_over_pic_boundaries_flag");  pcVUI->setMotionVectorsOverPicBoundariesFlag(uiCode);
431    READ_FLAG(   uiCode, "restricted_ref_pic_lists_flag");            pcVUI->setRestrictedRefPicListsFlag(uiCode);
432    READ_UVLC( uiCode, "min_spatial_segmentation_idc");            pcVUI->setMinSpatialSegmentationIdc(uiCode);
433    assert(uiCode < 4096);
434    READ_UVLC(   uiCode, "max_bytes_per_pic_denom" );                 pcVUI->setMaxBytesPerPicDenom(uiCode);
435    READ_UVLC(   uiCode, "max_bits_per_mincu_denom" );                pcVUI->setMaxBitsPerMinCuDenom(uiCode);
436    READ_UVLC(   uiCode, "log2_max_mv_length_horizontal" );           pcVUI->setLog2MaxMvLengthHorizontal(uiCode);
437    READ_UVLC(   uiCode, "log2_max_mv_length_vertical" );             pcVUI->setLog2MaxMvLengthVertical(uiCode);
438  }
439}
440
441Void TDecCavlc::parseHrdParameters(TComHRD *hrd, Bool commonInfPresentFlag, UInt maxNumSubLayersMinus1)
442{
443  UInt  uiCode;
444  if( commonInfPresentFlag )
445  {
446    READ_FLAG( uiCode, "nal_hrd_parameters_present_flag" );           hrd->setNalHrdParametersPresentFlag( uiCode == 1 ? true : false );
447    READ_FLAG( uiCode, "vcl_hrd_parameters_present_flag" );           hrd->setVclHrdParametersPresentFlag( uiCode == 1 ? true : false );
448    if( hrd->getNalHrdParametersPresentFlag() || hrd->getVclHrdParametersPresentFlag() )
449    {
450      READ_FLAG( uiCode, "sub_pic_cpb_params_present_flag" );         hrd->setSubPicCpbParamsPresentFlag( uiCode == 1 ? true : false );
451      if( hrd->getSubPicCpbParamsPresentFlag() )
452      {
453        READ_CODE( 8, uiCode, "tick_divisor_minus2" );                hrd->setTickDivisorMinus2( uiCode );
454        READ_CODE( 5, uiCode, "du_cpb_removal_delay_length_minus1" ); hrd->setDuCpbRemovalDelayLengthMinus1( uiCode );
455        READ_FLAG( uiCode, "sub_pic_cpb_params_in_pic_timing_sei_flag" ); hrd->setSubPicCpbParamsInPicTimingSEIFlag( uiCode == 1 ? true : false );
456        READ_CODE( 5, uiCode, "dpb_output_delay_du_length_minus1"  ); hrd->setDpbOutputDelayDuLengthMinus1( uiCode );
457      }
458      READ_CODE( 4, uiCode, "bit_rate_scale" );                       hrd->setBitRateScale( uiCode );
459      READ_CODE( 4, uiCode, "cpb_size_scale" );                       hrd->setCpbSizeScale( uiCode );
460      if( hrd->getSubPicCpbParamsPresentFlag() )
461      {
462        READ_CODE( 4, uiCode, "cpb_size_du_scale" );                  hrd->setDuCpbSizeScale( uiCode );
463      }
464      READ_CODE( 5, uiCode, "initial_cpb_removal_delay_length_minus1" ); hrd->setInitialCpbRemovalDelayLengthMinus1( uiCode );
465      READ_CODE( 5, uiCode, "au_cpb_removal_delay_length_minus1" );      hrd->setCpbRemovalDelayLengthMinus1( uiCode );
466      READ_CODE( 5, uiCode, "dpb_output_delay_length_minus1" );       hrd->setDpbOutputDelayLengthMinus1( uiCode );
467    }
468  }
469  Int i, j, nalOrVcl;
470  for( i = 0; i <= maxNumSubLayersMinus1; i ++ )
471  {
472    READ_FLAG( uiCode, "fixed_pic_rate_general_flag" );                     hrd->setFixedPicRateFlag( i, uiCode == 1 ? true : false  );
473    if( !hrd->getFixedPicRateFlag( i ) )
474    {
475      READ_FLAG( uiCode, "fixed_pic_rate_within_cvs_flag" );                hrd->setFixedPicRateWithinCvsFlag( i, uiCode == 1 ? true : false  );
476    }
477    else
478    {
479      hrd->setFixedPicRateWithinCvsFlag( i, true );
480    }
481    hrd->setLowDelayHrdFlag( i, 0 ); // Infered to be 0 when not present
482    hrd->setCpbCntMinus1   ( i, 0 ); // Infered to be 0 when not present
483    if( hrd->getFixedPicRateWithinCvsFlag( i ) )
484    {
485      READ_UVLC( uiCode, "elemental_duration_in_tc_minus1" );             hrd->setPicDurationInTcMinus1( i, uiCode );
486    }
487    else
488    {
489      READ_FLAG( uiCode, "low_delay_hrd_flag" );                      hrd->setLowDelayHrdFlag( i, uiCode == 1 ? true : false  );
490    }
491    if (!hrd->getLowDelayHrdFlag( i ))
492    {
493      READ_UVLC( uiCode, "cpb_cnt_minus1" );                          hrd->setCpbCntMinus1( i, uiCode );
494    }
495    for( nalOrVcl = 0; nalOrVcl < 2; nalOrVcl ++ )
496    {
497      if( ( ( nalOrVcl == 0 ) && ( hrd->getNalHrdParametersPresentFlag() ) ) ||
498          ( ( nalOrVcl == 1 ) && ( hrd->getVclHrdParametersPresentFlag() ) ) )
499      {
500        for( j = 0; j <= ( hrd->getCpbCntMinus1( i ) ); j ++ )
501        {
502          READ_UVLC( uiCode, "bit_rate_value_minus1" );             hrd->setBitRateValueMinus1( i, j, nalOrVcl, uiCode );
503          READ_UVLC( uiCode, "cpb_size_value_minus1" );             hrd->setCpbSizeValueMinus1( i, j, nalOrVcl, uiCode );
504          if( hrd->getSubPicCpbParamsPresentFlag() )
505          {
506            READ_UVLC( uiCode, "cpb_size_du_value_minus1" );       hrd->setDuCpbSizeValueMinus1( i, j, nalOrVcl, uiCode );
507            READ_UVLC( uiCode, "bit_rate_du_value_minus1" );       hrd->setDuBitRateValueMinus1( i, j, nalOrVcl, uiCode );
508          }
509          READ_FLAG( uiCode, "cbr_flag" );                          hrd->setCbrFlag( i, j, nalOrVcl, uiCode == 1 ? true : false  );
510        }
511      }
512    }
513  }
514}
515
[494]516#if SVC_EXTENSION
[313]517Void TDecCavlc::parseSPS(TComSPS* pcSPS, ParameterSetManagerDecoder *parameterSetManager)
518#else
519Void TDecCavlc::parseSPS(TComSPS* pcSPS)
520#endif
521{
522#if ENC_DEC_TRACE
523  xTraceSPSHeader (pcSPS);
524#endif
525
526  UInt  uiCode;
527  READ_CODE( 4,  uiCode, "sps_video_parameter_set_id");          pcSPS->setVPSId        ( uiCode );
[494]528#if SVC_EXTENSION
[313]529  if(pcSPS->getLayerId() == 0)
530  {
531#endif
532    READ_CODE( 3,  uiCode, "sps_max_sub_layers_minus1" );          pcSPS->setMaxTLayers   ( uiCode+1 );
533    assert(uiCode <= 6);
[494]534
[313]535    READ_FLAG( uiCode, "sps_temporal_id_nesting_flag" );               pcSPS->setTemporalIdNestingFlag ( uiCode > 0 ? true : false );
[494]536#if SVC_EXTENSION
[313]537  }
538  else
539  {
540    pcSPS->setMaxTLayers           ( parameterSetManager->getPrefetchedVPS(pcSPS->getVPSId())->getMaxTLayers()          );
541    pcSPS->setTemporalIdNestingFlag( parameterSetManager->getPrefetchedVPS(pcSPS->getVPSId())->getTemporalNestingFlag() );
542  }
[442]543#endif
[313]544  if ( pcSPS->getMaxTLayers() == 1 )
545  {
546    // sps_temporal_id_nesting_flag must be 1 when sps_max_sub_layers_minus1 is 0
[494]547#if SVC_EXTENSION
[313]548    assert( pcSPS->getTemporalIdNestingFlag() == true );
549#else
550    assert( uiCode == 1 );
551#endif
552  }
[442]553#ifdef SPS_PTL_FIX
554  if ( pcSPS->getLayerId() == 0)
555  {
556    parsePTL(pcSPS->getPTL(), 1, pcSPS->getMaxTLayers() - 1);
557  }
558#else
559  parsePTL(pcSPS->getPTL(), 1, pcSPS->getMaxTLayers() - 1);
560#endif
[313]561
562  READ_UVLC(     uiCode, "sps_seq_parameter_set_id" );           pcSPS->setSPSId( uiCode );
563  assert(uiCode <= 15);
[442]564
565#if REPN_FORMAT_IN_VPS
566  if( pcSPS->getLayerId() > 0 )
[313]567  {
[494]568    READ_FLAG( uiCode, "update_rep_format_flag" );
[442]569    pcSPS->setUpdateRepFormatFlag( uiCode ? true : false );
[313]570  }
[442]571  else
572  {
573    pcSPS->setUpdateRepFormatFlag( true );
574  }
[540]575#if O0096_REP_FORMAT_INDEX
576  if( pcSPS->getLayerId() == 0 )
577#else
[494]578  if( pcSPS->getLayerId() == 0 || pcSPS->getUpdateRepFormatFlag() )
[540]579#endif
[442]580  {
581#endif
[494]582#if AUXILIARY_PICTURES
583    READ_UVLC(     uiCode, "chroma_format_idc" );                  pcSPS->setChromaFormatIdc( ChromaFormat(uiCode) );
584#else
[442]585    READ_UVLC(     uiCode, "chroma_format_idc" );                  pcSPS->setChromaFormatIdc( uiCode );
[494]586#endif
[442]587    assert(uiCode <= 3);
588    // in the first version we only support chroma_format_idc equal to 1 (4:2:0), so separate_colour_plane_flag cannot appear in the bitstream
589    assert (uiCode == 1);
590    if( uiCode == 3 )
591    {
592      READ_FLAG(     uiCode, "separate_colour_plane_flag");        assert(uiCode == 0);
593    }
[313]594
[442]595    READ_UVLC (    uiCode, "pic_width_in_luma_samples" );          pcSPS->setPicWidthInLumaSamples ( uiCode    );
596    READ_UVLC (    uiCode, "pic_height_in_luma_samples" );         pcSPS->setPicHeightInLumaSamples( uiCode    );
597#if REPN_FORMAT_IN_VPS
598  }
[540]599#if O0096_REP_FORMAT_INDEX
600  else if ( pcSPS->getUpdateRepFormatFlag() )
601  {
602    READ_CODE(8, uiCode, "update_rep_format_index");
603    pcSPS->setUpdateRepFormatIndex(uiCode);
604  }
[442]605#endif
[540]606#endif
[313]607  READ_FLAG(     uiCode, "conformance_window_flag");
608  if (uiCode != 0)
609  {
610    Window &conf = pcSPS->getConformanceWindow();
[442]611#if REPN_FORMAT_IN_VPS
612    READ_UVLC(   uiCode, "conf_win_left_offset" );               conf.setWindowLeftOffset  ( uiCode );
613    READ_UVLC(   uiCode, "conf_win_right_offset" );              conf.setWindowRightOffset ( uiCode );
614    READ_UVLC(   uiCode, "conf_win_top_offset" );                conf.setWindowTopOffset   ( uiCode );
615    READ_UVLC(   uiCode, "conf_win_bottom_offset" );             conf.setWindowBottomOffset( uiCode );
616#else
[313]617    READ_UVLC(   uiCode, "conf_win_left_offset" );               conf.setWindowLeftOffset  ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc() ) );
618    READ_UVLC(   uiCode, "conf_win_right_offset" );              conf.setWindowRightOffset ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc() ) );
619    READ_UVLC(   uiCode, "conf_win_top_offset" );                conf.setWindowTopOffset   ( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc() ) );
620    READ_UVLC(   uiCode, "conf_win_bottom_offset" );             conf.setWindowBottomOffset( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc() ) );
[442]621#endif
[313]622  }
[442]623#if REPN_FORMAT_IN_VPS
[540]624#if O0096_REP_FORMAT_INDEX
625  if( pcSPS->getLayerId() == 0 )
626#else
[494]627  if(  pcSPS->getLayerId() == 0 || pcSPS->getUpdateRepFormatFlag() )
[540]628#endif
[442]629  {
630#endif
631    READ_UVLC(     uiCode, "bit_depth_luma_minus8" );
632    assert(uiCode <= 6);
633    pcSPS->setBitDepthY( uiCode + 8 );
634    pcSPS->setQpBDOffsetY( (Int) (6*uiCode) );
[313]635
[442]636    READ_UVLC( uiCode,    "bit_depth_chroma_minus8" );
637    assert(uiCode <= 6);
638    pcSPS->setBitDepthC( uiCode + 8 );
639    pcSPS->setQpBDOffsetC( (Int) (6*uiCode) );
640#if REPN_FORMAT_IN_VPS
641  }
642#endif
[313]643  READ_UVLC( uiCode,    "log2_max_pic_order_cnt_lsb_minus4" );   pcSPS->setBitsForPOC( 4 + uiCode );
644  assert(uiCode <= 12);
645
646  UInt subLayerOrderingInfoPresentFlag;
647  READ_FLAG(subLayerOrderingInfoPresentFlag, "sps_sub_layer_ordering_info_present_flag");
[494]648
[313]649  for(UInt i=0; i <= pcSPS->getMaxTLayers()-1; i++)
650  {
651    READ_UVLC ( uiCode, "sps_max_dec_pic_buffering_minus1");
652    pcSPS->setMaxDecPicBuffering( uiCode + 1, i);
653    READ_UVLC ( uiCode, "sps_num_reorder_pics" );
654    pcSPS->setNumReorderPics(uiCode, i);
655    READ_UVLC ( uiCode, "sps_max_latency_increase_plus1");
656    pcSPS->setMaxLatencyIncrease( uiCode, i );
657
658    if (!subLayerOrderingInfoPresentFlag)
659    {
660      for (i++; i <= pcSPS->getMaxTLayers()-1; i++)
661      {
662        pcSPS->setMaxDecPicBuffering(pcSPS->getMaxDecPicBuffering(0), i);
663        pcSPS->setNumReorderPics(pcSPS->getNumReorderPics(0), i);
664        pcSPS->setMaxLatencyIncrease(pcSPS->getMaxLatencyIncrease(0), i);
665      }
666      break;
667    }
668  }
669
670  READ_UVLC( uiCode, "log2_min_coding_block_size_minus3" );
671  Int log2MinCUSize = uiCode + 3;
672  pcSPS->setLog2MinCodingBlockSize(log2MinCUSize);
673  READ_UVLC( uiCode, "log2_diff_max_min_coding_block_size" );
674  pcSPS->setLog2DiffMaxMinCodingBlockSize(uiCode);
675  Int maxCUDepthDelta = uiCode;
676  pcSPS->setMaxCUWidth  ( 1<<(log2MinCUSize + maxCUDepthDelta) );
677  pcSPS->setMaxCUHeight ( 1<<(log2MinCUSize + maxCUDepthDelta) );
678  READ_UVLC( uiCode, "log2_min_transform_block_size_minus2" );   pcSPS->setQuadtreeTULog2MinSize( uiCode + 2 );
679
680  READ_UVLC( uiCode, "log2_diff_max_min_transform_block_size" ); pcSPS->setQuadtreeTULog2MaxSize( uiCode + pcSPS->getQuadtreeTULog2MinSize() );
681  pcSPS->setMaxTrSize( 1<<(uiCode + pcSPS->getQuadtreeTULog2MinSize()) );
682
683  READ_UVLC( uiCode, "max_transform_hierarchy_depth_inter" );    pcSPS->setQuadtreeTUMaxDepthInter( uiCode+1 );
684  READ_UVLC( uiCode, "max_transform_hierarchy_depth_intra" );    pcSPS->setQuadtreeTUMaxDepthIntra( uiCode+1 );
685
686  Int addCuDepth = max (0, log2MinCUSize - (Int)pcSPS->getQuadtreeTULog2MinSize() );
687  pcSPS->setMaxCUDepth( maxCUDepthDelta + addCuDepth );
[442]688  READ_FLAG( uiCode, "scaling_list_enabled_flag" );                 pcSPS->setScalingListFlag ( uiCode );
[313]689
690  if(pcSPS->getScalingListFlag())
691  {
[540]692#if SCALINGLIST_INFERRING
693    if( pcSPS->getLayerId() > 0 )
[313]694    {
[540]695      READ_FLAG( uiCode, "sps_infer_scaling_list_flag" ); pcSPS->setInferScalingListFlag( uiCode );
696    }
[442]697
[540]698    if( pcSPS->getInferScalingListFlag() )
699    {
700      READ_UVLC( uiCode, "sps_scaling_list_ref_layer_id" ); pcSPS->setScalingListRefLayerId( uiCode );
[442]701
[540]702      // The value of pps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive
703      assert( pcSPS->getScalingListRefLayerId() <= 62 );
[442]704
[540]705      pcSPS->setScalingListPresentFlag( false );
706    }
707    else
708    {
709#endif
710    READ_FLAG( uiCode, "sps_scaling_list_data_present_flag" );                 pcSPS->setScalingListPresentFlag ( uiCode );
711    if(pcSPS->getScalingListPresentFlag ())
712    {
[313]713      parseScalingList( pcSPS->getScalingList() );
[540]714    }
715#if SCALINGLIST_INFERRING
716    }
[442]717#endif
[313]718  }
719  READ_FLAG( uiCode, "amp_enabled_flag" );                          pcSPS->setUseAMP( uiCode );
720  READ_FLAG( uiCode, "sample_adaptive_offset_enabled_flag" );       pcSPS->setUseSAO ( uiCode ? true : false );
721
722  READ_FLAG( uiCode, "pcm_enabled_flag" ); pcSPS->setUsePCM( uiCode ? true : false );
723  if( pcSPS->getUsePCM() )
724  {
725    READ_CODE( 4, uiCode, "pcm_sample_bit_depth_luma_minus1" );          pcSPS->setPCMBitDepthLuma   ( 1 + uiCode );
726    READ_CODE( 4, uiCode, "pcm_sample_bit_depth_chroma_minus1" );        pcSPS->setPCMBitDepthChroma ( 1 + uiCode );
727    READ_UVLC( uiCode, "log2_min_pcm_luma_coding_block_size_minus3" );   pcSPS->setPCMLog2MinSize (uiCode+3);
728    READ_UVLC( uiCode, "log2_diff_max_min_pcm_luma_coding_block_size" ); pcSPS->setPCMLog2MaxSize ( uiCode+pcSPS->getPCMLog2MinSize() );
729    READ_FLAG( uiCode, "pcm_loop_filter_disable_flag" );                 pcSPS->setPCMFilterDisableFlag ( uiCode ? true : false );
730  }
731
732  READ_UVLC( uiCode, "num_short_term_ref_pic_sets" );
733  assert(uiCode <= 64);
734  pcSPS->createRPSList(uiCode);
735
736  TComRPSList* rpsList = pcSPS->getRPSList();
737  TComReferencePictureSet* rps;
738
739  for(UInt i=0; i< rpsList->getNumberOfReferencePictureSets(); i++)
740  {
741    rps = rpsList->getReferencePictureSet(i);
742    parseShortTermRefPicSet(pcSPS,rps,i);
743  }
744  READ_FLAG( uiCode, "long_term_ref_pics_present_flag" );          pcSPS->setLongTermRefsPresent(uiCode);
745  if (pcSPS->getLongTermRefsPresent())
746  {
747    READ_UVLC( uiCode, "num_long_term_ref_pic_sps" );
748    pcSPS->setNumLongTermRefPicSPS(uiCode);
749    for (UInt k = 0; k < pcSPS->getNumLongTermRefPicSPS(); k++)
750    {
751      READ_CODE( pcSPS->getBitsForPOC(), uiCode, "lt_ref_pic_poc_lsb_sps" );
752      pcSPS->setLtRefPicPocLsbSps(k, uiCode);
753      READ_FLAG( uiCode,  "used_by_curr_pic_lt_sps_flag[i]");
754      pcSPS->setUsedByCurrPicLtSPSFlag(k, uiCode?1:0);
755    }
756  }
757  READ_FLAG( uiCode, "sps_temporal_mvp_enable_flag" );            pcSPS->setTMVPFlagsPresent(uiCode);
758  READ_FLAG( uiCode, "sps_strong_intra_smoothing_enable_flag" );  pcSPS->setUseStrongIntraSmoothing(uiCode);
759
760  READ_FLAG( uiCode, "vui_parameters_present_flag" );             pcSPS->setVuiParametersPresentFlag(uiCode);
761
762  if (pcSPS->getVuiParametersPresentFlag())
763  {
764    parseVUI(pcSPS->getVuiParameters(), pcSPS);
765  }
766
767  READ_FLAG( uiCode, "sps_extension_flag");
768  if (uiCode)
769  {
770#if SPS_EXTENSION
[540]771
772#if O0142_CONDITIONAL_SPS_EXTENSION
773    UInt spsExtensionTypeFlag[8];
774    for (UInt i = 0; i < 8; i++)
775    {
776      READ_FLAG( spsExtensionTypeFlag[i], "sps_extension_type_flag" );
777    }
778    if (spsExtensionTypeFlag[1])
779    {
780      parseSPSExtension( pcSPS );
781    }
782    if (spsExtensionTypeFlag[7])
783    {
784#else
[313]785    parseSPSExtension( pcSPS );
786    READ_FLAG( uiCode, "sps_extension2_flag");
787    if(uiCode)
788    {
789#endif
[540]790
791#endif
[313]792      while ( xMoreRbspData() )
793      {
794        READ_FLAG( uiCode, "sps_extension_data_flag");
795      }
796#if SPS_EXTENSION
797    }
798#endif
799  }
800}
801
802#if SPS_EXTENSION
803Void TDecCavlc::parseSPSExtension( TComSPS* pcSPS )
804{
805  UInt uiCode;
806  // more syntax elements to be parsed here
[442]807
808  READ_FLAG( uiCode, "inter_view_mv_vert_constraint_flag" );
809  // Vertical MV component restriction is not used in SHVC CTC
810  assert( uiCode == 0 );
[588]811
[313]812  if( pcSPS->getLayerId() > 0 )
813  {
[494]814    Int iCode;
[313]815    READ_UVLC( uiCode,      "num_scaled_ref_layer_offsets" ); pcSPS->setNumScaledRefLayerOffsets(uiCode);
816    for(Int i = 0; i < pcSPS->getNumScaledRefLayerOffsets(); i++)
817    {
818      Window& scaledWindow = pcSPS->getScaledRefLayerWindow(i);
[540]819#if O0098_SCALED_REF_LAYER_ID
820      READ_CODE( 6,  uiCode,  "scaled_ref_layer_left_id" );  pcSPS->setScaledRefLayerId( i, uiCode );
821#endif
[313]822      READ_SVLC( iCode, "scaled_ref_layer_left_offset" );    scaledWindow.setWindowLeftOffset  (iCode << 1);
823      READ_SVLC( iCode, "scaled_ref_layer_top_offset" );     scaledWindow.setWindowTopOffset   (iCode << 1);
824      READ_SVLC( iCode, "scaled_ref_layer_right_offset" );   scaledWindow.setWindowRightOffset (iCode << 1);
825      READ_SVLC( iCode, "scaled_ref_layer_bottom_offset" );  scaledWindow.setWindowBottomOffset(iCode << 1);
826    }
827  }
828}
829#endif
830
831Void TDecCavlc::parseVPS(TComVPS* pcVPS)
832{
833  UInt  uiCode;
834
835  READ_CODE( 4,  uiCode,  "vps_video_parameter_set_id" );         pcVPS->setVPSId( uiCode );
836  READ_CODE( 2,  uiCode,  "vps_reserved_three_2bits" );           assert(uiCode == 3);
837#if VPS_RENAME
[547]838#if O0137_MAX_LAYERID
839  READ_CODE( 6,  uiCode,  "vps_max_layers_minus1" );              pcVPS->setMaxLayers( min( 62u, uiCode) + 1 );
[313]840#else
[547]841  READ_CODE( 6,  uiCode,  "vps_max_layers_minus1" );              pcVPS->setMaxLayers( uiCode + 1 );
842#endif
843#else
[313]844  READ_CODE( 6,  uiCode,  "vps_reserved_zero_6bits" );            assert(uiCode == 0);
845#endif
846  READ_CODE( 3,  uiCode,  "vps_max_sub_layers_minus1" );          pcVPS->setMaxTLayers( uiCode + 1 );
847  READ_FLAG(     uiCode,  "vps_temporal_id_nesting_flag" );       pcVPS->setTemporalNestingFlag( uiCode ? true:false );
848  assert (pcVPS->getMaxTLayers()>1||pcVPS->getTemporalNestingFlag());
[588]849#if !P0125_REVERT_VPS_EXTN_OFFSET_TO_RESERVED
[442]850#if VPS_EXTN_OFFSET
851  READ_CODE( 16, uiCode,  "vps_extension_offset" );               pcVPS->setExtensionOffset( uiCode );
852#else
[313]853  READ_CODE( 16, uiCode,  "vps_reserved_ffff_16bits" );           assert(uiCode == 0xffff);
[442]854#endif
[588]855#else
856  READ_CODE( 16, uiCode,  "vps_reserved_ffff_16bits" );           assert(uiCode == 0xffff);
857#endif
[313]858  parsePTL ( pcVPS->getPTL(), true, pcVPS->getMaxTLayers()-1);
859  UInt subLayerOrderingInfoPresentFlag;
860  READ_FLAG(subLayerOrderingInfoPresentFlag, "vps_sub_layer_ordering_info_present_flag");
861  for(UInt i = 0; i <= pcVPS->getMaxTLayers()-1; i++)
862  {
863    READ_UVLC( uiCode,  "vps_max_dec_pic_buffering_minus1[i]" );     pcVPS->setMaxDecPicBuffering( uiCode + 1, i );
864    READ_UVLC( uiCode,  "vps_num_reorder_pics[i]" );          pcVPS->setNumReorderPics( uiCode, i );
865    READ_UVLC( uiCode,  "vps_max_latency_increase_plus1[i]" );      pcVPS->setMaxLatencyIncrease( uiCode, i );
866
867    if (!subLayerOrderingInfoPresentFlag)
868    {
869      for (i++; i <= pcVPS->getMaxTLayers()-1; i++)
870      {
871        pcVPS->setMaxDecPicBuffering(pcVPS->getMaxDecPicBuffering(0), i);
872        pcVPS->setNumReorderPics(pcVPS->getNumReorderPics(0), i);
873        pcVPS->setMaxLatencyIncrease(pcVPS->getMaxLatencyIncrease(0), i);
874      }
875      break;
876    }
877  }
878
879#if VPS_RENAME
880  assert( pcVPS->getNumHrdParameters() < MAX_VPS_LAYER_SETS_PLUS1 );
881  assert( pcVPS->getMaxLayerId()       < MAX_VPS_LAYER_ID_PLUS1 );
882  READ_CODE( 6, uiCode, "vps_max_layer_id" );           pcVPS->setMaxLayerId( uiCode );
883  READ_UVLC(    uiCode, "vps_num_layer_sets_minus1" );  pcVPS->setNumLayerSets( uiCode + 1 );
884  for( UInt opsIdx = 1; opsIdx <= ( pcVPS->getNumLayerSets() - 1 ); opsIdx ++ )
885  {
886    // Operation point set
887    for( UInt i = 0; i <= pcVPS->getMaxLayerId(); i ++ )
888#else
889  assert( pcVPS->getNumHrdParameters() < MAX_VPS_OP_SETS_PLUS1 );
890  assert( pcVPS->getMaxNuhReservedZeroLayerId() < MAX_VPS_NUH_RESERVED_ZERO_LAYER_ID_PLUS1 );
891  READ_CODE( 6, uiCode, "vps_max_nuh_reserved_zero_layer_id" );   pcVPS->setMaxNuhReservedZeroLayerId( uiCode );
892  READ_UVLC(    uiCode, "vps_max_op_sets_minus1" );               pcVPS->setMaxOpSets( uiCode + 1 );
893  for( UInt opsIdx = 1; opsIdx <= ( pcVPS->getMaxOpSets() - 1 ); opsIdx ++ )
894  {
895    // Operation point set
896    for( UInt i = 0; i <= pcVPS->getMaxNuhReservedZeroLayerId(); i ++ )
897#endif
898    {
899      READ_FLAG( uiCode, "layer_id_included_flag[opsIdx][i]" );   pcVPS->setLayerIdIncludedFlag( uiCode == 1 ? true : false, opsIdx, i );
900    }
901  }
902#if DERIVE_LAYER_ID_LIST_VARIABLES
903  pcVPS->deriveLayerIdListVariables();
904#endif
905  TimingInfo *timingInfo = pcVPS->getTimingInfo();
906  READ_FLAG(       uiCode, "vps_timing_info_present_flag");         timingInfo->setTimingInfoPresentFlag      (uiCode ? true : false);
907  if(timingInfo->getTimingInfoPresentFlag())
908  {
909    READ_CODE( 32, uiCode, "vps_num_units_in_tick");                timingInfo->setNumUnitsInTick             (uiCode);
910    READ_CODE( 32, uiCode, "vps_time_scale");                       timingInfo->setTimeScale                  (uiCode);
911    READ_FLAG(     uiCode, "vps_poc_proportional_to_timing_flag");  timingInfo->setPocProportionalToTimingFlag(uiCode ? true : false);
912    if(timingInfo->getPocProportionalToTimingFlag())
913    {
914      READ_UVLC(   uiCode, "vps_num_ticks_poc_diff_one_minus1");    timingInfo->setNumTicksPocDiffOneMinus1   (uiCode);
915    }
916    READ_UVLC( uiCode, "vps_num_hrd_parameters" );                  pcVPS->setNumHrdParameters( uiCode );
917
918    if( pcVPS->getNumHrdParameters() > 0 )
919    {
920      pcVPS->createHrdParamBuffer();
921    }
922    for( UInt i = 0; i < pcVPS->getNumHrdParameters(); i ++ )
923    {
924      READ_UVLC( uiCode, "hrd_op_set_idx" );                       pcVPS->setHrdOpSetIdx( uiCode, i );
925      if( i > 0 )
926      {
927        READ_FLAG( uiCode, "cprms_present_flag[i]" );               pcVPS->setCprmsPresentFlag( uiCode == 1 ? true : false, i );
928      }
929      parseHrdParameters(pcVPS->getHrdParameters(i), pcVPS->getCprmsPresentFlag( i ), pcVPS->getMaxTLayers() - 1);
930    }
931  }
932  READ_FLAG( uiCode,  "vps_extension_flag" );
933  if (uiCode)
934  {
935#if VPS_EXTNS
[442]936    while ( m_pcBitstream->getNumBitsRead() % 8 != 0 )
937    {
938      READ_FLAG( uiCode, "vps_extension_alignment_bit_equal_to_one"); assert(uiCode == 1);
939    }
[313]940    parseVPSExtension(pcVPS);
941    READ_FLAG( uiCode, "vps_entension2_flag" );
942    if(uiCode)
943    {
944      while ( xMoreRbspData() )
945      {
946        READ_FLAG( uiCode, "vps_extension_data_flag");
947      }
948    }
949#else
950    while ( xMoreRbspData() )
951    {
952      READ_FLAG( uiCode, "vps_extension_data_flag");
953    }
954#endif
955  }
956
957  return;
958}
959
[494]960#if SVC_EXTENSION
[313]961#if VPS_EXTNS
962Void TDecCavlc::parseVPSExtension(TComVPS *vps)
963{
964  UInt uiCode;
965  // ... More syntax elements to be parsed here
966#if VPS_EXTN_MASK_AND_DIM_INFO
967  UInt numScalabilityTypes = 0, i = 0, j = 0;
968
969  READ_FLAG( uiCode, "avc_base_layer_flag" ); vps->setAvcBaseLayerFlag(uiCode ? true : false);
[547]970
[588]971#if !P0307_REMOVE_VPS_VUI_OFFSET
[547]972#if O0109_MOVE_VPS_VUI_FLAG
973  READ_FLAG( uiCode, "vps_vui_present_flag"); vps->setVpsVuiPresentFlag(uiCode ? true : false);
974  if ( uiCode )
975  {
976#endif
977#if VPS_VUI_OFFSET
978  READ_CODE( 16, uiCode, "vps_vui_offset" );  vps->setVpsVuiOffset( uiCode );
979#endif
980#if O0109_MOVE_VPS_VUI_FLAG
981  }
982#endif
[588]983#endif
[313]984  READ_FLAG( uiCode, "splitting_flag" ); vps->setSplittingFlag(uiCode ? true : false);
985
986  for(i = 0; i < MAX_VPS_NUM_SCALABILITY_TYPES; i++)
987  {
988    READ_FLAG( uiCode, "scalability_mask[i]" ); vps->setScalabilityMask(i, uiCode ? true : false);
989    numScalabilityTypes += uiCode;
990  }
991  vps->setNumScalabilityTypes(numScalabilityTypes);
992
993  for(j = 0; j < numScalabilityTypes - vps->getSplittingFlag(); j++)
994  {
995    READ_CODE( 3, uiCode, "dimension_id_len_minus1[j]" ); vps->setDimensionIdLen(j, uiCode + 1);
996  }
[494]997
[313]998  if(vps->getSplittingFlag())
999  {
1000    UInt numBits = 0;
1001    for(j = 0; j < numScalabilityTypes - 1; j++)
1002    {
1003      numBits += vps->getDimensionIdLen(j);
1004    }
1005    assert( numBits < 6 );
1006    vps->setDimensionIdLen(numScalabilityTypes-1, 6 - numBits);
1007    numBits = 6;
1008  }
1009
1010  READ_FLAG( uiCode, "vps_nuh_layer_id_present_flag" ); vps->setNuhLayerIdPresentFlag(uiCode ? true : false);
1011  vps->setLayerIdInNuh(0, 0);
1012  vps->setLayerIdInVps(0, 0);
1013  for(i = 1; i < vps->getMaxLayers(); i++)
1014  {
1015    if( vps->getNuhLayerIdPresentFlag() )
1016    {
1017      READ_CODE( 6, uiCode, "layer_id_in_nuh[i]" ); vps->setLayerIdInNuh(i, uiCode);
1018      assert( uiCode > vps->getLayerIdInNuh(i-1) );
1019    }
1020    else
1021    {
1022      vps->setLayerIdInNuh(i, i);
1023    }
1024    vps->setLayerIdInVps(vps->getLayerIdInNuh(i), i);
1025
[494]1026    if( !vps->getSplittingFlag() )
1027    {
[313]1028    for(j = 0; j < numScalabilityTypes; j++)
1029    {
1030      READ_CODE( vps->getDimensionIdLen(j), uiCode, "dimension_id[i][j]" ); vps->setDimensionId(i, j, uiCode);
[494]1031#if !AUXILIARY_PICTURES
[313]1032      assert( uiCode <= vps->getMaxLayerId() );
[494]1033#endif
[313]1034    }
1035  }
[494]1036  }
[313]1037#endif
[494]1038#if VIEW_ID_RELATED_SIGNALING
1039  // if ( pcVPS->getNumViews() > 1 )
1040  //   However, this is a bug in the text since, view_id_len_minus1 is needed to parse view_id_val.
[442]1041  {
[547]1042#if O0109_VIEW_ID_LEN
1043    READ_CODE( 4, uiCode, "view_id_len" ); vps->setViewIdLen( uiCode );
1044#else
[442]1045    READ_CODE( 4, uiCode, "view_id_len_minus1" ); vps->setViewIdLenMinus1( uiCode );
[547]1046#endif
[442]1047  }
1048
[547]1049#if O0109_VIEW_ID_LEN
1050  if ( vps->getViewIdLen() > 0 )
1051  {
1052    for(  i = 0; i < vps->getNumViews(); i++ )
1053    {
1054      READ_CODE( vps->getViewIdLen( ), uiCode, "view_id_val[i]" ); vps->setViewIdVal( i, uiCode );
1055    }
1056  }
1057#else
[442]1058  for(  i = 0; i < vps->getNumViews(); i++ )
1059  {
1060    READ_CODE( vps->getViewIdLenMinus1( ) + 1, uiCode, "view_id_val[i]" ); vps->setViewIdVal( i, uiCode );
1061  }
1062#endif
[547]1063#endif // view id related signaling
[313]1064#if VPS_EXTN_DIRECT_REF_LAYERS
1065  // For layer 0
1066  vps->setNumDirectRefLayers(0, 0);
1067  // For other layers
1068  for( Int layerCtr = 1; layerCtr <= vps->getMaxLayers() - 1; layerCtr++)
1069  {
1070    UInt numDirectRefLayers = 0;
1071    for( Int refLayerCtr = 0; refLayerCtr < layerCtr; refLayerCtr++)
1072    {
1073      READ_FLAG(uiCode, "direct_dependency_flag[i][j]" ); vps->setDirectDependencyFlag(layerCtr, refLayerCtr, uiCode? true : false);
1074      if(uiCode)
1075      {
1076        vps->setRefLayerId(layerCtr, numDirectRefLayers, refLayerCtr);
1077        numDirectRefLayers++;
1078      }
1079    }
1080    vps->setNumDirectRefLayers(layerCtr, numDirectRefLayers);
1081  }
1082#endif
[540]1083#if VPS_TSLAYERS
1084    READ_FLAG( uiCode, "vps_sub_layers_max_minus1_present_flag"); vps->setMaxTSLayersPresentFlag(uiCode ? true : false);
1085    if (vps->getMaxTSLayersPresentFlag())
1086    {
1087        for(i = 0; i < vps->getMaxLayers() - 1; i++)
1088        {
1089            READ_CODE( 3, uiCode, "sub_layers_vps_max_minus1[i]" ); vps->setMaxTSLayersMinus1(i, uiCode);
1090        }
1091    }
1092    else
1093    {
1094        for( i = 0; i < vps->getMaxLayers() - 1; i++)
1095        {
1096            vps->setMaxTSLayersMinus1(i, vps->getMaxTLayers()-1);
1097        }
1098    }
1099#endif
[345]1100#if N0120_MAX_TID_REF_PRESENT_FLAG
[442]1101  READ_FLAG( uiCode, "max_tid_ref_present_flag"); vps->setMaxTidRefPresentFlag(uiCode ? true : false);
1102  if (vps->getMaxTidRefPresentFlag())
[345]1103  {
1104    for(i = 0; i < vps->getMaxLayers() - 1; i++)
1105    {
[494]1106#if O0225_MAX_TID_FOR_REF_LAYERS
1107       for( j = i+1; j <= vps->getMaxLayers() - 1; j++)
1108       {
1109         if(vps->getDirectDependencyFlag(j, i))
1110         {
1111           READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i][j]" ); vps->setMaxTidIlRefPicsPlus1(i, j, uiCode);
1112           assert( uiCode <= vps->getMaxTLayers());
1113         }
1114       }
1115#else
[442]1116      READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i]" ); vps->setMaxTidIlRefPicsPlus1(i, uiCode);
1117#if N0120_MAX_TID_REF_CFG
1118      assert( uiCode <= vps->getMaxTLayers());
[494]1119#else
[442]1120      assert( uiCode <= vps->getMaxTLayers()+ 1 );
[494]1121#endif
[442]1122#endif
[345]1123    }
1124  }
[494]1125  else
[345]1126  {
1127    for(i = 0; i < vps->getMaxLayers() - 1; i++)
1128    {
[494]1129#if O0225_MAX_TID_FOR_REF_LAYERS
1130       for( j = i+1; j <= vps->getMaxLayers() - 1; j++)
1131       {
1132          vps->setMaxTidIlRefPicsPlus1(i, j, 7);
1133       }
1134#else
[442]1135      vps->setMaxTidIlRefPicsPlus1(i, 7);
[494]1136#endif
[345]1137    }
1138  }
1139#else
[313]1140  for(i = 0; i < vps->getMaxLayers() - 1; i++)
1141  {
[494]1142#if O0225_MAX_TID_FOR_REF_LAYERS
1143       for( j = i+1; j <= vps->getMaxLayers() - 1; j++)
1144       {
1145         if(vps->getDirectDependencyFlag(j, i))
1146         {
1147           READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i][j]" ); vps->setMaxTidIlRefPicsPlus1(i, j, uiCode);
1148           assert( uiCode <= vps->getMaxTLayers() );
1149         }
1150       }
1151#else
[442]1152    READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i]" ); vps->setMaxTidIlRefPicsPlus1(i, uiCode);
[313]1153    assert( uiCode <= vps->getMaxTLayers() );
[494]1154#endif   
[313]1155  }
1156#endif
[345]1157#if ILP_SSH_SIG
1158    READ_FLAG( uiCode, "all_ref_layers_active_flag" ); vps->setIlpSshSignalingEnabledFlag(uiCode ? true : false);
1159#endif
[313]1160#if VPS_EXTN_PROFILE_INFO
1161  // Profile-tier-level signalling
[588]1162#if !VPS_EXTN_UEV_CODING
[313]1163  READ_CODE( 10, uiCode, "vps_number_layer_sets_minus1" );     assert( uiCode == (vps->getNumLayerSets() - 1) );
1164  READ_CODE(  6, uiCode, "vps_num_profile_tier_level_minus1"); vps->setNumProfileTierLevel( uiCode + 1 );
[588]1165#else
1166  READ_UVLC(  uiCode, "vps_num_profile_tier_level_minus1"); vps->setNumProfileTierLevel( uiCode + 1 );
1167#endif
[313]1168  vps->getPTLForExtnPtr()->resize(vps->getNumProfileTierLevel());
1169  for(Int idx = 1; idx <= vps->getNumProfileTierLevel() - 1; idx++)
1170  {
1171    READ_FLAG( uiCode, "vps_profile_present_flag[i]" ); vps->setProfilePresentFlag(idx, uiCode ? true : false);
1172    if( !vps->getProfilePresentFlag(idx) )
1173    {
[588]1174#if P0048_REMOVE_PROFILE_REF
1175      // Copy profile information from previous one
1176      vps->getPTLForExtn(idx)->copyProfileInfo( (idx==1) ? vps->getPTL() : vps->getPTLForExtn( idx - 1 ) );
1177#else
[313]1178      READ_CODE( 6, uiCode, "profile_ref_minus1[i]" ); vps->setProfileLayerSetRef(idx, uiCode + 1);
[547]1179#if O0109_PROF_REF_MINUS1
1180      assert( vps->getProfileLayerSetRef(idx) <= idx );
1181#else
[313]1182      assert( vps->getProfileLayerSetRef(idx) < idx );
[547]1183#endif
[313]1184      // Copy profile information as indicated
1185      vps->getPTLForExtn(idx)->copyProfileInfo( vps->getPTLForExtn( vps->getProfileLayerSetRef(idx) ) );
[588]1186#endif
[313]1187    }
1188    parsePTL( vps->getPTLForExtn(idx), vps->getProfilePresentFlag(idx), vps->getMaxTLayers() - 1 );
1189  }
1190#endif
1191
[588]1192#if !VPS_EXTN_UEV_CODING
[313]1193  READ_FLAG( uiCode, "more_output_layer_sets_than_default_flag" ); vps->setMoreOutputLayerSetsThanDefaultFlag( uiCode ? true : false );
1194  Int numOutputLayerSets = 0;
1195  if(! vps->getMoreOutputLayerSetsThanDefaultFlag() )
1196  {
1197    numOutputLayerSets = vps->getNumLayerSets();
1198  }
1199  else
1200  {
1201    READ_CODE( 10, uiCode, "num_add_output_layer_sets" );          vps->setNumAddOutputLayerSets( uiCode );
1202    numOutputLayerSets = vps->getNumLayerSets() + vps->getNumAddOutputLayerSets();
1203  }
[588]1204#else
1205  READ_UVLC( uiCode, "num_add_output_layer_sets" );          vps->setNumAddOutputLayerSets( uiCode );
1206  Int numOutputLayerSets = vps->getNumLayerSets() + vps->getNumAddOutputLayerSets();
1207#endif
1208
1209#if P0295_DEFAULT_OUT_LAYER_IDC
[313]1210  if( numOutputLayerSets > 1 )
1211  {
[588]1212    READ_CODE( 2, uiCode, "default_target_output_layer_idc" );   vps->setDefaultTargetOutputLayerIdc( uiCode );
1213  }
1214  vps->setNumOutputLayerSets( numOutputLayerSets );
1215
1216  for(i = 1; i < numOutputLayerSets; i++)
1217  {
1218    if( i > (vps->getNumLayerSets() - 1) )
1219    {
1220      Int numBits = 1;
1221      while ((1 << numBits) < (vps->getNumLayerSets() - 1))
1222      {
1223        numBits++;
1224      }
1225      READ_CODE( numBits, uiCode, "output_layer_set_idx_minus1");   vps->setOutputLayerSetIdx( i, uiCode + 1);
1226    }
1227    else
1228    {
1229      vps->setOutputLayerSetIdx( i, i );
1230    }
1231    if ( i > (vps->getNumLayerSets() - 1) || vps->getDefaultTargetOutputLayerIdc() >= 2 )
1232    {
1233      Int lsIdx = vps->getOutputLayerSetIdx(i);
1234      for(j = 0; j < vps->getNumLayersInIdList(lsIdx) - 1; j++)
1235      {
1236        READ_FLAG( uiCode, "output_layer_flag[i][j]"); vps->setOutputLayerFlag(i, j, uiCode);
1237      }
1238    }
1239    else
1240    {
1241      // i <= (vps->getNumLayerSets() - 1)
1242      // Assign OutputLayerFlag depending on default_one_target_output_layer_flag
1243      Int lsIdx = i;
1244      if( vps->getDefaultTargetOutputLayerIdc() == 1 )
1245      {
1246        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1247        {
1248          vps->setOutputLayerFlag(i, j, (j == (vps->getNumLayersInIdList(lsIdx)-1)) && (vps->getDimensionId(j,1) == 0) );
1249        }
1250      }
1251      else if ( vps->getDefaultTargetOutputLayerIdc() == 0 )
1252      {
1253        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1254        {
1255          vps->setOutputLayerFlag(i, j, 1);
1256        }
1257      }
1258    }
1259    Int numBits = 1;
1260    while ((1 << numBits) < (vps->getNumProfileTierLevel()))
1261    {
1262      numBits++;
1263    }
1264    READ_CODE( numBits, uiCode, "profile_level_tier_idx[i]" );     vps->setProfileLevelTierIdx(i, uiCode);
1265  }
1266#else
1267  if( numOutputLayerSets > 1 )
1268  {
[547]1269#if O0109_DEFAULT_ONE_OUT_LAYER_IDC
1270    READ_CODE( 2, uiCode, "default_one_target_output_layer_idc" );   vps->setDefaultOneTargetOutputLayerIdc( uiCode );
1271#else
[313]1272    READ_FLAG( uiCode, "default_one_target_output_layer_flag" );   vps->setDefaultOneTargetOutputLayerFlag( uiCode ? true : false );
[547]1273#endif
[313]1274  }
1275  vps->setNumOutputLayerSets( numOutputLayerSets );
1276
1277  for(i = 1; i < numOutputLayerSets; i++)
1278  {
1279    if( i > (vps->getNumLayerSets() - 1) )
1280    {
1281      Int numBits = 1;
1282      while ((1 << numBits) < (vps->getNumLayerSets() - 1))
1283      {
1284        numBits++;
1285      }
1286      READ_CODE( numBits, uiCode, "output_layer_set_idx_minus1");   vps->setOutputLayerSetIdx( i, uiCode + 1);
1287      Int lsIdx = vps->getOutputLayerSetIdx(i);
1288      for(j = 0; j < vps->getNumLayersInIdList(lsIdx) - 1; j++)
1289      {
1290        READ_FLAG( uiCode, "output_layer_flag[i][j]"); vps->setOutputLayerFlag(i, j, uiCode);
1291      }
1292    }
1293    else
1294    {
[540]1295#if VPS_DPB_SIZE_TABLE
1296      vps->setOutputLayerSetIdx( i, i );
1297#endif
[313]1298      // i <= (vps->getNumLayerSets() - 1)
1299      // Assign OutputLayerFlag depending on default_one_target_output_layer_flag
1300      Int lsIdx = i;
[547]1301#if O0109_DEFAULT_ONE_OUT_LAYER_IDC
1302      if( vps->getDefaultOneTargetOutputLayerIdc() == 1 )
1303      {
1304        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1305        {
1306#if O0135_DEFAULT_ONE_OUT_SEMANTIC
1307          vps->setOutputLayerFlag(i, j, (j == (vps->getNumLayersInIdList(lsIdx)-1)) && (vps->getDimensionId(j,1)==0) );
1308#else
1309          vps->setOutputLayerFlag(i, j, (j == (vps->getNumLayersInIdList(lsIdx)-1)));
1310#endif
1311        }
1312      }
1313      else if ( vps->getDefaultOneTargetOutputLayerIdc() == 0 )
1314      {
1315        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1316        {
1317          vps->setOutputLayerFlag(i, j, 1);
1318        }
1319      }
1320      else
1321      {
1322        // Other values of default_one_target_output_layer_idc than 0 and 1 are reserved for future use.
1323      }
1324#else
[313]1325      if( vps->getDefaultOneTargetOutputLayerFlag() )
1326      {
1327        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1328        {
1329          vps->setOutputLayerFlag(i, j, (j == (vps->getNumLayersInIdList(lsIdx)-1)));
1330        }
1331      }
1332      else
1333      {
1334        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1335        {
1336          vps->setOutputLayerFlag(i, j, 1);
1337        }
1338      }
[547]1339#endif
[313]1340    }
1341    Int numBits = 1;
1342    while ((1 << numBits) < (vps->getNumProfileTierLevel()))
1343    {
1344      numBits++;
1345    }
1346    READ_CODE( numBits, uiCode, "profile_level_tier_idx[i]" );     vps->setProfileLevelTierIdx(i, uiCode);
1347  }
[588]1348#endif
[494]1349
[540]1350#if O0153_ALT_OUTPUT_LAYER_FLAG
1351  if( vps->getMaxLayers() > 1 )
1352  {
1353    READ_FLAG( uiCode, "alt_output_layer_flag");
1354    vps->setAltOuputLayerFlag( uiCode ? true : false );
1355  }
1356#endif
1357
[442]1358#if REPN_FORMAT_IN_VPS
[494]1359  READ_FLAG( uiCode, "rep_format_idx_present_flag");
[442]1360  vps->setRepFormatIdxPresentFlag( uiCode ? true : false );
1361
1362  if( vps->getRepFormatIdxPresentFlag() )
1363  {
[540]1364#if O0096_REP_FORMAT_INDEX
[588]1365#if !VPS_EXTN_UEV_CODING
[540]1366    READ_CODE( 8, uiCode, "vps_num_rep_formats_minus1" );
1367#else
[588]1368    READ_UVLC( uiCode, "vps_num_rep_formats_minus1" );
1369#endif
1370#else
[442]1371    READ_CODE( 4, uiCode, "vps_num_rep_formats_minus1" );
[540]1372#endif
[442]1373    vps->setVpsNumRepFormats( uiCode + 1 );
1374  }
1375  else
1376  {
1377    // default assignment
1378    assert (vps->getMaxLayers() <= 16);       // If max_layers_is more than 15, num_rep_formats has to be signaled
1379    vps->setVpsNumRepFormats( vps->getMaxLayers() );
1380  }
1381  for(i = 0; i < vps->getVpsNumRepFormats(); i++)
1382  {
1383    // Read rep_format_structures
1384    parseRepFormat( vps->getVpsRepFormat(i) );
1385  }
[494]1386
[442]1387  // Default assignment for layer 0
1388  vps->setVpsRepFormatIdx( 0, 0 );
1389  if( vps->getRepFormatIdxPresentFlag() )
1390  {
1391    for(i = 1; i < vps->getMaxLayers(); i++)
1392    {
1393      if( vps->getVpsNumRepFormats() > 1 )
1394      {
[540]1395#if O0096_REP_FORMAT_INDEX
[588]1396#if !VPS_EXTN_UEV_CODING
[540]1397        READ_CODE( 8, uiCode, "vps_rep_format_idx[i]" );
1398#else
[588]1399        Int numBits = 1;
1400        while ((1 << numBits) < (vps->getVpsNumRepFormats()))
1401        {
1402          numBits++;
1403        }
1404        READ_CODE( numBits, uiCode, "vps_rep_format_idx[i]" );
1405#endif
1406#else
[442]1407        READ_CODE( 4, uiCode, "vps_rep_format_idx[i]" );
[540]1408#endif
[442]1409        vps->setVpsRepFormatIdx( i, uiCode );
1410      }
1411      else
1412      {
1413        // default assignment - only one rep_format() structure
1414        vps->setVpsRepFormatIdx( i, 0 );
1415      }
1416    }
1417  }
1418  else
1419  {
1420    // default assignment - each layer assigned each rep_format() structure in the order signaled
1421    for(i = 1; i < vps->getMaxLayers(); i++)
1422    {
1423      vps->setVpsRepFormatIdx( i, i );
1424    }
1425  }
1426#endif
[588]1427#if RESOLUTION_BASED_DPB
1428  vps->assignSubDpbIndices();
1429#endif
[442]1430  READ_FLAG(uiCode, "max_one_active_ref_layer_flag" );
1431  vps->setMaxOneActiveRefLayerFlag(uiCode);
[494]1432#if O0062_POC_LSB_NOT_PRESENT_FLAG
1433  for(i = 1; i< vps->getMaxLayers(); i++)
[313]1434  {
[494]1435    if( vps->getNumDirectRefLayers( vps->getLayerIdInNuh(i) ) == 0  )
[313]1436    {
[494]1437      READ_FLAG(uiCode, "poc_lsb_not_present_flag[i]");
1438      vps->setPocLsbNotPresentFlag(i, uiCode);
[313]1439    }
1440  }
1441#endif
[494]1442#if O0215_PHASE_ALIGNMENT
1443  READ_FLAG( uiCode, "cross_layer_phase_alignment_flag"); vps->setPhaseAlignFlag( uiCode == 1 ? true : false );
[313]1444#endif
[494]1445
1446#if N0147_IRAP_ALIGN_FLAG && !IRAP_ALIGN_FLAG_IN_VPS_VUI
1447  READ_FLAG(uiCode, "cross_layer_irap_aligned_flag" );
1448  vps->setCrossLayerIrapAlignFlag(uiCode);
1449#endif
1450
[540]1451#if VPS_DPB_SIZE_TABLE
[588]1452  parseVpsDpbSizeTable(vps);
[540]1453#endif
[588]1454
1455#if VPS_EXTN_DIRECT_REF_LAYERS
[313]1456  READ_UVLC( uiCode,           "direct_dep_type_len_minus2"); vps->setDirectDepTypeLen(uiCode+2);
[540]1457#if O0096_DEFAULT_DEPENDENCY_TYPE
1458  READ_FLAG(uiCode, "default_direct_dependency_type_flag"); 
1459  vps->setDefaultDirectDependecyTypeFlag(uiCode == 1? true : false);
1460  if (vps->getDefaultDirectDependencyTypeFlag())
1461  {
1462    READ_CODE( vps->getDirectDepTypeLen(), uiCode, "default_direct_dependency_type" ); 
1463    vps->setDefaultDirectDependecyType(uiCode);
1464  }
1465#endif
[313]1466  for(i = 1; i < vps->getMaxLayers(); i++)
1467  {
1468    for(j = 0; j < i; j++)
1469    {
1470      if (vps->getDirectDependencyFlag(i, j))
1471      {
[540]1472#if O0096_DEFAULT_DEPENDENCY_TYPE
1473        if (vps->getDefaultDirectDependencyTypeFlag())
1474        {
1475          vps->setDirectDependencyType(i, j, vps->getDefaultDirectDependencyType());
1476        }
1477        else
1478        {
1479          READ_CODE( vps->getDirectDepTypeLen(), uiCode, "direct_dependency_type[i][j]" ); 
1480          vps->setDirectDependencyType(i, j, uiCode);
1481        }
1482#else
1483        READ_CODE( vps->getDirectDepTypeLen(), uiCode, "direct_dependency_type[i][j]" ); 
1484        vps->setDirectDependencyType(i, j, uiCode);
1485#endif
[313]1486      }
1487    }
1488  }
1489#endif
[540]1490#if O0092_0094_DEPENDENCY_CONSTRAINT
[442]1491  for(i = 1; i < vps->getMaxLayers(); i++)
[540]1492  {
1493    vps->setNumRefLayers(vps->getLayerIdInNuh(i));   // identify the number of direct and indirect reference layers of current layer and set recursiveRefLayersFlags
1494  }
1495  if(vps->getMaxLayers() > MAX_REF_LAYERS)
1496  {
1497    for(i = 1;i < vps->getMaxLayers(); i++)
[442]1498    {
[540]1499      assert( vps->getNumRefLayers(vps->getLayerIdInNuh(i)) <= MAX_REF_LAYERS);
[442]1500    }
[540]1501  }
[442]1502#endif
1503
[588]1504#if P0307_VPS_NON_VUI_EXTENSION
1505  READ_UVLC( uiCode,           "vps_non_vui_extension_length"); vps->setVpsNonVuiExtLength((Int)uiCode);
1506  if ( vps->getVpsNonVuiExtLength() > 0 )
1507  {
1508    printf("\n\nUp to the current spec, the value of vps_non_vui_extension_length is supposed to be 0\n");
1509  }
1510#endif
1511
[547]1512#if !O0109_O0199_FLAGS_TO_VUI
[313]1513#if M0040_ADAPTIVE_RESOLUTION_CHANGE
1514  READ_FLAG(uiCode, "single_layer_for_non_irap_flag" ); vps->setSingleLayerForNonIrapFlag(uiCode == 1 ? true : false);
1515#endif
[540]1516#if HIGHER_LAYER_IRAP_SKIP_FLAG
1517  READ_FLAG(uiCode, "higher_layer_irap_skip_flag" ); vps->setHigherLayerIrapSkipFlag(uiCode == 1 ? true : false);
1518#endif
[547]1519#endif
[442]1520
[588]1521#if P0307_REMOVE_VPS_VUI_OFFSET
1522  READ_FLAG( uiCode, "vps_vui_present_flag"); vps->setVpsVuiPresentFlag(uiCode ? true : false);
1523#endif
1524
[547]1525#if O0109_MOVE_VPS_VUI_FLAG
1526  if ( vps->getVpsVuiPresentFlag() )
1527#else
[442]1528  READ_FLAG( uiCode,  "vps_vui_present_flag" );
1529  if (uiCode)
[547]1530#endif
[442]1531  {
1532#if VPS_VUI
1533    while ( m_pcBitstream->getNumBitsRead() % 8 != 0 )
1534    {
1535      READ_FLAG( uiCode, "vps_vui_alignment_bit_equal_to_one"); assert(uiCode == 1);
1536    }
1537    parseVPSVUI(vps);
[494]1538#endif
[442]1539  }
[313]1540}
1541#endif
[442]1542#if REPN_FORMAT_IN_VPS
1543Void  TDecCavlc::parseRepFormat      ( RepFormat *repFormat )
1544{
1545  UInt uiCode;
[540]1546#if REPN_FORMAT_CONTROL_FLAG
1547  READ_FLAG ( uiCode, "chroma_and_bit_depth_vps_present_flag");   repFormat->setChromaAndBitDepthVpsPresentFlag(uiCode ? true : false); 
1548  READ_CODE ( 16, uiCode, "pic_width_in_luma_samples" );          repFormat->setPicWidthVpsInLumaSamples ( uiCode );
1549  READ_CODE ( 16, uiCode, "pic_height_in_luma_samples" );         repFormat->setPicHeightVpsInLumaSamples( uiCode );
1550
1551  if( repFormat->getChromaAndBitDepthVpsPresentFlag() )
1552  {
[494]1553#if AUXILIARY_PICTURES
[540]1554    READ_CODE( 2, uiCode, "chroma_format_idc" );               repFormat->setChromaFormatVpsIdc( ChromaFormat(uiCode) );
1555#else
1556    READ_CODE( 2, uiCode, "chroma_format_idc" );               repFormat->setChromaFormatVpsIdc( uiCode );
1557#endif
1558
1559    if( repFormat->getChromaFormatVpsIdc() == 3 )
1560    {
1561      READ_FLAG( uiCode, "separate_colour_plane_flag");        repFormat->setSeparateColourPlaneVpsFlag(uiCode ? true : false);
1562    }
1563
1564
1565    READ_CODE( 4, uiCode, "bit_depth_luma_minus8" );           repFormat->setBitDepthVpsLuma  ( uiCode + 8 );
1566    READ_CODE( 4, uiCode, "bit_depth_chroma_minus8" );         repFormat->setBitDepthVpsChroma( uiCode + 8 );
1567  }
1568#else
1569#if AUXILIARY_PICTURES
[494]1570  READ_CODE( 2, uiCode, "chroma_format_idc" );               repFormat->setChromaFormatVpsIdc( ChromaFormat(uiCode) );
1571#else
[442]1572  READ_CODE( 2, uiCode, "chroma_format_idc" );               repFormat->setChromaFormatVpsIdc( uiCode );
[494]1573#endif
[442]1574 
1575  if( repFormat->getChromaFormatVpsIdc() == 3 )
1576  {
1577    READ_FLAG( uiCode, "separate_colour_plane_flag");        repFormat->setSeparateColourPlaneVpsFlag(uiCode ? true : false);
1578  }
[313]1579
[442]1580  READ_CODE ( 16, uiCode, "pic_width_in_luma_samples" );     repFormat->setPicWidthVpsInLumaSamples ( uiCode );
1581  READ_CODE ( 16, uiCode, "pic_height_in_luma_samples" );    repFormat->setPicHeightVpsInLumaSamples( uiCode );
[494]1582
[442]1583  READ_CODE( 4, uiCode, "bit_depth_luma_minus8" );           repFormat->setBitDepthVpsLuma  ( uiCode + 8 );
1584  READ_CODE( 4, uiCode, "bit_depth_chroma_minus8" );         repFormat->setBitDepthVpsChroma( uiCode + 8 );
[540]1585#endif
[442]1586}
1587#endif
[588]1588#if VPS_DPB_SIZE_TABLE
1589Void TDecCavlc::parseVpsDpbSizeTable( TComVPS *vps )
1590{
1591  UInt uiCode;
1592#if !RESOLUTION_BASED_DPB
1593  vps->deriveNumberOfSubDpbs();
1594#endif
1595  for(Int i = 1; i < vps->getNumOutputLayerSets(); i++)
1596  {
1597#if CHANGE_NUMSUBDPB_IDX
1598    Int layerSetIdxForOutputLayerSet = vps->getOutputLayerSetIdx( i );
1599#endif
1600    READ_FLAG( uiCode, "sub_layer_flag_info_present_flag[i]");  vps->setSubLayerFlagInfoPresentFlag( i, uiCode ? true : false );
1601    for(Int j = 0; j < vps->getMaxTLayers(); j++)
1602    {
1603      if( j > 0 && vps->getSubLayerFlagInfoPresentFlag(i) )
1604      {
1605        READ_FLAG( uiCode, "sub_layer_dpb_info_present_flag[i]");  vps->setSubLayerDpbInfoPresentFlag( i, j, uiCode ? true : false);
1606      }
1607      else
1608      {
1609        if( j == 0 )  // Always signal for the first sub-layer
1610        {
1611          vps->setSubLayerDpbInfoPresentFlag( i, j, true );
1612        }
1613        else // if (j != 0) && !vps->getSubLayerFlagInfoPresentFlag(i)
1614        {
1615          vps->setSubLayerDpbInfoPresentFlag( i, j, false );
1616        }
1617      }
1618      if( vps->getSubLayerDpbInfoPresentFlag(i, j) )  // If sub-layer DPB information is present
1619      {
1620#if CHANGE_NUMSUBDPB_IDX
1621        for(Int k = 0; k < vps->getNumSubDpbs(layerSetIdxForOutputLayerSet); k++)
1622#else
1623        for(Int k = 0; k < vps->getNumSubDpbs(i); k++)
1624#endif
1625        {
1626          READ_UVLC( uiCode, "max_vps_dec_pic_buffering_minus1[i][k][j]" ); vps->setMaxVpsDecPicBufferingMinus1( i, k, j, uiCode );
1627        }
1628        READ_UVLC( uiCode, "max_vps_num_reorder_pics[i][j]" );              vps->setMaxVpsNumReorderPics( i, j, uiCode);
1629#if RESOLUTION_BASED_DPB
1630        if( vps->getNumSubDpbs(layerSetIdxForOutputLayerSet) != vps->getNumLayersInIdList( layerSetIdxForOutputLayerSet ) ) 
1631        {
1632          for(Int k = 0; k < vps->getNumLayersInIdList( layerSetIdxForOutputLayerSet ); k++)
1633          {
1634            READ_UVLC( uiCode, "max_vps_layer_dec_pic_buff_minus1[i][k][j]" ); vps->setMaxVpsLayerDecPicBuffMinus1( i, k, j, uiCode);
1635          }
1636        }
1637        else  // vps->getNumSubDpbs(layerSetIdxForOutputLayerSet) == vps->getNumLayersInIdList( layerSetIdxForOutputLayerSet )
1638        {         
1639          for(Int k = 0; k < vps->getNumLayersInIdList( layerSetIdxForOutputLayerSet ); k++)
1640          {
1641            vps->setMaxVpsLayerDecPicBuffMinus1( i, k, j, vps->getMaxVpsDecPicBufferingMinus1( i, k, j));
1642          }
1643        }
1644#endif
1645        READ_UVLC( uiCode, "max_vps_latency_increase_plus1[i][j]" );        vps->setMaxVpsLatencyIncreasePlus1( i, j, uiCode);
1646      }
1647    }
1648  }
1649}
1650#endif
[442]1651#if VPS_VUI
1652Void TDecCavlc::parseVPSVUI(TComVPS *vps)
1653{
1654  UInt i,j;
1655  UInt uiCode;
[540]1656#if O0223_PICTURE_TYPES_ALIGN_FLAG
1657  READ_FLAG(uiCode, "cross_layer_pic_type_aligned_flag" );
1658  vps->setCrossLayerPictureTypeAlignFlag(uiCode);
1659  if (!uiCode) 
1660  {
1661#endif
[494]1662#if IRAP_ALIGN_FLAG_IN_VPS_VUI
[540]1663    READ_FLAG(uiCode, "cross_layer_irap_aligned_flag" );
1664    vps->setCrossLayerIrapAlignFlag(uiCode);
[494]1665#endif
[540]1666#if O0223_PICTURE_TYPES_ALIGN_FLAG
1667  }
1668  else
1669  {
1670    vps->setCrossLayerIrapAlignFlag(true);
1671  }
1672#endif
[442]1673#if VPS_VUI_BITRATE_PICRATE
1674  READ_FLAG( uiCode,        "bit_rate_present_vps_flag" );  vps->setBitRatePresentVpsFlag( uiCode ? true : false );
1675  READ_FLAG( uiCode,        "pic_rate_present_vps_flag" );  vps->setPicRatePresentVpsFlag( uiCode ? true : false );
1676
1677  Bool parseFlag = vps->getBitRatePresentVpsFlag() || vps->getPicRatePresentVpsFlag();
1678  {
1679    for( i = 0; i < vps->getNumLayerSets(); i++ )
1680    {
1681      for( j = 0; j < vps->getMaxTLayers(); j++ )
1682      {
1683        if( parseFlag && vps->getBitRatePresentVpsFlag() )
1684        {
1685          READ_FLAG( uiCode,        "bit_rate_present_vps_flag[i][j]" );  vps->setBitRatePresentFlag( i, j, uiCode ? true : false );
1686        }
1687        else
1688        {
1689          vps->setBitRatePresentFlag( i, j, false );
1690        }
1691        if( parseFlag && vps->getPicRatePresentVpsFlag() )
1692        {
1693          READ_FLAG( uiCode,        "pic_rate_present_vps_flag[i][j]" );  vps->setPicRatePresentFlag( i, j, uiCode ? true : false );
1694        }
1695        else
1696        {
1697          vps->setPicRatePresentFlag( i, j, false );
1698        }
1699        if( parseFlag && vps->getBitRatePresentFlag(i, j) )
1700        {
1701          READ_CODE( 16, uiCode,    "avg_bit_rate[i][j]" ); vps->setAvgBitRate( i, j, uiCode );
1702          READ_CODE( 16, uiCode,    "max_bit_rate[i][j]" ); vps->setMaxBitRate( i, j, uiCode );
1703        }
1704        else
1705        {
1706          vps->setAvgBitRate( i, j, 0 );
1707          vps->setMaxBitRate( i, j, 0 );
1708        }
1709        if( parseFlag && vps->getPicRatePresentFlag(i, j) )
1710        {
1711          READ_CODE( 2 , uiCode,    "constant_pic_rate_idc[i][j]" ); vps->setConstPicRateIdc( i, j, uiCode );
1712          READ_CODE( 16, uiCode,    "avg_pic_rate[i][j]"          ); vps->setAvgPicRate( i, j, uiCode );
1713        }
1714        else
1715        {
1716          vps->setConstPicRateIdc( i, j, 0 );
1717          vps->setAvgPicRate     ( i, j, 0 );
1718        }
1719      }
1720    }
1721  }
1722#endif
[588]1723#if VPS_VUI_VIDEO_SIGNAL_MOVE
1724  READ_FLAG( uiCode, "video_signal_info_idx_present_flag" ); vps->setVideoSigPresentVpsFlag( uiCode == 1 );
1725  if (vps->getVideoSigPresentVpsFlag())
1726  {
1727    READ_CODE(4, uiCode, "vps_num_video_signal_info_minus1" ); vps->setNumVideoSignalInfo(uiCode + 1);
1728  }
1729  else
1730  {
1731    vps->setNumVideoSignalInfo(vps->getMaxLayers());
1732  }
1733
1734
1735  for(i = 0; i < vps->getNumVideoSignalInfo(); i++)
1736  {
1737    READ_CODE(3, uiCode, "video_vps_format" ); vps->setVideoVPSFormat(i,uiCode);
1738    READ_FLAG(uiCode, "video_full_range_vps_flag" ); vps->setVideoFullRangeVpsFlag(i,uiCode);
1739    READ_CODE(8, uiCode, "color_primaries_vps" ); vps->setColorPrimaries(i,uiCode);
1740    READ_CODE(8, uiCode, "transfer_characteristics_vps" ); vps->setTransCharacter(i,uiCode);
1741    READ_CODE(8, uiCode, "matrix_coeffs_vps" );vps->setMaxtrixCoeff(i,uiCode);
1742  }
1743  if(!vps->getVideoSigPresentVpsFlag())
1744  {
1745    for (i=0; i < vps->getMaxLayers(); i++)
1746    {
1747      vps->setVideoSignalInfoIdx(i,i);
1748    }
1749  }
1750  else {
1751    vps->setVideoSignalInfoIdx(0,0);
1752    if (vps->getNumVideoSignalInfo() > 1 )
1753    {
1754      for (i=1; i < vps->getMaxLayers(); i++)
1755        READ_CODE(4, uiCode, "vps_video_signal_info_idx" ); vps->setVideoSignalInfoIdx(i, uiCode);
1756    }
1757    else {
1758      for (i=1; i < vps->getMaxLayers(); i++)
1759      {
1760        vps->setVideoSignalInfoIdx(i,0);
1761      }
1762    }
1763  }
1764#endif
[540]1765#if VPS_VUI_TILES_NOT_IN_USE__FLAG
1766  UInt layerIdx;
1767  READ_FLAG( uiCode, "tiles_not_in_use_flag" ); vps->setTilesNotInUseFlag(uiCode == 1);
1768  if (!uiCode)
1769  {
1770    for(i = 0; i < vps->getMaxLayers(); i++)
1771    {
1772      READ_FLAG( uiCode, "tiles_in_use_flag[ i ]" ); vps->setTilesInUseFlag(i, (uiCode == 1));
1773      if (uiCode)
1774      {
1775        READ_FLAG( uiCode, "loop_filter_not_across_tiles_flag[ i ]" ); vps->setLoopFilterNotAcrossTilesFlag(i, (uiCode == 1));
1776      }
1777      else
1778      {
1779        vps->setLoopFilterNotAcrossTilesFlag(i, false);
1780      }
1781    }
1782#endif
[442]1783#if TILE_BOUNDARY_ALIGNED_FLAG
[540]1784    for(i = 1; i < vps->getMaxLayers(); i++)
1785    {
1786      for(j = 0; j < vps->getNumDirectRefLayers(vps->getLayerIdInNuh(i)); j++)
1787      {
1788#if VPS_VUI_TILES_NOT_IN_USE__FLAG
1789        layerIdx = vps->getLayerIdInVps(vps->getRefLayerId(vps->getLayerIdInNuh(i), j));
1790        if (vps->getTilesInUseFlag(i) && vps->getTilesInUseFlag(layerIdx)) {
1791          READ_FLAG( uiCode, "tile_boundaries_aligned_flag[i][j]" ); vps->setTileBoundariesAlignedFlag(i,j,(uiCode == 1));
1792        }
1793#else
1794        READ_FLAG( uiCode, "tile_boundaries_aligned_flag[i][j]" ); vps->setTileBoundariesAlignedFlag(i,j,(uiCode == 1));
1795#endif
1796      }
1797    }
1798#endif
1799#if VPS_VUI_TILES_NOT_IN_USE__FLAG
1800  }
1801#endif
1802#if VPS_VUI_WPP_NOT_IN_USE__FLAG
1803  READ_FLAG( uiCode, "wpp_not_in_use_flag" ); vps->setWppNotInUseFlag(uiCode == 1);
1804  if (!uiCode)
[442]1805  {
[540]1806    for(i = 0; i < vps->getMaxLayers(); i++)
[442]1807    {
[540]1808      READ_FLAG( uiCode, "wpp_in_use_flag[ i ]" ); vps->setWppInUseFlag(i, (uiCode == 1));
[442]1809    }
[494]1810  }
1811#endif
[547]1812
1813#if O0109_O0199_FLAGS_TO_VUI
1814#if M0040_ADAPTIVE_RESOLUTION_CHANGE
1815  READ_FLAG(uiCode, "single_layer_for_non_irap_flag" ); vps->setSingleLayerForNonIrapFlag(uiCode == 1 ? true : false);
1816#endif
1817#if HIGHER_LAYER_IRAP_SKIP_FLAG
1818  READ_FLAG(uiCode, "higher_layer_irap_skip_flag" ); vps->setHigherLayerIrapSkipFlag(uiCode == 1 ? true : false);
1819#endif
1820#endif
1821
[442]1822#if N0160_VUI_EXT_ILP_REF
[588]1823  READ_FLAG( uiCode, "ilp_restricted_ref_layers_flag" ); vps->setIlpRestrictedRefLayersFlag( uiCode == 1 );
1824  if( vps->getIlpRestrictedRefLayersFlag())
[442]1825  {
1826    for(i = 1; i < vps->getMaxLayers(); i++)
1827    {
1828      for(j = 0; j < vps->getNumDirectRefLayers(vps->getLayerIdInNuh(i)); j++)
1829      {
[494]1830        READ_UVLC( uiCode, "min_spatial_segment_offset_plus1[i][j]" ); vps->setMinSpatialSegmentOffsetPlus1( i, j, uiCode );
1831        if( vps->getMinSpatialSegmentOffsetPlus1(i,j ) > 0 )
1832        {
1833          READ_FLAG( uiCode, "ctu_based_offset_enabled_flag[i][j]"); vps->setCtuBasedOffsetEnabledFlag(i, j, uiCode == 1 );
1834          if(vps->getCtuBasedOffsetEnabledFlag(i,j))
[442]1835          {
[494]1836            READ_UVLC( uiCode, "min_horizontal_ctu_offset_plus1[i][j]"); vps->setMinHorizontalCtuOffsetPlus1( i,j, uiCode );
[442]1837          }
[494]1838        }
1839      }
[442]1840    }
1841  }
[494]1842#endif
[540]1843#if VPS_VUI_VIDEO_SIGNAL
[588]1844#if VPS_VUI_VIDEO_SIGNAL_MOVE
1845#else
[540]1846    READ_FLAG( uiCode, "video_signal_info_idx_present_flag" ); vps->setVideoSigPresentVpsFlag( uiCode == 1 );
1847    if (vps->getVideoSigPresentVpsFlag())
1848    {
1849        READ_CODE(4, uiCode, "vps_num_video_signal_info_minus1" ); vps->setNumVideoSignalInfo(uiCode + 1);
1850    }
1851    else
1852    {
1853        vps->setNumVideoSignalInfo(vps->getMaxLayers());
1854    }
1855   
1856   
1857    for(i = 0; i < vps->getNumVideoSignalInfo(); i++)
1858    {
1859        READ_CODE(3, uiCode, "video_vps_format" ); vps->setVideoVPSFormat(i,uiCode);
1860        READ_FLAG(uiCode, "video_full_range_vps_flag" ); vps->setVideoFullRangeVpsFlag(i,uiCode);
1861        READ_CODE(8, uiCode, "color_primaries_vps" ); vps->setColorPrimaries(i,uiCode);
1862        READ_CODE(8, uiCode, "transfer_characteristics_vps" ); vps->setTransCharacter(i,uiCode);
1863        READ_CODE(8, uiCode, "matrix_coeffs_vps" );vps->setMaxtrixCoeff(i,uiCode);
1864    }
1865    if(!vps->getVideoSigPresentVpsFlag())
1866    {
1867        for (i=0; i < vps->getMaxLayers(); i++)
1868        {
1869            vps->setVideoSignalInfoIdx(i,i);
1870        }
1871    }
1872    else {
1873        vps->setVideoSignalInfoIdx(0,0);
1874        if (vps->getNumVideoSignalInfo() > 1 )
1875        {
1876            for (i=1; i < vps->getMaxLayers(); i++)
1877                READ_CODE(4, uiCode, "vps_video_signal_info_idx" ); vps->setVideoSignalInfoIdx(i, uiCode);
1878        }
1879        else {
1880          for (i=1; i < vps->getMaxLayers(); i++)
1881          {
1882            vps->setVideoSignalInfoIdx(i,0);
1883          }
1884        }
1885    }
[588]1886#endif
[540]1887#endif
[442]1888}
[494]1889#endif
1890#endif //SVC_EXTENSION
1891
[313]1892Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager)
1893{
1894  UInt  uiCode;
1895  Int   iCode;
1896
1897#if ENC_DEC_TRACE
1898  xTraceSliceHeader(rpcSlice);
1899#endif
1900  TComPPS* pps = NULL;
1901  TComSPS* sps = NULL;
1902
1903  UInt firstSliceSegmentInPic;
1904  READ_FLAG( firstSliceSegmentInPic, "first_slice_segment_in_pic_flag" );
1905  if( rpcSlice->getRapPicFlag())
1906  {
1907    READ_FLAG( uiCode, "no_output_of_prior_pics_flag" );  //ignored
1908  }
1909  READ_UVLC (    uiCode, "slice_pic_parameter_set_id" );  rpcSlice->setPPSId(uiCode);
1910  pps = parameterSetManager->getPrefetchedPPS(uiCode);
1911  //!KS: need to add error handling code here, if PPS is not available
1912  assert(pps!=0);
1913  sps = parameterSetManager->getPrefetchedSPS(pps->getSPSId());
1914  //!KS: need to add error handling code here, if SPS is not available
1915  assert(sps!=0);
1916  rpcSlice->setSPS(sps);
1917  rpcSlice->setPPS(pps);
1918  if( pps->getDependentSliceSegmentsEnabledFlag() && ( !firstSliceSegmentInPic ))
1919  {
1920    READ_FLAG( uiCode, "dependent_slice_segment_flag" );       rpcSlice->setDependentSliceSegmentFlag(uiCode ? true : false);
1921  }
1922  else
1923  {
1924    rpcSlice->setDependentSliceSegmentFlag(false);
1925  }
[442]1926#if REPN_FORMAT_IN_VPS
1927  Int numCTUs = ((rpcSlice->getPicWidthInLumaSamples()+sps->getMaxCUWidth()-1)/sps->getMaxCUWidth())*((rpcSlice->getPicHeightInLumaSamples()+sps->getMaxCUHeight()-1)/sps->getMaxCUHeight());
1928#else
[313]1929  Int numCTUs = ((sps->getPicWidthInLumaSamples()+sps->getMaxCUWidth()-1)/sps->getMaxCUWidth())*((sps->getPicHeightInLumaSamples()+sps->getMaxCUHeight()-1)/sps->getMaxCUHeight());
[442]1930#endif
[313]1931  Int maxParts = (1<<(sps->getMaxCUDepth()<<1));
1932  UInt sliceSegmentAddress = 0;
1933  Int bitsSliceSegmentAddress = 0;
1934  while(numCTUs>(1<<bitsSliceSegmentAddress))
1935  {
1936    bitsSliceSegmentAddress++;
1937  }
1938
1939  if(!firstSliceSegmentInPic)
1940  {
1941    READ_CODE( bitsSliceSegmentAddress, sliceSegmentAddress, "slice_segment_address" );
1942  }
1943  //set uiCode to equal slice start address (or dependent slice start address)
1944  Int startCuAddress = maxParts*sliceSegmentAddress;
1945  rpcSlice->setSliceSegmentCurStartCUAddr( startCuAddress );
1946  rpcSlice->setSliceSegmentCurEndCUAddr(numCTUs*maxParts);
1947
1948  if (rpcSlice->getDependentSliceSegmentFlag())
1949  {
1950    rpcSlice->setNextSlice          ( false );
1951    rpcSlice->setNextSliceSegment ( true  );
1952  }
1953  else
1954  {
1955    rpcSlice->setNextSlice          ( true  );
1956    rpcSlice->setNextSliceSegment ( false );
1957
1958    rpcSlice->setSliceCurStartCUAddr(startCuAddress);
1959    rpcSlice->setSliceCurEndCUAddr(numCTUs*maxParts);
1960  }
1961
1962  if(!rpcSlice->getDependentSliceSegmentFlag())
1963  {
[494]1964#if SVC_EXTENSION
[442]1965#if POC_RESET_FLAG
[494]1966    Int iBits = 0;
[442]1967    if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > iBits)
1968    {
1969      READ_FLAG(uiCode, "poc_reset_flag");      rpcSlice->setPocResetFlag( uiCode ? true : false );
1970      iBits++;
1971    }
1972    if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > iBits)
1973    {
[588]1974#if DISCARDABLE_PIC_RPS
1975      READ_FLAG(uiCode, "discardable_flag"); rpcSlice->setDiscardableFlag( uiCode ? true : false );
1976#else
[442]1977      READ_FLAG(uiCode, "discardable_flag"); // ignored
[588]1978#endif
[442]1979      iBits++;
1980    }
[540]1981#if O0149_CROSS_LAYER_BLA_FLAG
1982    if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > iBits)
1983    {
1984      READ_FLAG(uiCode, "cross_layer_bla_flag");  rpcSlice->setCrossLayerBLAFlag( uiCode ? true : false );
1985      iBits++;
1986    }
1987#endif
[442]1988    for (; iBits < rpcSlice->getPPS()->getNumExtraSliceHeaderBits(); iBits++)
1989    {
1990      READ_FLAG(uiCode, "slice_reserved_undetermined_flag[]"); // ignored
1991    }
1992#else
[313]1993    if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits()>0)
1994    {
1995      READ_FLAG(uiCode, "discardable_flag"); // ignored
1996    }
1997    for (Int i = 1; i < rpcSlice->getPPS()->getNumExtraSliceHeaderBits(); i++)
1998    {
1999      READ_FLAG(uiCode, "slice_reserved_undetermined_flag[]"); // ignored
2000    }
[494]2001#endif
2002#else //SVC_EXTENSION
[313]2003    for (Int i = 0; i < rpcSlice->getPPS()->getNumExtraSliceHeaderBits(); i++)
2004    {
2005      READ_FLAG(uiCode, "slice_reserved_undetermined_flag[]"); // ignored
2006    }
[494]2007#endif //SVC_EXTENSION
[313]2008
2009    READ_UVLC (    uiCode, "slice_type" );            rpcSlice->setSliceType((SliceType)uiCode);
2010    if( pps->getOutputFlagPresentFlag() )
2011    {
2012      READ_FLAG( uiCode, "pic_output_flag" );    rpcSlice->setPicOutputFlag( uiCode ? true : false );
2013    }
2014    else
2015    {
2016      rpcSlice->setPicOutputFlag( true );
2017    }
2018    // in the first version chroma_format_idc is equal to one, thus colour_plane_id will not be present
2019    assert (sps->getChromaFormatIdc() == 1 );
2020    // if( separate_colour_plane_flag  ==  1 )
2021    //   colour_plane_id                                      u(2)
2022
2023    if( rpcSlice->getIdrPicFlag() )
2024    {
2025      rpcSlice->setPOC(0);
2026      TComReferencePictureSet* rps = rpcSlice->getLocalRPS();
2027      rps->setNumberOfNegativePictures(0);
2028      rps->setNumberOfPositivePictures(0);
2029      rps->setNumberOfLongtermPictures(0);
2030      rps->setNumberOfPictures(0);
2031      rpcSlice->setRPS(rps);
2032    }
[442]2033#if N0065_LAYER_POC_ALIGNMENT
[494]2034#if SHM_FIX7
2035    Int iPOClsb = 0;
2036#endif
2037#if O0062_POC_LSB_NOT_PRESENT_FLAG
2038    if( ( rpcSlice->getLayerId() > 0 && !rpcSlice->getVPS()->getPocLsbNotPresentFlag( rpcSlice->getVPS()->getLayerIdInVps(rpcSlice->getLayerId())) ) || !rpcSlice->getIdrPicFlag())
2039#else
[442]2040    if( rpcSlice->getLayerId() > 0 || !rpcSlice->getIdrPicFlag() )
[494]2041#endif
[442]2042#else
[313]2043    else
[442]2044#endif
[313]2045    {
2046      READ_CODE(sps->getBitsForPOC(), uiCode, "pic_order_cnt_lsb");
[494]2047#if SHM_FIX7
2048      iPOClsb = uiCode;
2049#else
[313]2050      Int iPOClsb = uiCode;
[494]2051#endif
[442]2052      Int iPrevPOC = rpcSlice->getPrevTid0POC();
[313]2053      Int iMaxPOClsb = 1<< sps->getBitsForPOC();
[442]2054      Int iPrevPOClsb = iPrevPOC & (iMaxPOClsb - 1);
[313]2055      Int iPrevPOCmsb = iPrevPOC-iPrevPOClsb;
2056      Int iPOCmsb;
2057      if( ( iPOClsb  <  iPrevPOClsb ) && ( ( iPrevPOClsb - iPOClsb )  >=  ( iMaxPOClsb / 2 ) ) )
2058      {
2059        iPOCmsb = iPrevPOCmsb + iMaxPOClsb;
2060      }
2061      else if( (iPOClsb  >  iPrevPOClsb )  && ( (iPOClsb - iPrevPOClsb )  >  ( iMaxPOClsb / 2 ) ) )
2062      {
2063        iPOCmsb = iPrevPOCmsb - iMaxPOClsb;
2064      }
2065      else
2066      {
2067        iPOCmsb = iPrevPOCmsb;
2068      }
2069      if ( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
2070        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
2071        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP )
2072      {
2073        // For BLA picture types, POCmsb is set to 0.
2074        iPOCmsb = 0;
2075      }
2076      rpcSlice->setPOC              (iPOCmsb+iPOClsb);
2077
[442]2078#if N0065_LAYER_POC_ALIGNMENT
[494]2079#if SHM_FIX7
2080      }
2081#endif
[442]2082      if( !rpcSlice->getIdrPicFlag() )
2083      {
2084#endif
[313]2085      TComReferencePictureSet* rps;
2086      rps = rpcSlice->getLocalRPS();
2087      rpcSlice->setRPS(rps);
2088      READ_FLAG( uiCode, "short_term_ref_pic_set_sps_flag" );
2089      if(uiCode == 0) // use short-term reference picture set explicitly signalled in slice header
2090      {
2091        parseShortTermRefPicSet(sps,rps, sps->getRPSList()->getNumberOfReferencePictureSets());
2092      }
2093      else // use reference to short-term reference picture set in PPS
2094      {
2095        Int numBits = 0;
2096        while ((1 << numBits) < rpcSlice->getSPS()->getRPSList()->getNumberOfReferencePictureSets())
2097        {
2098          numBits++;
2099        }
2100        if (numBits > 0)
2101        {
2102          READ_CODE( numBits, uiCode, "short_term_ref_pic_set_idx");
2103        }
2104        else
2105        {
2106          uiCode = 0;
2107        }
2108        *rps = *(sps->getRPSList()->getReferencePictureSet(uiCode));
2109      }
2110      if(sps->getLongTermRefsPresent())
2111      {
2112        Int offset = rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures();
2113        UInt numOfLtrp = 0;
2114        UInt numLtrpInSPS = 0;
2115        if (rpcSlice->getSPS()->getNumLongTermRefPicSPS() > 0)
2116        {
2117          READ_UVLC( uiCode, "num_long_term_sps");
2118          numLtrpInSPS = uiCode;
2119          numOfLtrp += numLtrpInSPS;
2120          rps->setNumberOfLongtermPictures(numOfLtrp);
2121        }
2122        Int bitsForLtrpInSPS = 0;
2123        while (rpcSlice->getSPS()->getNumLongTermRefPicSPS() > (1 << bitsForLtrpInSPS))
2124        {
2125          bitsForLtrpInSPS++;
2126        }
2127        READ_UVLC( uiCode, "num_long_term_pics");             rps->setNumberOfLongtermPictures(uiCode);
2128        numOfLtrp += uiCode;
2129        rps->setNumberOfLongtermPictures(numOfLtrp);
2130        Int maxPicOrderCntLSB = 1 << rpcSlice->getSPS()->getBitsForPOC();
2131        Int prevDeltaMSB = 0, deltaPocMSBCycleLT = 0;;
2132        for(Int j=offset+rps->getNumberOfLongtermPictures()-1, k = 0; k < numOfLtrp; j--, k++)
2133        {
2134          Int pocLsbLt;
2135          if (k < numLtrpInSPS)
2136          {
2137            uiCode = 0;
2138            if (bitsForLtrpInSPS > 0)
2139            {
2140              READ_CODE(bitsForLtrpInSPS, uiCode, "lt_idx_sps[i]");
2141            }
2142            Int usedByCurrFromSPS=rpcSlice->getSPS()->getUsedByCurrPicLtSPSFlag(uiCode);
2143
2144            pocLsbLt = rpcSlice->getSPS()->getLtRefPicPocLsbSps(uiCode);
2145            rps->setUsed(j,usedByCurrFromSPS);
2146          }
2147          else
2148          {
2149            READ_CODE(rpcSlice->getSPS()->getBitsForPOC(), uiCode, "poc_lsb_lt"); pocLsbLt= uiCode;
2150            READ_FLAG( uiCode, "used_by_curr_pic_lt_flag");     rps->setUsed(j,uiCode);
2151          }
2152          READ_FLAG(uiCode,"delta_poc_msb_present_flag");
2153          Bool mSBPresentFlag = uiCode ? true : false;
2154          if(mSBPresentFlag)
2155          {
2156            READ_UVLC( uiCode, "delta_poc_msb_cycle_lt[i]" );
2157            Bool deltaFlag = false;
2158            //            First LTRP                               || First LTRP from SH
2159            if( (j == offset+rps->getNumberOfLongtermPictures()-1) || (j == offset+(numOfLtrp-numLtrpInSPS)-1) )
2160            {
2161              deltaFlag = true;
2162            }
2163            if(deltaFlag)
2164            {
2165              deltaPocMSBCycleLT = uiCode;
2166            }
2167            else
2168            {
2169              deltaPocMSBCycleLT = uiCode + prevDeltaMSB;
2170            }
2171
2172            Int pocLTCurr = rpcSlice->getPOC() - deltaPocMSBCycleLT * maxPicOrderCntLSB
2173                                        - iPOClsb + pocLsbLt;
2174            rps->setPOC     (j, pocLTCurr);
2175            rps->setDeltaPOC(j, - rpcSlice->getPOC() + pocLTCurr);
2176            rps->setCheckLTMSBPresent(j,true);
2177          }
2178          else
2179          {
2180            rps->setPOC     (j, pocLsbLt);
2181            rps->setDeltaPOC(j, - rpcSlice->getPOC() + pocLsbLt);
2182            rps->setCheckLTMSBPresent(j,false);
[494]2183
[442]2184            // reset deltaPocMSBCycleLT for first LTRP from slice header if MSB not present
2185            if( j == offset+(numOfLtrp-numLtrpInSPS)-1 )
2186            {
2187              deltaPocMSBCycleLT = 0;
2188            }
[313]2189          }
2190          prevDeltaMSB = deltaPocMSBCycleLT;
2191        }
2192        offset += rps->getNumberOfLongtermPictures();
2193        rps->setNumberOfPictures(offset);
2194      }
2195      if ( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
2196        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
2197        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP )
2198      {
2199        // In the case of BLA picture types, rps data is read from slice header but ignored
2200        rps = rpcSlice->getLocalRPS();
2201        rps->setNumberOfNegativePictures(0);
2202        rps->setNumberOfPositivePictures(0);
2203        rps->setNumberOfLongtermPictures(0);
2204        rps->setNumberOfPictures(0);
2205        rpcSlice->setRPS(rps);
2206      }
2207      if (rpcSlice->getSPS()->getTMVPFlagsPresent())
2208      {
2209        READ_FLAG( uiCode, "slice_temporal_mvp_enable_flag" );
2210        rpcSlice->setEnableTMVPFlag( uiCode == 1 ? true : false );
2211      }
2212      else
2213      {
2214        rpcSlice->setEnableTMVPFlag(false);
2215      }
[494]2216#if N0065_LAYER_POC_ALIGNMENT && !SHM_FIX7
[313]2217    }
[442]2218#endif
2219    }
[313]2220
[442]2221#if SVC_EXTENSION
[313]2222    rpcSlice->setActiveNumILRRefIdx(0);
[345]2223#if ILP_SSH_SIG
[494]2224#if ILP_SSH_SIG_FIX
2225    if((sps->getLayerId() > 0) && !(rpcSlice->getVPS()->getIlpSshSignalingEnabledFlag()) && (rpcSlice->getNumILRRefIdx() > 0) )
2226#else
[345]2227    if((sps->getLayerId() > 0) && rpcSlice->getVPS()->getIlpSshSignalingEnabledFlag() && (rpcSlice->getNumILRRefIdx() > 0) )
[494]2228#endif
[345]2229#else
[313]2230    if((sps->getLayerId() > 0)  &&  (rpcSlice->getNumILRRefIdx() > 0) )
[345]2231#endif
[313]2232    {
2233      READ_FLAG(uiCode,"inter_layer_pred_enabled_flag");
2234      rpcSlice->setInterLayerPredEnabledFlag(uiCode);
2235      if( rpcSlice->getInterLayerPredEnabledFlag())
2236      {
2237        if(rpcSlice->getNumILRRefIdx() > 1)
2238        {
2239          Int numBits = 1;
2240          while ((1 << numBits) < rpcSlice->getNumILRRefIdx())
2241          {
2242            numBits++;
2243          }
2244          if( !rpcSlice->getVPS()->getMaxOneActiveRefLayerFlag())
2245          {
2246            READ_CODE( numBits, uiCode,"num_inter_layer_ref_pics_minus1" );
2247            rpcSlice->setActiveNumILRRefIdx(uiCode + 1);
2248          }
2249          else
2250          {
[588]2251#if P0079_DERIVE_NUMACTIVE_REF_PICS
2252            Int   numRefLayerPics = 0;
2253            Int   i = 0;
2254            Int   refLayerPicIdc  [MAX_VPS_LAYER_ID_PLUS1];
2255            for(i = 0, numRefLayerPics = 0;  i < rpcSlice->getNumILRRefIdx(); i++ ) 
2256            {
2257              if(rpcSlice->getVPS()->getMaxTidIlRefPicsPlus1(rpcSlice->getVPS()->getLayerIdInVps(i),rpcSlice->getLayerId()) >  rpcSlice->getTLayer() &&
2258                (rpcSlice->getVPS()->getMaxTSLayersMinus1(rpcSlice->getVPS()->getLayerIdInVps(i)) >=  rpcSlice->getTLayer()) )
2259              {         
2260                refLayerPicIdc[ numRefLayerPics++ ] = i;
2261              }
2262            }
2263            if (numRefLayerPics)
2264              rpcSlice->setActiveNumILRRefIdx(1);
2265#else
[313]2266            rpcSlice->setActiveNumILRRefIdx(1);
[588]2267#endif
[313]2268          }
[345]2269#if ILP_NUM_REF_CHK
2270          if( rpcSlice->getActiveNumILRRefIdx() == rpcSlice->getNumILRRefIdx() )
2271          {
2272            for( Int i = 0; i < rpcSlice->getActiveNumILRRefIdx(); i++ )
2273            {
2274              rpcSlice->setInterLayerPredLayerIdc(i,i);
2275            }
2276          }
2277          else
2278          {
2279#endif
[313]2280          for(Int i = 0; i < rpcSlice->getActiveNumILRRefIdx(); i++ )
2281          {
2282            READ_CODE( numBits,uiCode,"inter_layer_pred_layer_idc[i]" );
2283            rpcSlice->setInterLayerPredLayerIdc(uiCode,i);
2284          }
[345]2285#if ILP_NUM_REF_CHK
2286          }
2287#endif
[313]2288        }
2289        else
2290        {
[540]2291#if O0225_TID_BASED_IL_RPS_DERIV && TSLAYERS_IL_RPS
2292          if( (rpcSlice->getVPS()->getMaxTidIlRefPicsPlus1(0,rpcSlice->getLayerId()) >  rpcSlice->getTLayer()) &&
2293             (rpcSlice->getVPS()->getMaxTSLayersMinus1(0) >=  rpcSlice->getTLayer()) )
2294        {
2295#endif
[313]2296          rpcSlice->setActiveNumILRRefIdx(1);
2297          rpcSlice->setInterLayerPredLayerIdc(0,0);
[540]2298#if O0225_TID_BASED_IL_RPS_DERIV && TSLAYERS_IL_RPS
[313]2299        }
[540]2300#endif
2301        }
[313]2302      }
2303    }
[345]2304#if ILP_SSH_SIG
[494]2305#if ILP_SSH_SIG_FIX
[540]2306    else if( rpcSlice->getVPS()->getIlpSshSignalingEnabledFlag() == true &&  (rpcSlice->getLayerId() > 0 ))
[494]2307#else
[345]2308    else if( rpcSlice->getVPS()->getIlpSshSignalingEnabledFlag() == false )
[494]2309#endif
[345]2310    {
2311      rpcSlice->setInterLayerPredEnabledFlag(true);
[540]2312
2313#if O0225_TID_BASED_IL_RPS_DERIV && TSLAYERS_IL_RPS
2314      Int   numRefLayerPics = 0;
2315      Int   i = 0;
2316      Int   refLayerPicIdc  [MAX_VPS_LAYER_ID_PLUS1];
2317      for(i = 0, numRefLayerPics = 0;  i < rpcSlice->getNumILRRefIdx(); i++ ) 
2318      {
2319        if(rpcSlice->getVPS()->getMaxTidIlRefPicsPlus1(rpcSlice->getVPS()->getLayerIdInVps(i),rpcSlice->getLayerId()) >  rpcSlice->getTLayer() &&
2320           (rpcSlice->getVPS()->getMaxTSLayersMinus1(rpcSlice->getVPS()->getLayerIdInVps(i)) >=  rpcSlice->getTLayer()) )
2321        {         
2322          refLayerPicIdc[ numRefLayerPics++ ] = i;
2323        }
2324      }
2325      rpcSlice->setActiveNumILRRefIdx(numRefLayerPics);
2326      for( i = 0; i < rpcSlice->getActiveNumILRRefIdx(); i++ )
2327      {
2328        rpcSlice->setInterLayerPredLayerIdc(refLayerPicIdc[i],i);
2329      }     
2330#else
[345]2331      rpcSlice->setActiveNumILRRefIdx(rpcSlice->getNumILRRefIdx());
2332      for( Int i = 0; i < rpcSlice->getActiveNumILRRefIdx(); i++ )
2333      {
2334        rpcSlice->setInterLayerPredLayerIdc(i,i);
2335      }
[540]2336#endif
[345]2337    }
2338#endif
[313]2339#endif
2340
2341    if(sps->getUseSAO())
2342    {
2343      READ_FLAG(uiCode, "slice_sao_luma_flag");  rpcSlice->setSaoEnabledFlag((Bool)uiCode);
[494]2344#if AUXILIARY_PICTURES
2345      ChromaFormat format;
2346#if REPN_FORMAT_IN_VPS
[540]2347#if O0096_REP_FORMAT_INDEX
2348      if( sps->getLayerId() == 0 )
2349      {
2350        format = sps->getChromaFormatIdc();
2351      }
2352      else
2353      {
2354        format = rpcSlice->getVPS()->getVpsRepFormat( sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : rpcSlice->getVPS()->getVpsRepFormatIdx(sps->getLayerId()) )->getChromaFormatVpsIdc();
2355      }
2356#else
[494]2357      if( ( sps->getLayerId() == 0 ) || sps->getUpdateRepFormatFlag() )
2358      {
2359        format = sps->getChromaFormatIdc();
2360      }
2361      else
2362      {
2363        format = rpcSlice->getVPS()->getVpsRepFormat( rpcSlice->getVPS()->getVpsRepFormatIdx(sps->getLayerId()) )->getChromaFormatVpsIdc();
2364      }
[540]2365#endif
[494]2366#else
2367      format = sps->getChromaFormatIdc();
2368#endif
2369      if (format != CHROMA_400)
2370      {
2371#endif
[313]2372      READ_FLAG(uiCode, "slice_sao_chroma_flag");  rpcSlice->setSaoEnabledFlagChroma((Bool)uiCode);
[494]2373#if AUXILIARY_PICTURES
2374      }
2375      else
2376      {
2377        rpcSlice->setSaoEnabledFlagChroma(false);
2378      }
2379#endif
[313]2380    }
2381
2382    if (rpcSlice->getIdrPicFlag())
2383    {
2384      rpcSlice->setEnableTMVPFlag(false);
2385    }
2386    if (!rpcSlice->isIntra())
2387    {
2388
2389      READ_FLAG( uiCode, "num_ref_idx_active_override_flag");
2390      if (uiCode)
2391      {
2392        READ_UVLC (uiCode, "num_ref_idx_l0_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_0, uiCode + 1 );
2393        if (rpcSlice->isInterB())
2394        {
2395          READ_UVLC (uiCode, "num_ref_idx_l1_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_1, uiCode + 1 );
2396        }
2397        else
2398        {
2399          rpcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
2400        }
2401      }
2402      else
2403      {
2404        rpcSlice->setNumRefIdx(REF_PIC_LIST_0, rpcSlice->getPPS()->getNumRefIdxL0DefaultActive());
2405        if (rpcSlice->isInterB())
2406        {
2407          rpcSlice->setNumRefIdx(REF_PIC_LIST_1, rpcSlice->getPPS()->getNumRefIdxL1DefaultActive());
2408        }
2409        else
2410        {
2411          rpcSlice->setNumRefIdx(REF_PIC_LIST_1,0);
2412        }
2413      }
2414    }
2415    // }
2416    TComRefPicListModification* refPicListModification = rpcSlice->getRefPicListModification();
2417    if(!rpcSlice->isIntra())
2418    {
2419      if( !rpcSlice->getPPS()->getListsModificationPresentFlag() || rpcSlice->getNumRpsCurrTempList() <= 1 )
2420      {
2421        refPicListModification->setRefPicListModificationFlagL0( 0 );
2422      }
2423      else
2424      {
2425        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l0" ); refPicListModification->setRefPicListModificationFlagL0( uiCode ? 1 : 0 );
2426      }
2427
2428      if(refPicListModification->getRefPicListModificationFlagL0())
2429      {
2430        uiCode = 0;
2431        Int i = 0;
2432        Int numRpsCurrTempList0 = rpcSlice->getNumRpsCurrTempList();
2433        if ( numRpsCurrTempList0 > 1 )
2434        {
2435          Int length = 1;
2436          numRpsCurrTempList0 --;
2437          while ( numRpsCurrTempList0 >>= 1)
2438          {
2439            length ++;
2440          }
2441          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
2442          {
2443            READ_CODE( length, uiCode, "list_entry_l0" );
2444            refPicListModification->setRefPicSetIdxL0(i, uiCode );
2445          }
2446        }
2447        else
2448        {
2449          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
2450          {
2451            refPicListModification->setRefPicSetIdxL0(i, 0 );
2452          }
2453        }
2454      }
2455    }
2456    else
2457    {
2458      refPicListModification->setRefPicListModificationFlagL0(0);
2459    }
2460    if(rpcSlice->isInterB())
2461    {
2462      if( !rpcSlice->getPPS()->getListsModificationPresentFlag() || rpcSlice->getNumRpsCurrTempList() <= 1 )
2463      {
2464        refPicListModification->setRefPicListModificationFlagL1( 0 );
2465      }
2466      else
2467      {
2468        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l1" ); refPicListModification->setRefPicListModificationFlagL1( uiCode ? 1 : 0 );
2469      }
2470      if(refPicListModification->getRefPicListModificationFlagL1())
2471      {
2472        uiCode = 0;
2473        Int i = 0;
2474        Int numRpsCurrTempList1 = rpcSlice->getNumRpsCurrTempList();
2475        if ( numRpsCurrTempList1 > 1 )
2476        {
2477          Int length = 1;
2478          numRpsCurrTempList1 --;
2479          while ( numRpsCurrTempList1 >>= 1)
2480          {
2481            length ++;
2482          }
2483          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
2484          {
2485            READ_CODE( length, uiCode, "list_entry_l1" );
2486            refPicListModification->setRefPicSetIdxL1(i, uiCode );
2487          }
2488        }
2489        else
2490        {
2491          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
2492          {
2493            refPicListModification->setRefPicSetIdxL1(i, 0 );
2494          }
2495        }
2496      }
2497    }
2498    else
2499    {
2500      refPicListModification->setRefPicListModificationFlagL1(0);
2501    }
2502    if (rpcSlice->isInterB())
2503    {
2504      READ_FLAG( uiCode, "mvd_l1_zero_flag" );       rpcSlice->setMvdL1ZeroFlag( (uiCode ? true : false) );
2505    }
2506
2507    rpcSlice->setCabacInitFlag( false ); // default
2508    if(pps->getCabacInitPresentFlag() && !rpcSlice->isIntra())
2509    {
2510      READ_FLAG(uiCode, "cabac_init_flag");
2511      rpcSlice->setCabacInitFlag( uiCode ? true : false );
2512    }
2513
2514    if ( rpcSlice->getEnableTMVPFlag() )
2515    {
[588]2516#if SVC_EXTENSION && REF_IDX_MFM
2517      // set motion mapping flag
[540]2518      rpcSlice->setMFMEnabledFlag( ( rpcSlice->getNumMotionPredRefLayers() > 0 && rpcSlice->getActiveNumILRRefIdx() ) ? true : false );
[313]2519#endif
2520      if ( rpcSlice->getSliceType() == B_SLICE )
2521      {
2522        READ_FLAG( uiCode, "collocated_from_l0_flag" );
2523        rpcSlice->setColFromL0Flag(uiCode);
2524      }
2525      else
2526      {
2527        rpcSlice->setColFromL0Flag( 1 );
2528      }
2529
2530      if ( rpcSlice->getSliceType() != I_SLICE &&
2531          ((rpcSlice->getColFromL0Flag() == 1 && rpcSlice->getNumRefIdx(REF_PIC_LIST_0) > 1)||
2532           (rpcSlice->getColFromL0Flag() == 0 && rpcSlice->getNumRefIdx(REF_PIC_LIST_1) > 1)))
2533      {
2534        READ_UVLC( uiCode, "collocated_ref_idx" );
2535        rpcSlice->setColRefIdx(uiCode);
2536      }
2537      else
2538      {
2539        rpcSlice->setColRefIdx(0);
2540      }
2541    }
2542    if ( (pps->getUseWP() && rpcSlice->getSliceType()==P_SLICE) || (pps->getWPBiPred() && rpcSlice->getSliceType()==B_SLICE) )
2543    {
2544      xParsePredWeightTable(rpcSlice);
2545      rpcSlice->initWpScaling();
2546    }
2547    if (!rpcSlice->isIntra())
2548    {
2549      READ_UVLC( uiCode, "five_minus_max_num_merge_cand");
2550      rpcSlice->setMaxNumMergeCand(MRG_MAX_NUM_CANDS - uiCode);
2551    }
2552
2553    READ_SVLC( iCode, "slice_qp_delta" );
2554    rpcSlice->setSliceQp (26 + pps->getPicInitQPMinus26() + iCode);
2555
[442]2556#if REPN_FORMAT_IN_VPS
[494]2557#if O0194_DIFFERENT_BITDEPTH_EL_BL
2558    g_bitDepthYLayer[rpcSlice->getLayerId()] = rpcSlice->getBitDepthY();
2559    g_bitDepthCLayer[rpcSlice->getLayerId()] = rpcSlice->getBitDepthC();
2560#endif
[442]2561    assert( rpcSlice->getSliceQp() >= -rpcSlice->getQpBDOffsetY() );
2562#else
[313]2563    assert( rpcSlice->getSliceQp() >= -sps->getQpBDOffsetY() );
[442]2564#endif
[313]2565    assert( rpcSlice->getSliceQp() <=  51 );
2566
2567    if (rpcSlice->getPPS()->getSliceChromaQpFlag())
2568    {
2569      READ_SVLC( iCode, "slice_qp_delta_cb" );
2570      rpcSlice->setSliceQpDeltaCb( iCode );
2571      assert( rpcSlice->getSliceQpDeltaCb() >= -12 );
2572      assert( rpcSlice->getSliceQpDeltaCb() <=  12 );
2573      assert( (rpcSlice->getPPS()->getChromaCbQpOffset() + rpcSlice->getSliceQpDeltaCb()) >= -12 );
2574      assert( (rpcSlice->getPPS()->getChromaCbQpOffset() + rpcSlice->getSliceQpDeltaCb()) <=  12 );
2575
2576      READ_SVLC( iCode, "slice_qp_delta_cr" );
2577      rpcSlice->setSliceQpDeltaCr( iCode );
2578      assert( rpcSlice->getSliceQpDeltaCr() >= -12 );
2579      assert( rpcSlice->getSliceQpDeltaCr() <=  12 );
2580      assert( (rpcSlice->getPPS()->getChromaCrQpOffset() + rpcSlice->getSliceQpDeltaCr()) >= -12 );
2581      assert( (rpcSlice->getPPS()->getChromaCrQpOffset() + rpcSlice->getSliceQpDeltaCr()) <=  12 );
2582    }
2583
2584    if (rpcSlice->getPPS()->getDeblockingFilterControlPresentFlag())
2585    {
2586      if(rpcSlice->getPPS()->getDeblockingFilterOverrideEnabledFlag())
2587      {
2588        READ_FLAG ( uiCode, "deblocking_filter_override_flag" );        rpcSlice->setDeblockingFilterOverrideFlag(uiCode ? true : false);
2589      }
2590      else
2591      {
2592        rpcSlice->setDeblockingFilterOverrideFlag(0);
2593      }
2594      if(rpcSlice->getDeblockingFilterOverrideFlag())
2595      {
2596        READ_FLAG ( uiCode, "slice_disable_deblocking_filter_flag" );   rpcSlice->setDeblockingFilterDisable(uiCode ? 1 : 0);
2597        if(!rpcSlice->getDeblockingFilterDisable())
2598        {
2599          READ_SVLC( iCode, "slice_beta_offset_div2" );                       rpcSlice->setDeblockingFilterBetaOffsetDiv2(iCode);
2600          assert(rpcSlice->getDeblockingFilterBetaOffsetDiv2() >= -6 &&
2601                 rpcSlice->getDeblockingFilterBetaOffsetDiv2() <=  6);
2602          READ_SVLC( iCode, "slice_tc_offset_div2" );                         rpcSlice->setDeblockingFilterTcOffsetDiv2(iCode);
2603          assert(rpcSlice->getDeblockingFilterTcOffsetDiv2() >= -6 &&
2604                 rpcSlice->getDeblockingFilterTcOffsetDiv2() <=  6);
2605        }
2606      }
2607      else
2608      {
2609        rpcSlice->setDeblockingFilterDisable   ( rpcSlice->getPPS()->getPicDisableDeblockingFilterFlag() );
2610        rpcSlice->setDeblockingFilterBetaOffsetDiv2( rpcSlice->getPPS()->getDeblockingFilterBetaOffsetDiv2() );
2611        rpcSlice->setDeblockingFilterTcOffsetDiv2  ( rpcSlice->getPPS()->getDeblockingFilterTcOffsetDiv2() );
2612      }
2613    }
2614    else
2615    {
2616      rpcSlice->setDeblockingFilterDisable       ( false );
2617      rpcSlice->setDeblockingFilterBetaOffsetDiv2( 0 );
2618      rpcSlice->setDeblockingFilterTcOffsetDiv2  ( 0 );
2619    }
2620
2621    Bool isSAOEnabled = (!rpcSlice->getSPS()->getUseSAO())?(false):(rpcSlice->getSaoEnabledFlag()||rpcSlice->getSaoEnabledFlagChroma());
2622    Bool isDBFEnabled = (!rpcSlice->getDeblockingFilterDisable());
2623
2624    if(rpcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag() && ( isSAOEnabled || isDBFEnabled ))
2625    {
2626      READ_FLAG( uiCode, "slice_loop_filter_across_slices_enabled_flag");
2627    }
2628    else
2629    {
2630      uiCode = rpcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag()?1:0;
2631    }
2632    rpcSlice->setLFCrossSliceBoundaryFlag( (uiCode==1)?true:false);
2633
2634  }
2635
2636    UInt *entryPointOffset          = NULL;
2637    UInt numEntryPointOffsets, offsetLenMinus1;
2638  if( pps->getTilesEnabledFlag() || pps->getEntropyCodingSyncEnabledFlag() )
2639  {
2640    READ_UVLC(numEntryPointOffsets, "num_entry_point_offsets"); rpcSlice->setNumEntryPointOffsets ( numEntryPointOffsets );
2641    if (numEntryPointOffsets>0)
2642    {
2643      READ_UVLC(offsetLenMinus1, "offset_len_minus1");
2644    }
2645    entryPointOffset = new UInt[numEntryPointOffsets];
2646    for (UInt idx=0; idx<numEntryPointOffsets; idx++)
2647    {
2648      READ_CODE(offsetLenMinus1+1, uiCode, "entry_point_offset_minus1");
2649      entryPointOffset[ idx ] = uiCode + 1;
2650    }
2651  }
2652  else
2653  {
2654    rpcSlice->setNumEntryPointOffsets ( 0 );
2655  }
2656
2657  if(pps->getSliceHeaderExtensionPresentFlag())
2658  {
2659    READ_UVLC(uiCode,"slice_header_extension_length");
2660    for(Int i=0; i<uiCode; i++)
2661    {
2662      UInt ignore;
2663      READ_CODE(8,ignore,"slice_header_extension_data_byte");
2664    }
2665  }
2666  m_pcBitstream->readByteAlignment();
2667
2668  if( pps->getTilesEnabledFlag() || pps->getEntropyCodingSyncEnabledFlag() )
2669  {
2670    Int endOfSliceHeaderLocation = m_pcBitstream->getByteLocation();
[494]2671
[313]2672    // Adjust endOfSliceHeaderLocation to account for emulation prevention bytes in the slice segment header
2673    for ( UInt curByteIdx  = 0; curByteIdx<m_pcBitstream->numEmulationPreventionBytesRead(); curByteIdx++ )
2674    {
2675      if ( m_pcBitstream->getEmulationPreventionByteLocation( curByteIdx ) < endOfSliceHeaderLocation )
2676      {
2677        endOfSliceHeaderLocation++;
2678      }
2679    }
2680
2681    Int  curEntryPointOffset     = 0;
2682    Int  prevEntryPointOffset    = 0;
2683    for (UInt idx=0; idx<numEntryPointOffsets; idx++)
2684    {
2685      curEntryPointOffset += entryPointOffset[ idx ];
2686
2687      Int emulationPreventionByteCount = 0;
2688      for ( UInt curByteIdx  = 0; curByteIdx<m_pcBitstream->numEmulationPreventionBytesRead(); curByteIdx++ )
2689      {
2690        if ( m_pcBitstream->getEmulationPreventionByteLocation( curByteIdx ) >= ( prevEntryPointOffset + endOfSliceHeaderLocation ) &&
2691             m_pcBitstream->getEmulationPreventionByteLocation( curByteIdx ) <  ( curEntryPointOffset  + endOfSliceHeaderLocation ) )
2692        {
2693          emulationPreventionByteCount++;
2694        }
2695      }
2696
2697      entryPointOffset[ idx ] -= emulationPreventionByteCount;
2698      prevEntryPointOffset = curEntryPointOffset;
2699    }
2700
2701    if ( pps->getTilesEnabledFlag() )
2702    {
2703      rpcSlice->setTileLocationCount( numEntryPointOffsets );
2704
2705      UInt prevPos = 0;
2706      for (Int idx=0; idx<rpcSlice->getTileLocationCount(); idx++)
2707      {
2708        rpcSlice->setTileLocation( idx, prevPos + entryPointOffset [ idx ] );
2709        prevPos += entryPointOffset[ idx ];
2710      }
2711    }
2712    else if ( pps->getEntropyCodingSyncEnabledFlag() )
2713    {
2714    Int numSubstreams = rpcSlice->getNumEntryPointOffsets()+1;
2715      rpcSlice->allocSubstreamSizes(numSubstreams);
2716      UInt *pSubstreamSizes       = rpcSlice->getSubstreamSizes();
2717      for (Int idx=0; idx<numSubstreams-1; idx++)
2718      {
2719        if ( idx < numEntryPointOffsets )
2720        {
2721          pSubstreamSizes[ idx ] = ( entryPointOffset[ idx ] << 3 ) ;
2722        }
2723        else
2724        {
2725          pSubstreamSizes[ idx ] = 0;
2726        }
2727      }
2728    }
2729
2730    if (entryPointOffset)
2731    {
2732      delete [] entryPointOffset;
2733    }
2734  }
2735
2736  return;
2737}
2738
2739Void TDecCavlc::parsePTL( TComPTL *rpcPTL, Bool profilePresentFlag, Int maxNumSubLayersMinus1 )
2740{
2741  UInt uiCode;
2742  if(profilePresentFlag)
2743  {
2744    parseProfileTier(rpcPTL->getGeneralPTL());
2745  }
2746  READ_CODE( 8, uiCode, "general_level_idc" );    rpcPTL->getGeneralPTL()->setLevelIdc(uiCode);
2747
2748  for (Int i = 0; i < maxNumSubLayersMinus1; i++)
2749  {
2750    if(profilePresentFlag)
2751    {
2752      READ_FLAG( uiCode, "sub_layer_profile_present_flag[i]" ); rpcPTL->setSubLayerProfilePresentFlag(i, uiCode);
2753    }
2754    READ_FLAG( uiCode, "sub_layer_level_present_flag[i]"   ); rpcPTL->setSubLayerLevelPresentFlag  (i, uiCode);
2755  }
2756
2757  if (maxNumSubLayersMinus1 > 0)
2758  {
2759    for (Int i = maxNumSubLayersMinus1; i < 8; i++)
2760    {
2761      READ_CODE(2, uiCode, "reserved_zero_2bits");
2762      assert(uiCode == 0);
2763    }
2764  }
2765
2766  for(Int i = 0; i < maxNumSubLayersMinus1; i++)
2767  {
2768    if( profilePresentFlag && rpcPTL->getSubLayerProfilePresentFlag(i) )
2769    {
2770      parseProfileTier(rpcPTL->getSubLayerPTL(i));
2771    }
2772    if(rpcPTL->getSubLayerLevelPresentFlag(i))
2773    {
2774      READ_CODE( 8, uiCode, "sub_layer_level_idc[i]" );   rpcPTL->getSubLayerPTL(i)->setLevelIdc(uiCode);
2775    }
2776  }
2777}
2778
2779Void TDecCavlc::parseProfileTier(ProfileTierLevel *ptl)
2780{
2781  UInt uiCode;
2782  READ_CODE(2 , uiCode, "XXX_profile_space[]");   ptl->setProfileSpace(uiCode);
2783  READ_FLAG(    uiCode, "XXX_tier_flag[]"    );   ptl->setTierFlag    (uiCode ? 1 : 0);
2784  READ_CODE(5 , uiCode, "XXX_profile_idc[]"  );   ptl->setProfileIdc  (uiCode);
2785  for(Int j = 0; j < 32; j++)
2786  {
2787    READ_FLAG(  uiCode, "XXX_profile_compatibility_flag[][j]");   ptl->setProfileCompatibilityFlag(j, uiCode ? 1 : 0);
2788  }
2789  READ_FLAG(uiCode, "general_progressive_source_flag");
2790  ptl->setProgressiveSourceFlag(uiCode ? true : false);
2791
2792  READ_FLAG(uiCode, "general_interlaced_source_flag");
2793  ptl->setInterlacedSourceFlag(uiCode ? true : false);
2794
2795  READ_FLAG(uiCode, "general_non_packed_constraint_flag");
2796  ptl->setNonPackedConstraintFlag(uiCode ? true : false);
2797
2798  READ_FLAG(uiCode, "general_frame_only_constraint_flag");
2799  ptl->setFrameOnlyConstraintFlag(uiCode ? true : false);
2800
2801  READ_CODE(16, uiCode, "XXX_reserved_zero_44bits[0..15]");
2802  READ_CODE(16, uiCode, "XXX_reserved_zero_44bits[16..31]");
2803  READ_CODE(12, uiCode, "XXX_reserved_zero_44bits[32..43]");
2804}
2805
2806Void TDecCavlc::parseTerminatingBit( UInt& ruiBit )
2807{
2808  ruiBit = false;
2809  Int iBitsLeft = m_pcBitstream->getNumBitsLeft();
2810  if(iBitsLeft <= 8)
2811  {
2812    UInt uiPeekValue = m_pcBitstream->peekBits(iBitsLeft);
2813    if (uiPeekValue == (1<<(iBitsLeft-1)))
2814    {
2815      ruiBit = true;
2816    }
2817  }
2818}
2819
2820Void TDecCavlc::parseSkipFlag( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
2821{
2822  assert(0);
2823}
2824
2825Void TDecCavlc::parseCUTransquantBypassFlag( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
2826{
2827  assert(0);
2828}
2829
2830Void TDecCavlc::parseMVPIdx( Int& /*riMVPIdx*/ )
2831{
2832  assert(0);
2833}
2834
2835Void TDecCavlc::parseSplitFlag     ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
2836{
2837  assert(0);
2838}
2839
2840Void TDecCavlc::parsePartSize( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
2841{
2842  assert(0);
2843}
2844
2845Void TDecCavlc::parsePredMode( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
2846{
2847  assert(0);
2848}
2849
2850/** Parse I_PCM information.
2851* \param pcCU pointer to CU
2852* \param uiAbsPartIdx CU index
2853* \param uiDepth CU depth
2854* \returns Void
2855*
2856* If I_PCM flag indicates that the CU is I_PCM, parse its PCM alignment bits and codes.
2857*/
2858Void TDecCavlc::parseIPCMInfo( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
2859{
2860  assert(0);
2861}
2862
2863Void TDecCavlc::parseIntraDirLumaAng  ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
2864{
2865  assert(0);
2866}
2867
2868Void TDecCavlc::parseIntraDirChroma( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
2869{
2870  assert(0);
2871}
2872
2873Void TDecCavlc::parseInterDir( TComDataCU* /*pcCU*/, UInt& /*ruiInterDir*/, UInt /*uiAbsPartIdx*/ )
2874{
2875  assert(0);
2876}
2877
2878Void TDecCavlc::parseRefFrmIdx( TComDataCU* /*pcCU*/, Int& /*riRefFrmIdx*/, RefPicList /*eRefList*/ )
2879{
2880  assert(0);
2881}
2882
2883Void TDecCavlc::parseMvd( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiPartIdx*/, UInt /*uiDepth*/, RefPicList /*eRefList*/ )
2884{
2885  assert(0);
2886}
2887
2888Void TDecCavlc::parseDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2889{
2890  Int qp;
2891  Int  iDQp;
2892
2893  xReadSvlc( iDQp );
2894
[442]2895#if REPN_FORMAT_IN_VPS
2896  Int qpBdOffsetY = pcCU->getSlice()->getQpBDOffsetY();
2897#else
[313]2898  Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffsetY();
[442]2899#endif
[313]2900  qp = (((Int) pcCU->getRefQP( uiAbsPartIdx ) + iDQp + 52 + 2*qpBdOffsetY )%(52+ qpBdOffsetY)) -  qpBdOffsetY;
2901
2902  UInt uiAbsQpCUPartIdx = (uiAbsPartIdx>>((g_uiMaxCUDepth - pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())<<1))<<((g_uiMaxCUDepth - pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())<<1) ;
2903  UInt uiQpCUDepth =   min(uiDepth,pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()) ;
2904
2905  pcCU->setQPSubParts( qp, uiAbsQpCUPartIdx, uiQpCUDepth );
2906}
2907
2908Void TDecCavlc::parseCoeffNxN( TComDataCU* /*pcCU*/, TCoeff* /*pcCoef*/, UInt /*uiAbsPartIdx*/, UInt /*uiWidth*/, UInt /*uiHeight*/, UInt /*uiDepth*/, TextType /*eTType*/ )
2909{
2910  assert(0);
2911}
2912
2913Void TDecCavlc::parseTransformSubdivFlag( UInt& /*ruiSubdivFlag*/, UInt /*uiLog2TransformBlockSize*/ )
2914{
2915  assert(0);
2916}
2917
2918Void TDecCavlc::parseQtCbf( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, TextType /*eType*/, UInt /*uiTrDepth*/, UInt /*uiDepth*/ )
2919{
2920  assert(0);
2921}
2922
2923Void TDecCavlc::parseQtRootCbf( UInt /*uiAbsPartIdx*/, UInt& /*uiQtRootCbf*/ )
2924{
2925  assert(0);
2926}
2927
2928Void TDecCavlc::parseTransformSkipFlags (TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*width*/, UInt /*height*/, UInt /*uiDepth*/, TextType /*eTType*/)
2929{
2930  assert(0);
2931}
2932
2933Void TDecCavlc::parseMergeFlag ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/, UInt /*uiPUIdx*/ )
2934{
2935  assert(0);
2936}
2937
2938Void TDecCavlc::parseMergeIndex ( TComDataCU* /*pcCU*/, UInt& /*ruiMergeIndex*/ )
2939{
2940  assert(0);
2941}
2942
2943// ====================================================================================================================
2944// Protected member functions
2945// ====================================================================================================================
2946
2947/** parse explicit wp tables
2948* \param TComSlice* pcSlice
2949* \returns Void
2950*/
2951Void TDecCavlc::xParsePredWeightTable( TComSlice* pcSlice )
2952{
2953  wpScalingParam  *wp;
2954  Bool            bChroma     = true; // color always present in HEVC ?
2955  SliceType       eSliceType  = pcSlice->getSliceType();
2956  Int             iNbRef       = (eSliceType == B_SLICE ) ? (2) : (1);
[494]2957#if SVC_EXTENSION
2958  UInt            uiLog2WeightDenomLuma = 0, uiLog2WeightDenomChroma = 0;
2959#else
[313]2960  UInt            uiLog2WeightDenomLuma, uiLog2WeightDenomChroma;
[494]2961#endif
[313]2962  UInt            uiTotalSignalledWeightFlags = 0;
2963
2964  Int iDeltaDenom;
[494]2965#if AUXILIARY_PICTURES
2966  if (pcSlice->getChromaFormatIdc() == CHROMA_400)
2967  {
2968    bChroma = false;
2969  }
2970#endif
[313]2971  // decode delta_luma_log2_weight_denom :
2972  READ_UVLC( uiLog2WeightDenomLuma, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
2973  assert( uiLog2WeightDenomLuma <= 7 );
2974  if( bChroma )
2975  {
2976    READ_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );     // se(v): delta_chroma_log2_weight_denom
2977    assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)>=0);
2978    assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)<=7);
2979    uiLog2WeightDenomChroma = (UInt)(iDeltaDenom + uiLog2WeightDenomLuma);
2980  }
2981
2982  for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ )
2983  {
2984    RefPicList  eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 );
2985    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ )
2986    {
2987      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
2988
2989      wp[0].uiLog2WeightDenom = uiLog2WeightDenomLuma;
[494]2990#if AUXILIARY_PICTURES
2991      if (!bChroma)
2992      {
2993        wp[1].uiLog2WeightDenom = 0;
2994        wp[2].uiLog2WeightDenom = 0;
2995      }
2996      else
2997      {
2998#endif
[313]2999      wp[1].uiLog2WeightDenom = uiLog2WeightDenomChroma;
3000      wp[2].uiLog2WeightDenom = uiLog2WeightDenomChroma;
[494]3001#if AUXILIARY_PICTURES
3002      }
3003#endif
[313]3004
3005      UInt  uiCode;
3006      READ_FLAG( uiCode, "luma_weight_lX_flag" );           // u(1): luma_weight_l0_flag
3007      wp[0].bPresentFlag = ( uiCode == 1 );
3008      uiTotalSignalledWeightFlags += wp[0].bPresentFlag;
3009    }
3010    if ( bChroma )
3011    {
3012      UInt  uiCode;
3013      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ )
3014      {
3015        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
3016        READ_FLAG( uiCode, "chroma_weight_lX_flag" );      // u(1): chroma_weight_l0_flag
3017        wp[1].bPresentFlag = ( uiCode == 1 );
3018        wp[2].bPresentFlag = ( uiCode == 1 );
3019        uiTotalSignalledWeightFlags += 2*wp[1].bPresentFlag;
3020      }
3021    }
3022    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ )
3023    {
3024      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
3025      if ( wp[0].bPresentFlag )
3026      {
3027        Int iDeltaWeight;
3028        READ_SVLC( iDeltaWeight, "delta_luma_weight_lX" );  // se(v): delta_luma_weight_l0[i]
3029        assert( iDeltaWeight >= -128 );
3030        assert( iDeltaWeight <=  127 );
3031        wp[0].iWeight = (iDeltaWeight + (1<<wp[0].uiLog2WeightDenom));
3032        READ_SVLC( wp[0].iOffset, "luma_offset_lX" );       // se(v): luma_offset_l0[i]
3033        assert( wp[0].iOffset >= -128 );
3034        assert( wp[0].iOffset <=  127 );
3035      }
3036      else
3037      {
3038        wp[0].iWeight = (1 << wp[0].uiLog2WeightDenom);
3039        wp[0].iOffset = 0;
3040      }
3041      if ( bChroma )
3042      {
3043        if ( wp[1].bPresentFlag )
3044        {
3045          for ( Int j=1 ; j<3 ; j++ )
3046          {
3047            Int iDeltaWeight;
3048            READ_SVLC( iDeltaWeight, "delta_chroma_weight_lX" );  // se(v): chroma_weight_l0[i][j]
3049            assert( iDeltaWeight >= -128 );
3050            assert( iDeltaWeight <=  127 );
3051            wp[j].iWeight = (iDeltaWeight + (1<<wp[1].uiLog2WeightDenom));
3052
3053            Int iDeltaChroma;
3054            READ_SVLC( iDeltaChroma, "delta_chroma_offset_lX" );  // se(v): delta_chroma_offset_l0[i][j]
3055            assert( iDeltaChroma >= -512 );
3056            assert( iDeltaChroma <=  511 );
3057            Int pred = ( 128 - ( ( 128*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) );
3058            wp[j].iOffset = Clip3(-128, 127, (iDeltaChroma + pred) );
3059          }
3060        }
3061        else
3062        {
3063          for ( Int j=1 ; j<3 ; j++ )
3064          {
3065            wp[j].iWeight = (1 << wp[j].uiLog2WeightDenom);
3066            wp[j].iOffset = 0;
3067          }
3068        }
3069      }
3070    }
3071
3072    for ( Int iRefIdx=pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx<MAX_NUM_REF ; iRefIdx++ )
3073    {
3074      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
3075
3076      wp[0].bPresentFlag = false;
3077      wp[1].bPresentFlag = false;
3078      wp[2].bPresentFlag = false;
3079    }
3080  }
3081  assert(uiTotalSignalledWeightFlags<=24);
3082}
3083
3084/** decode quantization matrix
3085* \param scalingList quantization matrix information
3086*/
3087Void TDecCavlc::parseScalingList(TComScalingList* scalingList)
3088{
3089  UInt  code, sizeId, listId;
3090  Bool scalingListPredModeFlag;
3091  //for each size
3092  for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
3093  {
3094    for(listId = 0; listId <  g_scalingListNum[sizeId]; listId++)
3095    {
3096      READ_FLAG( code, "scaling_list_pred_mode_flag");
3097      scalingListPredModeFlag = (code) ? true : false;
3098      if(!scalingListPredModeFlag) //Copy Mode
3099      {
3100        READ_UVLC( code, "scaling_list_pred_matrix_id_delta");
3101        scalingList->setRefMatrixId (sizeId,listId,(UInt)((Int)(listId)-(code)));
3102        if( sizeId > SCALING_LIST_8x8 )
3103        {
3104          scalingList->setScalingListDC(sizeId,listId,((listId == scalingList->getRefMatrixId (sizeId,listId))? 16 :scalingList->getScalingListDC(sizeId, scalingList->getRefMatrixId (sizeId,listId))));
3105        }
3106        scalingList->processRefMatrix( sizeId, listId, scalingList->getRefMatrixId (sizeId,listId));
3107
3108      }
3109      else //DPCM Mode
3110      {
3111        xDecodeScalingList(scalingList, sizeId, listId);
3112      }
3113    }
3114  }
3115
3116  return;
3117}
3118/** decode DPCM
3119* \param scalingList  quantization matrix information
3120* \param sizeId size index
3121* \param listId list index
3122*/
3123Void TDecCavlc::xDecodeScalingList(TComScalingList *scalingList, UInt sizeId, UInt listId)
3124{
3125  Int i,coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]);
3126  Int data;
3127  Int scalingListDcCoefMinus8 = 0;
3128  Int nextCoef = SCALING_LIST_START_VALUE;
3129  UInt* scan  = (sizeId == 0) ? g_auiSigLastScan [ SCAN_DIAG ] [ 1 ] :  g_sigLastScanCG32x32;
3130  Int *dst = scalingList->getScalingListAddress(sizeId, listId);
3131
3132  if( sizeId > SCALING_LIST_8x8 )
3133  {
3134    READ_SVLC( scalingListDcCoefMinus8, "scaling_list_dc_coef_minus8");
3135    scalingList->setScalingListDC(sizeId,listId,scalingListDcCoefMinus8 + 8);
3136    nextCoef = scalingList->getScalingListDC(sizeId,listId);
3137  }
3138
3139  for(i = 0; i < coefNum; i++)
3140  {
3141    READ_SVLC( data, "scaling_list_delta_coef");
3142    nextCoef = (nextCoef + data + 256 ) % 256;
3143    dst[scan[i]] = nextCoef;
3144  }
3145}
3146
3147Bool TDecCavlc::xMoreRbspData()
3148{
3149  Int bitsLeft = m_pcBitstream->getNumBitsLeft();
3150
3151  // if there are more than 8 bits, it cannot be rbsp_trailing_bits
3152  if (bitsLeft > 8)
3153  {
3154    return true;
3155  }
3156
3157  UChar lastByte = m_pcBitstream->peekBits(bitsLeft);
3158  Int cnt = bitsLeft;
3159
3160  // remove trailing bits equal to zero
3161  while ((cnt>0) && ((lastByte & 1) == 0))
3162  {
3163    lastByte >>= 1;
3164    cnt--;
3165  }
3166  // remove bit equal to one
3167  cnt--;
3168
3169  // we should not have a negative number of bits
3170  assert (cnt>=0);
3171
3172  // we have more data, if cnt is not zero
3173  return (cnt>0);
3174}
[540]3175
[313]3176//! \}
3177
Note: See TracBrowser for help on using the repository browser.