source: SHVCSoftware/branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp @ 795

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

remove SPS_EXTENSION

  • Property svn:eol-style set to native
File size: 138.3 KB
Line 
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-2014, 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#if Q0048_CGS_3D_ASYMLUT
42#include "../TLibCommon/TCom3DAsymLUT.h"
43#endif
44
45//! \ingroup TLibDecoder
46//! \{
47
48#if ENC_DEC_TRACE
49
50Void  xTraceSPSHeader (TComSPS *pSPS)
51{
52  fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() );
53}
54
55Void  xTracePPSHeader (TComPPS *pPPS)
56{
57  fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() );
58}
59
60Void  xTraceSliceHeader (TComSlice *pSlice)
61{
62  fprintf( g_hTrace, "=========== Slice ===========\n");
63}
64
65#endif
66
67// ====================================================================================================================
68// Constructor / destructor / create / destroy
69// ====================================================================================================================
70
71TDecCavlc::TDecCavlc()
72{
73}
74
75TDecCavlc::~TDecCavlc()
76{
77
78}
79
80// ====================================================================================================================
81// Public member functions
82// ====================================================================================================================
83
84void TDecCavlc::parseShortTermRefPicSet( TComSPS* sps, TComReferencePictureSet* rps, Int idx )
85{
86  UInt code;
87  UInt interRPSPred;
88  if (idx > 0)
89  {
90    READ_FLAG(interRPSPred, "inter_ref_pic_set_prediction_flag");  rps->setInterRPSPrediction(interRPSPred);
91  }
92  else
93  {
94    interRPSPred = false;
95    rps->setInterRPSPrediction(false);
96  }
97
98  if (interRPSPred)
99  {
100    UInt bit;
101    if(idx == sps->getRPSList()->getNumberOfReferencePictureSets())
102    {
103      READ_UVLC(code, "delta_idx_minus1" ); // delta index of the Reference Picture Set used for prediction minus 1
104    }
105    else
106    {
107      code = 0;
108    }
109    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
110    Int rIdx =  idx - 1 - code;
111    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
112    TComReferencePictureSet*   rpsRef = sps->getRPSList()->getReferencePictureSet(rIdx);
113    Int k = 0, k0 = 0, k1 = 0;
114    READ_CODE(1, bit, "delta_rps_sign"); // delta_RPS_sign
115    READ_UVLC(code, "abs_delta_rps_minus1");  // absolute delta RPS minus 1
116    Int deltaRPS = (1 - 2 * bit) * (code + 1); // delta_RPS
117    for(Int j=0 ; j <= rpsRef->getNumberOfPictures(); j++)
118    {
119      READ_CODE(1, bit, "used_by_curr_pic_flag" ); //first bit is "1" if Idc is 1
120      Int refIdc = bit;
121      if (refIdc == 0)
122      {
123        READ_CODE(1, bit, "use_delta_flag" ); //second bit is "1" if Idc is 2, "0" otherwise.
124        refIdc = bit<<1; //second bit is "1" if refIdc is 2, "0" if refIdc = 0.
125      }
126      if (refIdc == 1 || refIdc == 2)
127      {
128        Int deltaPOC = deltaRPS + ((j < rpsRef->getNumberOfPictures())? rpsRef->getDeltaPOC(j) : 0);
129        rps->setDeltaPOC(k, deltaPOC);
130        rps->setUsed(k, (refIdc == 1));
131
132        if (deltaPOC < 0)
133        {
134          k0++;
135        }
136        else
137        {
138          k1++;
139        }
140        k++;
141      }
142      rps->setRefIdc(j,refIdc);
143    }
144    rps->setNumRefIdc(rpsRef->getNumberOfPictures()+1);
145    rps->setNumberOfPictures(k);
146    rps->setNumberOfNegativePictures(k0);
147    rps->setNumberOfPositivePictures(k1);
148    rps->sortDeltaPOC();
149  }
150  else
151  {
152    READ_UVLC(code, "num_negative_pics");           rps->setNumberOfNegativePictures(code);
153    READ_UVLC(code, "num_positive_pics");           rps->setNumberOfPositivePictures(code);
154    Int prev = 0;
155    Int poc;
156    for(Int j=0 ; j < rps->getNumberOfNegativePictures(); j++)
157    {
158      READ_UVLC(code, "delta_poc_s0_minus1");
159      poc = prev-code-1;
160      prev = poc;
161      rps->setDeltaPOC(j,poc);
162      READ_FLAG(code, "used_by_curr_pic_s0_flag");  rps->setUsed(j,code);
163    }
164    prev = 0;
165    for(Int j=rps->getNumberOfNegativePictures(); j < rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures(); j++)
166    {
167      READ_UVLC(code, "delta_poc_s1_minus1");
168      poc = prev+code+1;
169      prev = poc;
170      rps->setDeltaPOC(j,poc);
171      READ_FLAG(code, "used_by_curr_pic_s1_flag");  rps->setUsed(j,code);
172    }
173    rps->setNumberOfPictures(rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures());
174  }
175#if PRINT_RPS_INFO
176  rps->printDeltaPOC();
177#endif
178}
179
180Void TDecCavlc::parsePPS(TComPPS* pcPPS
181#if Q0048_CGS_3D_ASYMLUT
182  , TCom3DAsymLUT * pc3DAsymLUT , Int nLayerID
183#endif
184  )
185{
186#if ENC_DEC_TRACE
187  xTracePPSHeader (pcPPS);
188#endif
189  UInt  uiCode;
190
191  Int   iCode;
192
193  READ_UVLC( uiCode, "pps_pic_parameter_set_id");
194  assert(uiCode <= 63);
195  pcPPS->setPPSId (uiCode);
196
197  READ_UVLC( uiCode, "pps_seq_parameter_set_id");
198  assert(uiCode <= 15);
199  pcPPS->setSPSId (uiCode);
200
201  READ_FLAG( uiCode, "dependent_slice_segments_enabled_flag"    );    pcPPS->setDependentSliceSegmentsEnabledFlag   ( uiCode == 1 );
202  READ_FLAG( uiCode, "output_flag_present_flag" );                    pcPPS->setOutputFlagPresentFlag( uiCode==1 );
203
204  READ_CODE(3, uiCode, "num_extra_slice_header_bits");                pcPPS->setNumExtraSliceHeaderBits(uiCode);
205  READ_FLAG ( uiCode, "sign_data_hiding_flag" ); pcPPS->setSignHideFlag( uiCode );
206
207  READ_FLAG( uiCode,   "cabac_init_present_flag" );            pcPPS->setCabacInitPresentFlag( uiCode ? true : false );
208
209  READ_UVLC(uiCode, "num_ref_idx_l0_default_active_minus1");
210  assert(uiCode <= 14);
211  pcPPS->setNumRefIdxL0DefaultActive(uiCode+1);
212
213  READ_UVLC(uiCode, "num_ref_idx_l1_default_active_minus1");
214  assert(uiCode <= 14);
215  pcPPS->setNumRefIdxL1DefaultActive(uiCode+1);
216
217  READ_SVLC(iCode, "init_qp_minus26" );                            pcPPS->setPicInitQPMinus26(iCode);
218  READ_FLAG( uiCode, "constrained_intra_pred_flag" );              pcPPS->setConstrainedIntraPred( uiCode ? true : false );
219  READ_FLAG( uiCode, "transform_skip_enabled_flag" );
220  pcPPS->setUseTransformSkip ( uiCode ? true : false );
221
222  READ_FLAG( uiCode, "cu_qp_delta_enabled_flag" );            pcPPS->setUseDQP( uiCode ? true : false );
223  if( pcPPS->getUseDQP() )
224  {
225    READ_UVLC( uiCode, "diff_cu_qp_delta_depth" );
226    pcPPS->setMaxCuDQPDepth( uiCode );
227  }
228  else
229  {
230    pcPPS->setMaxCuDQPDepth( 0 );
231  }
232  READ_SVLC( iCode, "pps_cb_qp_offset");
233  pcPPS->setChromaCbQpOffset(iCode);
234  assert( pcPPS->getChromaCbQpOffset() >= -12 );
235  assert( pcPPS->getChromaCbQpOffset() <=  12 );
236
237  READ_SVLC( iCode, "pps_cr_qp_offset");
238  pcPPS->setChromaCrQpOffset(iCode);
239  assert( pcPPS->getChromaCrQpOffset() >= -12 );
240  assert( pcPPS->getChromaCrQpOffset() <=  12 );
241
242  READ_FLAG( uiCode, "pps_slice_chroma_qp_offsets_present_flag" );
243  pcPPS->setSliceChromaQpFlag( uiCode ? true : false );
244
245  READ_FLAG( uiCode, "weighted_pred_flag" );          // Use of Weighting Prediction (P_SLICE)
246  pcPPS->setUseWP( uiCode==1 );
247  READ_FLAG( uiCode, "weighted_bipred_flag" );         // Use of Bi-Directional Weighting Prediction (B_SLICE)
248  pcPPS->setWPBiPred( uiCode==1 );
249
250  READ_FLAG( uiCode, "transquant_bypass_enable_flag");
251  pcPPS->setTransquantBypassEnableFlag(uiCode ? true : false);
252  READ_FLAG( uiCode, "tiles_enabled_flag"               );    pcPPS->setTilesEnabledFlag            ( uiCode == 1 );
253  READ_FLAG( uiCode, "entropy_coding_sync_enabled_flag" );    pcPPS->setEntropyCodingSyncEnabledFlag( uiCode == 1 );
254
255  if( pcPPS->getTilesEnabledFlag() )
256  {
257    READ_UVLC ( uiCode, "num_tile_columns_minus1" );                pcPPS->setNumColumnsMinus1( uiCode );
258    READ_UVLC ( uiCode, "num_tile_rows_minus1" );                   pcPPS->setNumRowsMinus1( uiCode );
259    READ_FLAG ( uiCode, "uniform_spacing_flag" );                   pcPPS->setUniformSpacingFlag( uiCode );
260
261    if( !pcPPS->getUniformSpacingFlag())
262    {
263      UInt* columnWidth = (UInt*)malloc(pcPPS->getNumColumnsMinus1()*sizeof(UInt));
264      for(UInt i=0; i<pcPPS->getNumColumnsMinus1(); i++)
265      {
266        READ_UVLC( uiCode, "column_width_minus1" );
267        columnWidth[i] = uiCode+1;
268      }
269      pcPPS->setColumnWidth(columnWidth);
270      free(columnWidth);
271
272      UInt* rowHeight = (UInt*)malloc(pcPPS->getNumRowsMinus1()*sizeof(UInt));
273      for(UInt i=0; i<pcPPS->getNumRowsMinus1(); i++)
274      {
275        READ_UVLC( uiCode, "row_height_minus1" );
276        rowHeight[i] = uiCode + 1;
277      }
278      pcPPS->setRowHeight(rowHeight);
279      free(rowHeight);
280    }
281
282    if(pcPPS->getNumColumnsMinus1() !=0 || pcPPS->getNumRowsMinus1() !=0)
283    {
284      READ_FLAG ( uiCode, "loop_filter_across_tiles_enabled_flag" );   pcPPS->setLoopFilterAcrossTilesEnabledFlag( uiCode ? true : false );
285    }
286  }
287  READ_FLAG( uiCode, "loop_filter_across_slices_enabled_flag" );       pcPPS->setLoopFilterAcrossSlicesEnabledFlag( uiCode ? true : false );
288  READ_FLAG( uiCode, "deblocking_filter_control_present_flag" );       pcPPS->setDeblockingFilterControlPresentFlag( uiCode ? true : false );
289  if(pcPPS->getDeblockingFilterControlPresentFlag())
290  {
291    READ_FLAG( uiCode, "deblocking_filter_override_enabled_flag" );    pcPPS->setDeblockingFilterOverrideEnabledFlag( uiCode ? true : false );
292    READ_FLAG( uiCode, "pps_disable_deblocking_filter_flag" );         pcPPS->setPicDisableDeblockingFilterFlag(uiCode ? true : false );
293    if(!pcPPS->getPicDisableDeblockingFilterFlag())
294    {
295      READ_SVLC ( iCode, "pps_beta_offset_div2" );                     pcPPS->setDeblockingFilterBetaOffsetDiv2( iCode );
296      READ_SVLC ( iCode, "pps_tc_offset_div2" );                       pcPPS->setDeblockingFilterTcOffsetDiv2( iCode );
297    }
298  }
299
300#if SCALINGLIST_INFERRING
301  if( pcPPS->getLayerId() > 0 )
302  {
303    READ_FLAG( uiCode, "pps_infer_scaling_list_flag" );
304    pcPPS->setInferScalingListFlag( uiCode );
305  }
306
307  if( pcPPS->getInferScalingListFlag() )
308  {
309    READ_UVLC( uiCode, "pps_scaling_list_ref_layer_id" ); pcPPS->setScalingListRefLayerId( uiCode );
310
311    // The value of pps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive
312    assert( pcPPS->getScalingListRefLayerId() <= 62 );
313
314    pcPPS->setScalingListPresentFlag( false );
315  }
316  else
317  {
318#endif
319
320  READ_FLAG( uiCode, "pps_scaling_list_data_present_flag" );           pcPPS->setScalingListPresentFlag( uiCode ? true : false );
321
322  if(pcPPS->getScalingListPresentFlag ())
323  {
324    parseScalingList( pcPPS->getScalingList() );
325  }
326
327#if SCALINGLIST_INFERRING
328  }
329#endif
330
331  READ_FLAG( uiCode, "lists_modification_present_flag");
332  pcPPS->setListsModificationPresentFlag(uiCode);
333
334  READ_UVLC( uiCode, "log2_parallel_merge_level_minus2");
335  pcPPS->setLog2ParallelMergeLevelMinus2 (uiCode);
336
337  READ_FLAG( uiCode, "slice_segment_header_extension_present_flag");
338  pcPPS->setSliceHeaderExtensionPresentFlag(uiCode);
339
340  READ_FLAG( uiCode, "pps_extension_flag");
341#if POC_RESET_INFO_INFERENCE
342  pcPPS->setExtensionFlag( uiCode ? true : false );
343
344  if( pcPPS->getExtensionFlag() )
345#else
346  if (uiCode)
347#endif 
348  {
349#if P0166_MODIFIED_PPS_EXTENSION
350    UInt ppsExtensionTypeFlag[8];
351    for (UInt i = 0; i < 8; i++)
352    {
353      READ_FLAG( ppsExtensionTypeFlag[i], "pps_extension_type_flag" );
354    }
355#if !POC_RESET_IDC
356    if (ppsExtensionTypeFlag[1])
357    {
358#else
359    if( ppsExtensionTypeFlag[0] )
360    {
361      READ_FLAG( uiCode, "poc_reset_info_present_flag" );
362      pcPPS->setPocResetInfoPresentFlag(uiCode ? true : false);
363#if Q0048_CGS_3D_ASYMLUT
364      READ_FLAG( uiCode , "colour_mapping_enabled_flag" ); 
365      pcPPS->setCGSFlag( uiCode );
366      if( pcPPS->getCGSFlag() )
367      {
368        xParse3DAsymLUT( pc3DAsymLUT );
369        pcPPS->setCGSOutputBitDepthY( pc3DAsymLUT->getOutputBitDepthY() );
370        pcPPS->setCGSOutputBitDepthC( pc3DAsymLUT->getOutputBitDepthC() );
371      }
372#endif
373#endif
374    }
375#if POC_RESET_INFO_INFERENCE
376    else  // Extension type 0 absent
377    {
378      pcPPS->setPocResetInfoPresentFlag( false );
379    }
380#endif
381    if (ppsExtensionTypeFlag[7])
382    {
383#endif
384
385    while ( xMoreRbspData() )
386    {
387      READ_FLAG( uiCode, "pps_extension_data_flag");
388    }
389#if P0166_MODIFIED_PPS_EXTENSION
390    }
391#endif
392  }
393#if POC_RESET_INFO_INFERENCE
394  if( !pcPPS->getExtensionFlag() )
395  {
396    pcPPS->setPocResetInfoPresentFlag( false );
397  }
398#endif
399}
400
401Void  TDecCavlc::parseVUI(TComVUI* pcVUI, TComSPS *pcSPS)
402{
403#if ENC_DEC_TRACE
404  fprintf( g_hTrace, "----------- vui_parameters -----------\n");
405#endif
406  UInt  uiCode;
407
408  READ_FLAG(     uiCode, "aspect_ratio_info_present_flag");           pcVUI->setAspectRatioInfoPresentFlag(uiCode);
409  if (pcVUI->getAspectRatioInfoPresentFlag())
410  {
411    READ_CODE(8, uiCode, "aspect_ratio_idc");                         pcVUI->setAspectRatioIdc(uiCode);
412    if (pcVUI->getAspectRatioIdc() == 255)
413    {
414      READ_CODE(16, uiCode, "sar_width");                             pcVUI->setSarWidth(uiCode);
415      READ_CODE(16, uiCode, "sar_height");                            pcVUI->setSarHeight(uiCode);
416    }
417  }
418
419  READ_FLAG(     uiCode, "overscan_info_present_flag");               pcVUI->setOverscanInfoPresentFlag(uiCode);
420  if (pcVUI->getOverscanInfoPresentFlag())
421  {
422    READ_FLAG(   uiCode, "overscan_appropriate_flag");                pcVUI->setOverscanAppropriateFlag(uiCode);
423  }
424
425  READ_FLAG(     uiCode, "video_signal_type_present_flag");           pcVUI->setVideoSignalTypePresentFlag(uiCode);
426  if (pcVUI->getVideoSignalTypePresentFlag())
427  {
428    READ_CODE(3, uiCode, "video_format");                             pcVUI->setVideoFormat(uiCode);
429    READ_FLAG(   uiCode, "video_full_range_flag");                    pcVUI->setVideoFullRangeFlag(uiCode);
430    READ_FLAG(   uiCode, "colour_description_present_flag");          pcVUI->setColourDescriptionPresentFlag(uiCode);
431    if (pcVUI->getColourDescriptionPresentFlag())
432    {
433      READ_CODE(8, uiCode, "colour_primaries");                       pcVUI->setColourPrimaries(uiCode);
434      READ_CODE(8, uiCode, "transfer_characteristics");               pcVUI->setTransferCharacteristics(uiCode);
435      READ_CODE(8, uiCode, "matrix_coefficients");                    pcVUI->setMatrixCoefficients(uiCode);
436    }
437  }
438
439  READ_FLAG(     uiCode, "chroma_loc_info_present_flag");             pcVUI->setChromaLocInfoPresentFlag(uiCode);
440  if (pcVUI->getChromaLocInfoPresentFlag())
441  {
442    READ_UVLC(   uiCode, "chroma_sample_loc_type_top_field" );        pcVUI->setChromaSampleLocTypeTopField(uiCode);
443    READ_UVLC(   uiCode, "chroma_sample_loc_type_bottom_field" );     pcVUI->setChromaSampleLocTypeBottomField(uiCode);
444  }
445
446  READ_FLAG(     uiCode, "neutral_chroma_indication_flag");           pcVUI->setNeutralChromaIndicationFlag(uiCode);
447
448  READ_FLAG(     uiCode, "field_seq_flag");                           pcVUI->setFieldSeqFlag(uiCode);
449
450  READ_FLAG(uiCode, "frame_field_info_present_flag");                 pcVUI->setFrameFieldInfoPresentFlag(uiCode);
451
452  READ_FLAG(     uiCode, "default_display_window_flag");
453  if (uiCode != 0)
454  {
455    Window &defDisp = pcVUI->getDefaultDisplayWindow();
456    READ_UVLC(   uiCode, "def_disp_win_left_offset" );                defDisp.setWindowLeftOffset  ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc()) );
457    READ_UVLC(   uiCode, "def_disp_win_right_offset" );               defDisp.setWindowRightOffset ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc()) );
458    READ_UVLC(   uiCode, "def_disp_win_top_offset" );                 defDisp.setWindowTopOffset   ( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc()) );
459    READ_UVLC(   uiCode, "def_disp_win_bottom_offset" );              defDisp.setWindowBottomOffset( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc()) );
460  }
461  TimingInfo *timingInfo = pcVUI->getTimingInfo();
462  READ_FLAG(       uiCode, "vui_timing_info_present_flag");         timingInfo->setTimingInfoPresentFlag      (uiCode ? true : false);
463#if SVC_EXTENSION
464  if( pcSPS->getLayerId() > 0 )
465  {
466    assert( timingInfo->getTimingInfoPresentFlag() == false );
467  }
468#endif
469  if(timingInfo->getTimingInfoPresentFlag())
470  {
471    READ_CODE( 32, uiCode, "vui_num_units_in_tick");                timingInfo->setNumUnitsInTick             (uiCode);
472    READ_CODE( 32, uiCode, "vui_time_scale");                       timingInfo->setTimeScale                  (uiCode);
473    READ_FLAG(     uiCode, "vui_poc_proportional_to_timing_flag");  timingInfo->setPocProportionalToTimingFlag(uiCode ? true : false);
474    if(timingInfo->getPocProportionalToTimingFlag())
475    {
476      READ_UVLC(   uiCode, "vui_num_ticks_poc_diff_one_minus1");    timingInfo->setNumTicksPocDiffOneMinus1   (uiCode);
477    }
478  READ_FLAG(     uiCode, "hrd_parameters_present_flag");              pcVUI->setHrdParametersPresentFlag(uiCode);
479  if( pcVUI->getHrdParametersPresentFlag() )
480  {
481    parseHrdParameters( pcVUI->getHrdParameters(), 1, pcSPS->getMaxTLayers() - 1 );
482  }
483  }
484  READ_FLAG(     uiCode, "bitstream_restriction_flag");               pcVUI->setBitstreamRestrictionFlag(uiCode);
485  if (pcVUI->getBitstreamRestrictionFlag())
486  {
487    READ_FLAG(   uiCode, "tiles_fixed_structure_flag");               pcVUI->setTilesFixedStructureFlag(uiCode);
488    READ_FLAG(   uiCode, "motion_vectors_over_pic_boundaries_flag");  pcVUI->setMotionVectorsOverPicBoundariesFlag(uiCode);
489    READ_FLAG(   uiCode, "restricted_ref_pic_lists_flag");            pcVUI->setRestrictedRefPicListsFlag(uiCode);
490    READ_UVLC( uiCode, "min_spatial_segmentation_idc");            pcVUI->setMinSpatialSegmentationIdc(uiCode);
491    assert(uiCode < 4096);
492    READ_UVLC(   uiCode, "max_bytes_per_pic_denom" );                 pcVUI->setMaxBytesPerPicDenom(uiCode);
493    READ_UVLC(   uiCode, "max_bits_per_mincu_denom" );                pcVUI->setMaxBitsPerMinCuDenom(uiCode);
494    READ_UVLC(   uiCode, "log2_max_mv_length_horizontal" );           pcVUI->setLog2MaxMvLengthHorizontal(uiCode);
495    READ_UVLC(   uiCode, "log2_max_mv_length_vertical" );             pcVUI->setLog2MaxMvLengthVertical(uiCode);
496  }
497}
498
499Void TDecCavlc::parseHrdParameters(TComHRD *hrd, Bool commonInfPresentFlag, UInt maxNumSubLayersMinus1)
500{
501  UInt  uiCode;
502  if( commonInfPresentFlag )
503  {
504    READ_FLAG( uiCode, "nal_hrd_parameters_present_flag" );           hrd->setNalHrdParametersPresentFlag( uiCode == 1 ? true : false );
505    READ_FLAG( uiCode, "vcl_hrd_parameters_present_flag" );           hrd->setVclHrdParametersPresentFlag( uiCode == 1 ? true : false );
506    if( hrd->getNalHrdParametersPresentFlag() || hrd->getVclHrdParametersPresentFlag() )
507    {
508      READ_FLAG( uiCode, "sub_pic_cpb_params_present_flag" );         hrd->setSubPicCpbParamsPresentFlag( uiCode == 1 ? true : false );
509      if( hrd->getSubPicCpbParamsPresentFlag() )
510      {
511        READ_CODE( 8, uiCode, "tick_divisor_minus2" );                hrd->setTickDivisorMinus2( uiCode );
512        READ_CODE( 5, uiCode, "du_cpb_removal_delay_length_minus1" ); hrd->setDuCpbRemovalDelayLengthMinus1( uiCode );
513        READ_FLAG( uiCode, "sub_pic_cpb_params_in_pic_timing_sei_flag" ); hrd->setSubPicCpbParamsInPicTimingSEIFlag( uiCode == 1 ? true : false );
514        READ_CODE( 5, uiCode, "dpb_output_delay_du_length_minus1"  ); hrd->setDpbOutputDelayDuLengthMinus1( uiCode );
515      }
516      READ_CODE( 4, uiCode, "bit_rate_scale" );                       hrd->setBitRateScale( uiCode );
517      READ_CODE( 4, uiCode, "cpb_size_scale" );                       hrd->setCpbSizeScale( uiCode );
518      if( hrd->getSubPicCpbParamsPresentFlag() )
519      {
520        READ_CODE( 4, uiCode, "cpb_size_du_scale" );                  hrd->setDuCpbSizeScale( uiCode );
521      }
522      READ_CODE( 5, uiCode, "initial_cpb_removal_delay_length_minus1" ); hrd->setInitialCpbRemovalDelayLengthMinus1( uiCode );
523      READ_CODE( 5, uiCode, "au_cpb_removal_delay_length_minus1" );      hrd->setCpbRemovalDelayLengthMinus1( uiCode );
524      READ_CODE( 5, uiCode, "dpb_output_delay_length_minus1" );       hrd->setDpbOutputDelayLengthMinus1( uiCode );
525    }
526  }
527  Int i, j, nalOrVcl;
528  for( i = 0; i <= maxNumSubLayersMinus1; i ++ )
529  {
530    READ_FLAG( uiCode, "fixed_pic_rate_general_flag" );                     hrd->setFixedPicRateFlag( i, uiCode == 1 ? true : false  );
531    if( !hrd->getFixedPicRateFlag( i ) )
532    {
533      READ_FLAG( uiCode, "fixed_pic_rate_within_cvs_flag" );                hrd->setFixedPicRateWithinCvsFlag( i, uiCode == 1 ? true : false  );
534    }
535    else
536    {
537      hrd->setFixedPicRateWithinCvsFlag( i, true );
538    }
539    hrd->setLowDelayHrdFlag( i, 0 ); // Infered to be 0 when not present
540    hrd->setCpbCntMinus1   ( i, 0 ); // Infered to be 0 when not present
541    if( hrd->getFixedPicRateWithinCvsFlag( i ) )
542    {
543      READ_UVLC( uiCode, "elemental_duration_in_tc_minus1" );             hrd->setPicDurationInTcMinus1( i, uiCode );
544    }
545    else
546    {
547      READ_FLAG( uiCode, "low_delay_hrd_flag" );                      hrd->setLowDelayHrdFlag( i, uiCode == 1 ? true : false  );
548    }
549    if (!hrd->getLowDelayHrdFlag( i ))
550    {
551      READ_UVLC( uiCode, "cpb_cnt_minus1" );                          hrd->setCpbCntMinus1( i, uiCode );
552    }
553    for( nalOrVcl = 0; nalOrVcl < 2; nalOrVcl ++ )
554    {
555      if( ( ( nalOrVcl == 0 ) && ( hrd->getNalHrdParametersPresentFlag() ) ) ||
556          ( ( nalOrVcl == 1 ) && ( hrd->getVclHrdParametersPresentFlag() ) ) )
557      {
558        for( j = 0; j <= ( hrd->getCpbCntMinus1( i ) ); j ++ )
559        {
560          READ_UVLC( uiCode, "bit_rate_value_minus1" );             hrd->setBitRateValueMinus1( i, j, nalOrVcl, uiCode );
561          READ_UVLC( uiCode, "cpb_size_value_minus1" );             hrd->setCpbSizeValueMinus1( i, j, nalOrVcl, uiCode );
562          if( hrd->getSubPicCpbParamsPresentFlag() )
563          {
564            READ_UVLC( uiCode, "cpb_size_du_value_minus1" );       hrd->setDuCpbSizeValueMinus1( i, j, nalOrVcl, uiCode );
565            READ_UVLC( uiCode, "bit_rate_du_value_minus1" );       hrd->setDuBitRateValueMinus1( i, j, nalOrVcl, uiCode );
566          }
567          READ_FLAG( uiCode, "cbr_flag" );                          hrd->setCbrFlag( i, j, nalOrVcl, uiCode == 1 ? true : false  );
568        }
569      }
570    }
571  }
572}
573
574#if SVC_EXTENSION && !SPS_DPB_PARAMS
575Void TDecCavlc::parseSPS(TComSPS* pcSPS, ParameterSetManagerDecoder *parameterSetManager)
576#else
577Void TDecCavlc::parseSPS(TComSPS* pcSPS)
578#endif
579{
580#if ENC_DEC_TRACE
581  xTraceSPSHeader (pcSPS);
582#endif
583
584  UInt  uiCode;
585  READ_CODE( 4,  uiCode, "sps_video_parameter_set_id");          pcSPS->setVPSId        ( uiCode );
586#if SVC_EXTENSION
587  if(pcSPS->getLayerId() == 0)
588  {
589#endif
590    READ_CODE( 3,  uiCode, "sps_max_sub_layers_minus1" );          pcSPS->setMaxTLayers   ( uiCode+1 );
591    assert(uiCode <= 6);
592
593    READ_FLAG( uiCode, "sps_temporal_id_nesting_flag" );               pcSPS->setTemporalIdNestingFlag ( uiCode > 0 ? true : false );
594#if SVC_EXTENSION
595  }
596#if !SPS_DPB_PARAMS
597  else
598  {
599    pcSPS->setMaxTLayers           ( parameterSetManager->getPrefetchedVPS(pcSPS->getVPSId())->getMaxTLayers()          );
600    pcSPS->setTemporalIdNestingFlag( parameterSetManager->getPrefetchedVPS(pcSPS->getVPSId())->getTemporalNestingFlag() );
601  }
602#endif
603#endif
604
605#if !Q0177_SPS_TEMP_NESTING_FIX   //This part is not needed anymore as it is already covered by implementation in TDecTop::xActivateParameterSets()
606  if ( pcSPS->getMaxTLayers() == 1 )
607  {
608    // sps_temporal_id_nesting_flag must be 1 when sps_max_sub_layers_minus1 is 0
609#if SVC_EXTENSION
610#if !SPS_DPB_PARAMS
611    assert( pcSPS->getTemporalIdNestingFlag() == true );
612#endif
613#else
614    assert( uiCode == 1 );
615#endif
616  }
617#endif
618
619#ifdef SPS_PTL_FIX
620  if ( pcSPS->getLayerId() == 0)
621  {
622    parsePTL(pcSPS->getPTL(), 1, pcSPS->getMaxTLayers() - 1);
623  }
624#else
625  parsePTL(pcSPS->getPTL(), 1, pcSPS->getMaxTLayers() - 1);
626#endif
627
628  READ_UVLC(     uiCode, "sps_seq_parameter_set_id" );           pcSPS->setSPSId( uiCode );
629  assert(uiCode <= 15);
630
631#if REPN_FORMAT_IN_VPS
632  if( pcSPS->getLayerId() > 0 )
633  {
634    READ_FLAG( uiCode, "update_rep_format_flag" );
635    pcSPS->setUpdateRepFormatFlag( uiCode ? true : false );
636  }
637  else
638  {
639#if REP_FORMAT_FIX
640    pcSPS->setUpdateRepFormatFlag( false );
641#else
642    pcSPS->setUpdateRepFormatFlag( true );
643#endif
644  }
645#if O0096_REP_FORMAT_INDEX
646  if( pcSPS->getLayerId() == 0 )
647#else
648  if( pcSPS->getLayerId() == 0 || pcSPS->getUpdateRepFormatFlag() )
649#endif
650  {
651#endif
652#if AUXILIARY_PICTURES
653    READ_UVLC(     uiCode, "chroma_format_idc" );                  pcSPS->setChromaFormatIdc( ChromaFormat(uiCode) );
654#else
655    READ_UVLC(     uiCode, "chroma_format_idc" );                  pcSPS->setChromaFormatIdc( uiCode );
656#endif
657    assert(uiCode <= 3);
658    // 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
659    assert (uiCode == 1);
660    if( uiCode == 3 )
661    {
662      READ_FLAG(     uiCode, "separate_colour_plane_flag");        assert(uiCode == 0);
663    }
664
665    READ_UVLC (    uiCode, "pic_width_in_luma_samples" );          pcSPS->setPicWidthInLumaSamples ( uiCode    );
666    READ_UVLC (    uiCode, "pic_height_in_luma_samples" );         pcSPS->setPicHeightInLumaSamples( uiCode    );
667#if REPN_FORMAT_IN_VPS
668  }
669#if O0096_REP_FORMAT_INDEX
670  else if ( pcSPS->getUpdateRepFormatFlag() )
671  {
672    READ_CODE(8, uiCode, "update_rep_format_index");
673    pcSPS->setUpdateRepFormatIndex(uiCode);
674  }
675#endif
676#endif
677  READ_FLAG(     uiCode, "conformance_window_flag");
678  if (uiCode != 0)
679  {
680    Window &conf = pcSPS->getConformanceWindow();
681#if REPN_FORMAT_IN_VPS
682    READ_UVLC(   uiCode, "conf_win_left_offset" );               conf.setWindowLeftOffset  ( uiCode );
683    READ_UVLC(   uiCode, "conf_win_right_offset" );              conf.setWindowRightOffset ( uiCode );
684    READ_UVLC(   uiCode, "conf_win_top_offset" );                conf.setWindowTopOffset   ( uiCode );
685    READ_UVLC(   uiCode, "conf_win_bottom_offset" );             conf.setWindowBottomOffset( uiCode );
686#else
687    READ_UVLC(   uiCode, "conf_win_left_offset" );               conf.setWindowLeftOffset  ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc() ) );
688    READ_UVLC(   uiCode, "conf_win_right_offset" );              conf.setWindowRightOffset ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc() ) );
689    READ_UVLC(   uiCode, "conf_win_top_offset" );                conf.setWindowTopOffset   ( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc() ) );
690    READ_UVLC(   uiCode, "conf_win_bottom_offset" );             conf.setWindowBottomOffset( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc() ) );
691#endif
692  }
693#if REPN_FORMAT_IN_VPS
694#if O0096_REP_FORMAT_INDEX
695  if( pcSPS->getLayerId() == 0 )
696#else
697  if(  pcSPS->getLayerId() == 0 || pcSPS->getUpdateRepFormatFlag() )
698#endif
699  {
700#endif
701    READ_UVLC(     uiCode, "bit_depth_luma_minus8" );
702    assert(uiCode <= 6);
703    pcSPS->setBitDepthY( uiCode + 8 );
704    pcSPS->setQpBDOffsetY( (Int) (6*uiCode) );
705
706    READ_UVLC( uiCode,    "bit_depth_chroma_minus8" );
707    assert(uiCode <= 6);
708    pcSPS->setBitDepthC( uiCode + 8 );
709    pcSPS->setQpBDOffsetC( (Int) (6*uiCode) );
710#if REPN_FORMAT_IN_VPS
711  }
712#endif
713  READ_UVLC( uiCode,    "log2_max_pic_order_cnt_lsb_minus4" );   pcSPS->setBitsForPOC( 4 + uiCode );
714  assert(uiCode <= 12);
715
716#if SPS_DPB_PARAMS
717  if( pcSPS->getLayerId() == 0 ) 
718  {
719#endif
720    UInt subLayerOrderingInfoPresentFlag;
721    READ_FLAG(subLayerOrderingInfoPresentFlag, "sps_sub_layer_ordering_info_present_flag");
722
723    for(UInt i=0; i <= pcSPS->getMaxTLayers()-1; i++)
724    {
725      READ_UVLC ( uiCode, "sps_max_dec_pic_buffering_minus1[i]");
726      pcSPS->setMaxDecPicBuffering( uiCode + 1, i);
727      READ_UVLC ( uiCode, "sps_num_reorder_pics[i]" );
728      pcSPS->setNumReorderPics(uiCode, i);
729      READ_UVLC ( uiCode, "sps_max_latency_increase_plus1[i]");
730      pcSPS->setMaxLatencyIncrease( uiCode, i );
731
732      if (!subLayerOrderingInfoPresentFlag)
733      {
734        for (i++; i <= pcSPS->getMaxTLayers()-1; i++)
735        {
736          pcSPS->setMaxDecPicBuffering(pcSPS->getMaxDecPicBuffering(0), i);
737          pcSPS->setNumReorderPics(pcSPS->getNumReorderPics(0), i);
738          pcSPS->setMaxLatencyIncrease(pcSPS->getMaxLatencyIncrease(0), i);
739        }
740        break;
741      }
742    }
743#if SPS_DPB_PARAMS
744  }
745#endif
746  READ_UVLC( uiCode, "log2_min_coding_block_size_minus3" );
747  Int log2MinCUSize = uiCode + 3;
748  pcSPS->setLog2MinCodingBlockSize(log2MinCUSize);
749  READ_UVLC( uiCode, "log2_diff_max_min_coding_block_size" );
750  pcSPS->setLog2DiffMaxMinCodingBlockSize(uiCode);
751 
752  if (pcSPS->getPTL()->getGeneralPTL()->getLevelIdc() >= Level::LEVEL5)
753  {
754    assert(log2MinCUSize + pcSPS->getLog2DiffMaxMinCodingBlockSize() >= 5);
755  }
756 
757  Int maxCUDepthDelta = uiCode;
758  pcSPS->setMaxCUWidth  ( 1<<(log2MinCUSize + maxCUDepthDelta) );
759  pcSPS->setMaxCUHeight ( 1<<(log2MinCUSize + maxCUDepthDelta) );
760  READ_UVLC( uiCode, "log2_min_transform_block_size_minus2" );   pcSPS->setQuadtreeTULog2MinSize( uiCode + 2 );
761
762  READ_UVLC( uiCode, "log2_diff_max_min_transform_block_size" ); pcSPS->setQuadtreeTULog2MaxSize( uiCode + pcSPS->getQuadtreeTULog2MinSize() );
763  pcSPS->setMaxTrSize( 1<<(uiCode + pcSPS->getQuadtreeTULog2MinSize()) );
764
765  READ_UVLC( uiCode, "max_transform_hierarchy_depth_inter" );    pcSPS->setQuadtreeTUMaxDepthInter( uiCode+1 );
766  READ_UVLC( uiCode, "max_transform_hierarchy_depth_intra" );    pcSPS->setQuadtreeTUMaxDepthIntra( uiCode+1 );
767
768  Int addCuDepth = max (0, log2MinCUSize - (Int)pcSPS->getQuadtreeTULog2MinSize() );
769  pcSPS->setMaxCUDepth( maxCUDepthDelta + addCuDepth );
770  READ_FLAG( uiCode, "scaling_list_enabled_flag" );                 pcSPS->setScalingListFlag ( uiCode );
771
772  if(pcSPS->getScalingListFlag())
773  {
774#if SCALINGLIST_INFERRING
775    if( pcSPS->getLayerId() > 0 )
776    {
777      READ_FLAG( uiCode, "sps_infer_scaling_list_flag" ); pcSPS->setInferScalingListFlag( uiCode );
778    }
779
780    if( pcSPS->getInferScalingListFlag() )
781    {
782      READ_UVLC( uiCode, "sps_scaling_list_ref_layer_id" ); pcSPS->setScalingListRefLayerId( uiCode );
783
784      // The value of pps_scaling_list_ref_layer_id shall be in the range of 0 to 62, inclusive
785      assert( pcSPS->getScalingListRefLayerId() <= 62 );
786
787      pcSPS->setScalingListPresentFlag( false );
788    }
789    else
790    {
791#endif
792    READ_FLAG( uiCode, "sps_scaling_list_data_present_flag" );                 pcSPS->setScalingListPresentFlag ( uiCode );
793    if(pcSPS->getScalingListPresentFlag ())
794    {
795      parseScalingList( pcSPS->getScalingList() );
796    }
797#if SCALINGLIST_INFERRING
798    }
799#endif
800  }
801  READ_FLAG( uiCode, "amp_enabled_flag" );                          pcSPS->setUseAMP( uiCode );
802  READ_FLAG( uiCode, "sample_adaptive_offset_enabled_flag" );       pcSPS->setUseSAO ( uiCode ? true : false );
803
804  READ_FLAG( uiCode, "pcm_enabled_flag" ); pcSPS->setUsePCM( uiCode ? true : false );
805  if( pcSPS->getUsePCM() )
806  {
807    READ_CODE( 4, uiCode, "pcm_sample_bit_depth_luma_minus1" );          pcSPS->setPCMBitDepthLuma   ( 1 + uiCode );
808    READ_CODE( 4, uiCode, "pcm_sample_bit_depth_chroma_minus1" );        pcSPS->setPCMBitDepthChroma ( 1 + uiCode );
809    READ_UVLC( uiCode, "log2_min_pcm_luma_coding_block_size_minus3" );   pcSPS->setPCMLog2MinSize (uiCode+3);
810    READ_UVLC( uiCode, "log2_diff_max_min_pcm_luma_coding_block_size" ); pcSPS->setPCMLog2MaxSize ( uiCode+pcSPS->getPCMLog2MinSize() );
811    READ_FLAG( uiCode, "pcm_loop_filter_disable_flag" );                 pcSPS->setPCMFilterDisableFlag ( uiCode ? true : false );
812  }
813
814  READ_UVLC( uiCode, "num_short_term_ref_pic_sets" );
815  assert(uiCode <= 64);
816  pcSPS->createRPSList(uiCode);
817
818  TComRPSList* rpsList = pcSPS->getRPSList();
819  TComReferencePictureSet* rps;
820
821  for(UInt i=0; i< rpsList->getNumberOfReferencePictureSets(); i++)
822  {
823    rps = rpsList->getReferencePictureSet(i);
824    parseShortTermRefPicSet(pcSPS,rps,i);
825  }
826  READ_FLAG( uiCode, "long_term_ref_pics_present_flag" );          pcSPS->setLongTermRefsPresent(uiCode);
827  if (pcSPS->getLongTermRefsPresent())
828  {
829    READ_UVLC( uiCode, "num_long_term_ref_pic_sps" );
830    pcSPS->setNumLongTermRefPicSPS(uiCode);
831    for (UInt k = 0; k < pcSPS->getNumLongTermRefPicSPS(); k++)
832    {
833      READ_CODE( pcSPS->getBitsForPOC(), uiCode, "lt_ref_pic_poc_lsb_sps" );
834      pcSPS->setLtRefPicPocLsbSps(k, uiCode);
835      READ_FLAG( uiCode,  "used_by_curr_pic_lt_sps_flag[i]");
836      pcSPS->setUsedByCurrPicLtSPSFlag(k, uiCode?1:0);
837    }
838  }
839  READ_FLAG( uiCode, "sps_temporal_mvp_enable_flag" );            pcSPS->setTMVPFlagsPresent(uiCode);
840  READ_FLAG( uiCode, "sps_strong_intra_smoothing_enable_flag" );  pcSPS->setUseStrongIntraSmoothing(uiCode);
841
842  READ_FLAG( uiCode, "vui_parameters_present_flag" );             pcSPS->setVuiParametersPresentFlag(uiCode);
843
844  if (pcSPS->getVuiParametersPresentFlag())
845  {
846    parseVUI(pcSPS->getVuiParameters(), pcSPS);
847  }
848
849  READ_FLAG( uiCode, "sps_extension_flag");
850
851#if SVC_EXTENSION
852  pcSPS->setExtensionFlag( uiCode ? true : false );
853
854  if( pcSPS->getExtensionFlag() )
855  {
856#if O0142_CONDITIONAL_SPS_EXTENSION
857    UInt spsExtensionTypeFlag[8];
858    for (UInt i = 0; i < 8; i++)
859    {
860      READ_FLAG( spsExtensionTypeFlag[i], "sps_extension_type_flag" );
861    }
862    if (spsExtensionTypeFlag[1])
863    {
864      parseSPSExtension( pcSPS );
865    }
866    if (spsExtensionTypeFlag[7])
867    {
868#else
869    parseSPSExtension( pcSPS );
870    READ_FLAG( uiCode, "sps_extension2_flag");
871    if(uiCode)
872    {
873#endif
874      while ( xMoreRbspData() )
875      {
876        READ_FLAG( uiCode, "sps_extension_data_flag");
877      }
878    }
879  }
880#else
881  if (uiCode)
882  {
883    while ( xMoreRbspData() )
884    {
885      READ_FLAG( uiCode, "sps_extension_data_flag");
886    }
887  }
888#endif
889}
890
891#if SVC_EXTENSION
892Void TDecCavlc::parseSPSExtension( TComSPS* pcSPS )
893{
894  UInt uiCode;
895  // more syntax elements to be parsed here
896
897  READ_FLAG( uiCode, "inter_view_mv_vert_constraint_flag" );
898  // Vertical MV component restriction is not used in SHVC CTC
899  assert( uiCode == 0 );
900
901  if( pcSPS->getLayerId() > 0 )
902  {
903    Int iCode;
904    READ_UVLC( uiCode,      "num_scaled_ref_layer_offsets" ); pcSPS->setNumScaledRefLayerOffsets(uiCode);
905    for(Int i = 0; i < pcSPS->getNumScaledRefLayerOffsets(); i++)
906    {
907      Window& scaledWindow = pcSPS->getScaledRefLayerWindow(i);
908#if O0098_SCALED_REF_LAYER_ID
909      READ_CODE( 6,  uiCode,  "scaled_ref_layer_id" );       pcSPS->setScaledRefLayerId( i, uiCode );
910#endif
911      READ_SVLC( iCode, "scaled_ref_layer_left_offset" );    scaledWindow.setWindowLeftOffset  (iCode << 1);
912      READ_SVLC( iCode, "scaled_ref_layer_top_offset" );     scaledWindow.setWindowTopOffset   (iCode << 1);
913      READ_SVLC( iCode, "scaled_ref_layer_right_offset" );   scaledWindow.setWindowRightOffset (iCode << 1);
914      READ_SVLC( iCode, "scaled_ref_layer_bottom_offset" );  scaledWindow.setWindowBottomOffset(iCode << 1);
915#if P0312_VERT_PHASE_ADJ
916      READ_FLAG( uiCode, "vert_phase_position_enable_flag" ); scaledWindow.setVertPhasePositionEnableFlag(uiCode);  pcSPS->setVertPhasePositionEnableFlag( pcSPS->getScaledRefLayerId(i), uiCode);   
917#endif
918    }
919  }
920}
921#endif
922
923Void TDecCavlc::parseVPS(TComVPS* pcVPS)
924{
925  UInt  uiCode;
926
927  READ_CODE( 4,  uiCode,  "vps_video_parameter_set_id" );         pcVPS->setVPSId( uiCode );
928  READ_CODE( 2,  uiCode,  "vps_reserved_three_2bits" );           assert(uiCode == 3);
929#if SVC_EXTENSION
930#if O0137_MAX_LAYERID
931  READ_CODE( 6,  uiCode,  "vps_max_layers_minus1" );              pcVPS->setMaxLayers( min( 62u, uiCode) + 1 );
932#else
933  READ_CODE( 6,  uiCode,  "vps_max_layers_minus1" );              pcVPS->setMaxLayers( uiCode + 1 );
934#endif
935#else
936  READ_CODE( 6,  uiCode,  "vps_reserved_zero_6bits" );            assert(uiCode == 0);
937#endif
938  READ_CODE( 3,  uiCode,  "vps_max_sub_layers_minus1" );          pcVPS->setMaxTLayers( uiCode + 1 ); assert(uiCode+1 <= MAX_TLAYER);
939  READ_FLAG(     uiCode,  "vps_temporal_id_nesting_flag" );       pcVPS->setTemporalNestingFlag( uiCode ? true:false );
940  assert (pcVPS->getMaxTLayers()>1||pcVPS->getTemporalNestingFlag());
941#if !P0125_REVERT_VPS_EXTN_OFFSET_TO_RESERVED
942#if VPS_EXTN_OFFSET
943  READ_CODE( 16, uiCode,  "vps_extension_offset" );               pcVPS->setExtensionOffset( uiCode );
944#else
945  READ_CODE( 16, uiCode,  "vps_reserved_ffff_16bits" );           assert(uiCode == 0xffff);
946#endif
947#else
948  READ_CODE( 16, uiCode,  "vps_reserved_ffff_16bits" );           assert(uiCode == 0xffff);
949#endif
950  parsePTL ( pcVPS->getPTL(), true, pcVPS->getMaxTLayers()-1);
951  UInt subLayerOrderingInfoPresentFlag;
952  READ_FLAG(subLayerOrderingInfoPresentFlag, "vps_sub_layer_ordering_info_present_flag");
953  for(UInt i = 0; i <= pcVPS->getMaxTLayers()-1; i++)
954  {
955    READ_UVLC( uiCode,  "vps_max_dec_pic_buffering_minus1[i]" );     pcVPS->setMaxDecPicBuffering( uiCode + 1, i );
956    READ_UVLC( uiCode,  "vps_num_reorder_pics[i]" );          pcVPS->setNumReorderPics( uiCode, i );
957    READ_UVLC( uiCode,  "vps_max_latency_increase_plus1[i]" );      pcVPS->setMaxLatencyIncrease( uiCode, i );
958
959    if (!subLayerOrderingInfoPresentFlag)
960    {
961      for (i++; i <= pcVPS->getMaxTLayers()-1; i++)
962      {
963        pcVPS->setMaxDecPicBuffering(pcVPS->getMaxDecPicBuffering(0), i);
964        pcVPS->setNumReorderPics(pcVPS->getNumReorderPics(0), i);
965        pcVPS->setMaxLatencyIncrease(pcVPS->getMaxLatencyIncrease(0), i);
966      }
967      break;
968    }
969  }
970
971#if SVC_EXTENSION
972  assert( pcVPS->getNumHrdParameters() < MAX_VPS_LAYER_SETS_PLUS1 );
973  assert( pcVPS->getMaxLayerId()       < MAX_VPS_LAYER_ID_PLUS1 );
974  READ_CODE( 6, uiCode, "vps_max_layer_id" );           pcVPS->setMaxLayerId( uiCode );
975  READ_UVLC(    uiCode, "vps_num_layer_sets_minus1" );  pcVPS->setNumLayerSets( uiCode + 1 );
976  for( UInt opsIdx = 1; opsIdx <= ( pcVPS->getNumLayerSets() - 1 ); opsIdx ++ )
977  {
978    // Operation point set
979    for( UInt i = 0; i <= pcVPS->getMaxLayerId(); i ++ )
980#else
981  assert( pcVPS->getNumHrdParameters() < MAX_VPS_OP_SETS_PLUS1 );
982  assert( pcVPS->getMaxNuhReservedZeroLayerId() < MAX_VPS_NUH_RESERVED_ZERO_LAYER_ID_PLUS1 );
983  READ_CODE( 6, uiCode, "vps_max_nuh_reserved_zero_layer_id" );   pcVPS->setMaxNuhReservedZeroLayerId( uiCode );
984  READ_UVLC(    uiCode, "vps_max_op_sets_minus1" );               pcVPS->setMaxOpSets( uiCode + 1 );
985  for( UInt opsIdx = 1; opsIdx <= ( pcVPS->getMaxOpSets() - 1 ); opsIdx ++ )
986  {
987    // Operation point set
988    for( UInt i = 0; i <= pcVPS->getMaxNuhReservedZeroLayerId(); i ++ )
989#endif
990    {
991      READ_FLAG( uiCode, "layer_id_included_flag[opsIdx][i]" );   pcVPS->setLayerIdIncludedFlag( uiCode == 1 ? true : false, opsIdx, i );
992    }
993  }
994#if DERIVE_LAYER_ID_LIST_VARIABLES
995  pcVPS->deriveLayerIdListVariables();
996#endif
997  TimingInfo *timingInfo = pcVPS->getTimingInfo();
998  READ_FLAG(       uiCode, "vps_timing_info_present_flag");         timingInfo->setTimingInfoPresentFlag      (uiCode ? true : false);
999  if(timingInfo->getTimingInfoPresentFlag())
1000  {
1001    READ_CODE( 32, uiCode, "vps_num_units_in_tick");                timingInfo->setNumUnitsInTick             (uiCode);
1002    READ_CODE( 32, uiCode, "vps_time_scale");                       timingInfo->setTimeScale                  (uiCode);
1003    READ_FLAG(     uiCode, "vps_poc_proportional_to_timing_flag");  timingInfo->setPocProportionalToTimingFlag(uiCode ? true : false);
1004    if(timingInfo->getPocProportionalToTimingFlag())
1005    {
1006      READ_UVLC(   uiCode, "vps_num_ticks_poc_diff_one_minus1");    timingInfo->setNumTicksPocDiffOneMinus1   (uiCode);
1007    }
1008    READ_UVLC( uiCode, "vps_num_hrd_parameters" );                  pcVPS->setNumHrdParameters( uiCode );
1009
1010    if( pcVPS->getNumHrdParameters() > 0 )
1011    {
1012      pcVPS->createHrdParamBuffer();
1013    }
1014    for( UInt i = 0; i < pcVPS->getNumHrdParameters(); i ++ )
1015    {
1016      READ_UVLC( uiCode, "hrd_op_set_idx" );                       pcVPS->setHrdOpSetIdx( uiCode, i );
1017      if( i > 0 )
1018      {
1019        READ_FLAG( uiCode, "cprms_present_flag[i]" );               pcVPS->setCprmsPresentFlag( uiCode == 1 ? true : false, i );
1020      }
1021      parseHrdParameters(pcVPS->getHrdParameters(i), pcVPS->getCprmsPresentFlag( i ), pcVPS->getMaxTLayers() - 1);
1022    }
1023  }
1024
1025#if SVC_EXTENSION
1026  READ_FLAG( uiCode,  "vps_extension_flag" );      pcVPS->setVpsExtensionFlag( uiCode ? true : false );
1027
1028  // When MaxLayersMinus1 is greater than 0, vps_extension_flag shall be equal to 1.
1029  if( pcVPS->getMaxLayers() > 1 )
1030  {
1031    assert( pcVPS->getVpsExtensionFlag() == true );
1032  }
1033
1034  if( pcVPS->getVpsExtensionFlag()  )
1035  {
1036    while ( m_pcBitstream->getNumBitsRead() % 8 != 0 )
1037    {
1038      READ_FLAG( uiCode, "vps_extension_alignment_bit_equal_to_one"); assert(uiCode == 1);
1039    }
1040    parseVPSExtension(pcVPS);
1041    READ_FLAG( uiCode, "vps_entension2_flag" );
1042    if(uiCode)
1043    {
1044      while ( xMoreRbspData() )
1045      {
1046        READ_FLAG( uiCode, "vps_extension_data_flag");
1047      }
1048    }
1049  }
1050  else
1051  {
1052    // set default parameters when syntax elements are not present
1053    defaultVPSExtension(pcVPS);   
1054  }
1055#else
1056  READ_FLAG( uiCode,  "vps_extension_flag" );
1057  if (uiCode)
1058  {
1059    while ( xMoreRbspData() )
1060    {
1061      READ_FLAG( uiCode, "vps_extension_data_flag");
1062    }
1063  }
1064#endif
1065
1066  return;
1067}
1068
1069#if SVC_EXTENSION
1070Void TDecCavlc::parseVPSExtension(TComVPS *vps)
1071{
1072  UInt uiCode;
1073  // ... More syntax elements to be parsed here
1074#if P0300_ALT_OUTPUT_LAYER_FLAG
1075  Int NumOutputLayersInOutputLayerSet[MAX_VPS_LAYER_SETS_PLUS1];
1076  Int OlsHighestOutputLayerId[MAX_VPS_LAYER_SETS_PLUS1];
1077#endif
1078#if VPS_EXTN_MASK_AND_DIM_INFO
1079  UInt numScalabilityTypes = 0, i = 0, j = 0;
1080
1081  READ_FLAG( uiCode, "avc_base_layer_flag" ); vps->setAvcBaseLayerFlag(uiCode ? true : false);
1082
1083#if !P0307_REMOVE_VPS_VUI_OFFSET
1084#if O0109_MOVE_VPS_VUI_FLAG
1085  READ_FLAG( uiCode, "vps_vui_present_flag"); vps->setVpsVuiPresentFlag(uiCode ? true : false);
1086  if ( uiCode )
1087  {
1088#endif
1089#if VPS_VUI_OFFSET
1090  READ_CODE( 16, uiCode, "vps_vui_offset" );  vps->setVpsVuiOffset( uiCode );
1091#endif
1092#if O0109_MOVE_VPS_VUI_FLAG
1093  }
1094#endif
1095#endif
1096  READ_FLAG( uiCode, "splitting_flag" ); vps->setSplittingFlag(uiCode ? true : false);
1097
1098  for(i = 0; i < MAX_VPS_NUM_SCALABILITY_TYPES; i++)
1099  {
1100    READ_FLAG( uiCode, "scalability_mask[i]" ); vps->setScalabilityMask(i, uiCode ? true : false);
1101    numScalabilityTypes += uiCode;
1102  }
1103  vps->setNumScalabilityTypes(numScalabilityTypes);
1104
1105  for(j = 0; j < numScalabilityTypes - vps->getSplittingFlag(); j++)
1106  {
1107    READ_CODE( 3, uiCode, "dimension_id_len_minus1[j]" ); vps->setDimensionIdLen(j, uiCode + 1);
1108  }
1109
1110  // The value of dimBitOffset[ NumScalabilityTypes ] is set equal to 6.
1111  if(vps->getSplittingFlag())
1112  {
1113    UInt numBits = 0;
1114    for(j = 0; j < numScalabilityTypes - 1; j++)
1115    {
1116      numBits += vps->getDimensionIdLen(j);
1117    }
1118    assert( numBits < 6 );
1119    vps->setDimensionIdLen(numScalabilityTypes-1, 6 - numBits);
1120    numBits = 6;
1121  }
1122
1123  READ_FLAG( uiCode, "vps_nuh_layer_id_present_flag" ); vps->setNuhLayerIdPresentFlag(uiCode ? true : false);
1124  vps->setLayerIdInNuh(0, 0);
1125  vps->setLayerIdInVps(0, 0);
1126  for(i = 1; i < vps->getMaxLayers(); i++)
1127  {
1128    if( vps->getNuhLayerIdPresentFlag() )
1129    {
1130      READ_CODE( 6, uiCode, "layer_id_in_nuh[i]" ); vps->setLayerIdInNuh(i, uiCode);
1131      assert( uiCode > vps->getLayerIdInNuh(i-1) );
1132    }
1133    else
1134    {
1135      vps->setLayerIdInNuh(i, i);
1136    }
1137    vps->setLayerIdInVps(vps->getLayerIdInNuh(i), i);
1138
1139    if( !vps->getSplittingFlag() )
1140    {
1141    for(j = 0; j < numScalabilityTypes; j++)
1142    {
1143      READ_CODE( vps->getDimensionIdLen(j), uiCode, "dimension_id[i][j]" ); vps->setDimensionId(i, j, uiCode);
1144#if !AUXILIARY_PICTURES
1145      assert( uiCode <= vps->getMaxLayerId() );
1146#endif
1147    }
1148  }
1149  }
1150#endif
1151#if VIEW_ID_RELATED_SIGNALING
1152  // if ( pcVPS->getNumViews() > 1 )
1153  //   However, this is a bug in the text since, view_id_len_minus1 is needed to parse view_id_val.
1154  {
1155#if O0109_VIEW_ID_LEN
1156    READ_CODE( 4, uiCode, "view_id_len" ); vps->setViewIdLen( uiCode );
1157#else
1158    READ_CODE( 4, uiCode, "view_id_len_minus1" ); vps->setViewIdLenMinus1( uiCode );
1159#endif
1160  }
1161
1162#if O0109_VIEW_ID_LEN
1163  if ( vps->getViewIdLen() > 0 )
1164  {
1165    for(  i = 0; i < vps->getNumViews(); i++ )
1166    {
1167      READ_CODE( vps->getViewIdLen( ), uiCode, "view_id_val[i]" ); vps->setViewIdVal( i, uiCode );
1168    }
1169  }
1170#else
1171  for(  i = 0; i < vps->getNumViews(); i++ )
1172  {
1173    READ_CODE( vps->getViewIdLenMinus1( ) + 1, uiCode, "view_id_val[i]" ); vps->setViewIdVal( i, uiCode );
1174  }
1175#endif
1176#endif // view id related signaling
1177#if VPS_EXTN_DIRECT_REF_LAYERS
1178  // For layer 0
1179  vps->setNumDirectRefLayers(0, 0);
1180  // For other layers
1181  for( Int layerCtr = 1; layerCtr <= vps->getMaxLayers() - 1; layerCtr++)
1182  {
1183    UInt numDirectRefLayers = 0;
1184    for( Int refLayerCtr = 0; refLayerCtr < layerCtr; refLayerCtr++)
1185    {
1186      READ_FLAG(uiCode, "direct_dependency_flag[i][j]" ); vps->setDirectDependencyFlag(layerCtr, refLayerCtr, uiCode? true : false);
1187      if(uiCode)
1188      {
1189        vps->setRefLayerId(layerCtr, numDirectRefLayers, refLayerCtr);
1190        numDirectRefLayers++;
1191      }
1192    }
1193    vps->setNumDirectRefLayers(layerCtr, numDirectRefLayers);
1194  }
1195#endif
1196#if Q0078_ADD_LAYER_SETS
1197#if O0092_0094_DEPENDENCY_CONSTRAINT // Moved here
1198  vps->setNumRefLayers();
1199
1200  if (vps->getMaxLayers() > MAX_REF_LAYERS)
1201  {
1202    for (i = 1; i < vps->getMaxLayers(); i++)
1203    {
1204      assert(vps->getNumRefLayers(vps->getLayerIdInNuh(i)) <= MAX_REF_LAYERS);
1205    }
1206  }
1207#endif
1208  vps->setPredictedLayerIds();
1209  vps->setTreePartitionLayerIdList();
1210#endif
1211#if VPS_TSLAYERS
1212  READ_FLAG( uiCode, "vps_sub_layers_max_minus1_present_flag"); vps->setMaxTSLayersPresentFlag(uiCode ? true : false);
1213
1214  if (vps->getMaxTSLayersPresentFlag())
1215  {
1216    for(i = 0; i < vps->getMaxLayers(); i++)
1217    {
1218      READ_CODE( 3, uiCode, "sub_layers_vps_max_minus1[i]" ); vps->setMaxTSLayersMinus1(i, uiCode);
1219    }
1220  }
1221  else
1222  {
1223    for( i = 0; i < vps->getMaxLayers(); i++)
1224    {
1225      vps->setMaxTSLayersMinus1(i, vps->getMaxTLayers()-1);
1226    }
1227  }
1228#endif
1229  READ_FLAG( uiCode, "max_tid_ref_present_flag"); vps->setMaxTidRefPresentFlag(uiCode ? true : false);
1230  if (vps->getMaxTidRefPresentFlag())
1231  {
1232    for(i = 0; i < vps->getMaxLayers() - 1; i++)
1233    {
1234#if O0225_MAX_TID_FOR_REF_LAYERS
1235       for( j = i+1; j <= vps->getMaxLayers() - 1; j++)
1236       {
1237         if(vps->getDirectDependencyFlag(j, i))
1238         {
1239           READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i][j]" ); vps->setMaxTidIlRefPicsPlus1(i, j, uiCode);
1240           assert( uiCode <= vps->getMaxTLayers());
1241         }
1242       }
1243#else
1244      READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i]" ); vps->setMaxTidIlRefPicsPlus1(i, uiCode);
1245      assert( uiCode <= vps->getMaxTLayers());
1246#endif
1247    }
1248  }
1249  else
1250  {
1251    for(i = 0; i < vps->getMaxLayers() - 1; i++)
1252    {
1253#if O0225_MAX_TID_FOR_REF_LAYERS
1254       for( j = i+1; j <= vps->getMaxLayers() - 1; j++)
1255       {
1256          vps->setMaxTidIlRefPicsPlus1(i, j, 7);
1257       }
1258#else
1259      vps->setMaxTidIlRefPicsPlus1(i, 7);
1260#endif
1261    }
1262  }
1263  READ_FLAG( uiCode, "all_ref_layers_active_flag" ); vps->setIlpSshSignalingEnabledFlag(uiCode ? true : false);
1264#if VPS_EXTN_PROFILE_INFO
1265  // Profile-tier-level signalling
1266#if !VPS_EXTN_UEV_CODING
1267  READ_CODE( 10, uiCode, "vps_number_layer_sets_minus1" );     assert( uiCode == (vps->getNumLayerSets() - 1) );
1268  READ_CODE(  6, uiCode, "vps_num_profile_tier_level_minus1"); vps->setNumProfileTierLevel( uiCode + 1 );
1269#else
1270  READ_UVLC(  uiCode, "vps_num_profile_tier_level_minus1"); vps->setNumProfileTierLevel( uiCode + 1 );
1271#endif
1272  vps->getPTLForExtnPtr()->resize(vps->getNumProfileTierLevel());
1273  for(Int idx = 1; idx <= vps->getNumProfileTierLevel() - 1; idx++)
1274  {
1275    READ_FLAG( uiCode, "vps_profile_present_flag[i]" ); vps->setProfilePresentFlag(idx, uiCode ? true : false);
1276    if( !vps->getProfilePresentFlag(idx) )
1277    {
1278#if P0048_REMOVE_PROFILE_REF
1279      // Copy profile information from previous one
1280      vps->getPTLForExtn(idx)->copyProfileInfo( (idx==1) ? vps->getPTL() : vps->getPTLForExtn( idx - 1 ) );
1281#else
1282      READ_CODE( 6, uiCode, "profile_ref_minus1[i]" ); vps->setProfileLayerSetRef(idx, uiCode + 1);
1283#if O0109_PROF_REF_MINUS1
1284      assert( vps->getProfileLayerSetRef(idx) <= idx );
1285#else
1286      assert( vps->getProfileLayerSetRef(idx) < idx );
1287#endif
1288      // Copy profile information as indicated
1289      vps->getPTLForExtn(idx)->copyProfileInfo( vps->getPTLForExtn( vps->getProfileLayerSetRef(idx) ) );
1290#endif
1291    }
1292    parsePTL( vps->getPTLForExtn(idx), vps->getProfilePresentFlag(idx), vps->getMaxTLayers() - 1 );
1293  }
1294#endif
1295
1296#if Q0078_ADD_LAYER_SETS
1297  if (vps->getNumIndependentLayers() > 1)
1298  {
1299    READ_UVLC(uiCode, "num_add_layer_sets"); vps->setNumAddLayerSets(uiCode);
1300    for (i = 0; i < vps->getNumAddLayerSets(); i++)
1301    {
1302      for (j = 1; j < vps->getNumIndependentLayers(); j++)
1303      {
1304        int len = 1;
1305        while ((1 << len) < (vps->getNumLayersInTreePartition(j) + 1))
1306        {
1307          len++;
1308        }
1309        READ_CODE(len, uiCode, "highest_layer_idx_plus1[i][j]"); vps->setHighestLayerIdxPlus1(i, j, uiCode);
1310      }
1311    }
1312
1313    for (i = 0; i < vps->getNumAddLayerSets(); i++)
1314    {
1315      for (j = 1; j < vps->getNumIndependentLayers(); j++)
1316      {
1317        Int layerNum = 0;
1318        Int lsIdx = vps->getNumLayerSets() + i;
1319        for (Int layerId = 0; layerId <= 62; layerId++)
1320        {
1321          vps->setLayerIdIncludedFlag(false, lsIdx, layerId);
1322          for (Int treeIdx = 1; treeIdx < vps->getNumIndependentLayers(); treeIdx++)
1323          {
1324            for (Int layerCnt = 0; layerCnt < vps->getHighestLayerIdxPlus1(i, j); layerCnt++)
1325            {
1326              vps->setLayerSetLayerIdList(lsIdx, layerNum, vps->getTreePartitionLayerId(treeIdx, layerCnt));
1327              vps->setLayerIdIncludedFlag(true, lsIdx, vps->getTreePartitionLayerId(treeIdx, layerCnt));
1328              layerNum++;
1329            }
1330          }
1331        }
1332        vps->setNumLayersInIdList(lsIdx, layerNum);
1333      }
1334    }
1335  }
1336#endif
1337
1338#if !VPS_EXTN_UEV_CODING
1339  READ_FLAG( uiCode, "more_output_layer_sets_than_default_flag" ); vps->setMoreOutputLayerSetsThanDefaultFlag( uiCode ? true : false );
1340  Int numOutputLayerSets = 0;
1341  if(! vps->getMoreOutputLayerSetsThanDefaultFlag() )
1342  {
1343    numOutputLayerSets = vps->getNumLayerSets();
1344  }
1345  else
1346  {
1347    READ_CODE( 10, uiCode, "num_add_output_layer_sets" );          vps->setNumAddOutputLayerSets( uiCode );
1348    numOutputLayerSets = vps->getNumLayerSets() + vps->getNumAddOutputLayerSets();
1349  }
1350#else
1351
1352#if Q0165_NUM_ADD_OUTPUT_LAYER_SETS
1353  if( vps->getNumLayerSets() > 1 )
1354  {
1355    READ_UVLC( uiCode, "num_add_output_layer_sets" );            vps->setNumAddOutputLayerSets( uiCode );
1356    READ_CODE( 2, uiCode, "default_target_output_layer_idc" );   vps->setDefaultTargetOutputLayerIdc( uiCode );
1357  }
1358  else
1359  {
1360    vps->setNumAddOutputLayerSets( 0 );
1361  }
1362#else
1363  READ_UVLC( uiCode, "num_add_output_layer_sets" );          vps->setNumAddOutputLayerSets( uiCode );
1364#endif
1365
1366  // The value of num_add_output_layer_sets shall be in the range of 0 to 1023, inclusive.
1367  assert( vps->getNumAddOutputLayerSets() >= 0 && vps->getNumAddOutputLayerSets() < 1024 );
1368
1369  Int numOutputLayerSets = vps->getNumLayerSets() + vps->getNumAddOutputLayerSets();
1370#endif
1371
1372#if P0295_DEFAULT_OUT_LAYER_IDC
1373#if !Q0165_NUM_ADD_OUTPUT_LAYER_SETS
1374  if( numOutputLayerSets > 1 )
1375  {
1376    READ_CODE( 2, uiCode, "default_target_output_layer_idc" );   vps->setDefaultTargetOutputLayerIdc( uiCode );
1377  }
1378#endif
1379  vps->setNumOutputLayerSets( numOutputLayerSets );
1380
1381  for(i = 1; i < numOutputLayerSets; i++)
1382  {
1383    if( i > (vps->getNumLayerSets() - 1) )
1384    {
1385      Int numBits = 1;
1386      while ((1 << numBits) < (vps->getNumLayerSets() - 1))
1387      {
1388        numBits++;
1389      }
1390      READ_CODE( numBits, uiCode, "output_layer_set_idx_minus1");   vps->setOutputLayerSetIdx( i, uiCode + 1);
1391    }
1392    else
1393    {
1394      vps->setOutputLayerSetIdx( i, i );
1395    }
1396    if ( i > (vps->getNumLayerSets() - 1) || vps->getDefaultTargetOutputLayerIdc() >= 2 )
1397    {
1398      Int lsIdx = vps->getOutputLayerSetIdx(i);
1399#if NUM_OL_FLAGS
1400      for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1401#else
1402      for(j = 0; j < vps->getNumLayersInIdList(lsIdx) - 1; j++)
1403#endif
1404      {
1405        READ_FLAG( uiCode, "output_layer_flag[i][j]"); vps->setOutputLayerFlag(i, j, uiCode);
1406      }
1407    }
1408    else
1409    {
1410      // i <= (vps->getNumLayerSets() - 1)
1411      // Assign OutputLayerFlag depending on default_one_target_output_layer_flag
1412      Int lsIdx = i;
1413      if( vps->getDefaultTargetOutputLayerIdc() == 1 )
1414      {
1415        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1416        {
1417          vps->setOutputLayerFlag(i, j, (j == (vps->getNumLayersInIdList(lsIdx)-1)) && (vps->getDimensionId(j,1) == 0) );
1418        }
1419      }
1420      else if ( vps->getDefaultTargetOutputLayerIdc() == 0 )
1421      {
1422        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1423        {
1424          vps->setOutputLayerFlag(i, j, 1);
1425        }
1426      }
1427    }
1428    Int numBits = 1;
1429    while ((1 << numBits) < (vps->getNumProfileTierLevel()))
1430    {
1431      numBits++;
1432    }
1433    READ_CODE( numBits, uiCode, "profile_level_tier_idx[i]" );     vps->setProfileLevelTierIdx(i, uiCode);
1434#if P0300_ALT_OUTPUT_LAYER_FLAG
1435    NumOutputLayersInOutputLayerSet[i] = 0;
1436    Int layerSetIdxForOutputLayerSet = vps->getOutputLayerSetIdx(i);
1437    for (j = 0; j < vps->getNumLayersInIdList(layerSetIdxForOutputLayerSet); j++)
1438    {
1439      NumOutputLayersInOutputLayerSet[i] += vps->getOutputLayerFlag(i, j);
1440      if (vps->getOutputLayerFlag(i, j))
1441      {
1442        OlsHighestOutputLayerId[i] = vps->getLayerSetLayerIdList(layerSetIdxForOutputLayerSet, j);
1443      }
1444    }
1445    if (NumOutputLayersInOutputLayerSet[i] == 1 && vps->getNumDirectRefLayers(OlsHighestOutputLayerId[i]) > 0)
1446    {
1447      READ_FLAG(uiCode, "alt_output_layer_flag[i]");
1448      vps->setAltOuputLayerFlag(i, uiCode ? true : false);
1449    }
1450#if Q0165_OUTPUT_LAYER_SET
1451    assert( NumOutputLayersInOutputLayerSet[i]>0 );
1452#endif
1453
1454#endif
1455  }
1456#else
1457  if( numOutputLayerSets > 1 )
1458  {
1459#if O0109_DEFAULT_ONE_OUT_LAYER_IDC
1460    READ_CODE( 2, uiCode, "default_one_target_output_layer_idc" );   vps->setDefaultOneTargetOutputLayerIdc( uiCode );
1461#else
1462    READ_FLAG( uiCode, "default_one_target_output_layer_flag" );   vps->setDefaultOneTargetOutputLayerFlag( uiCode ? true : false );
1463#endif
1464  }
1465  vps->setNumOutputLayerSets( numOutputLayerSets );
1466
1467  for(i = 1; i < numOutputLayerSets; i++)
1468  {
1469    if( i > (vps->getNumLayerSets() - 1) )
1470    {
1471      Int numBits = 1;
1472      while ((1 << numBits) < (vps->getNumLayerSets() - 1))
1473      {
1474        numBits++;
1475      }
1476      READ_CODE( numBits, uiCode, "output_layer_set_idx_minus1");   vps->setOutputLayerSetIdx( i, uiCode + 1);
1477      Int lsIdx = vps->getOutputLayerSetIdx(i);
1478#if NUM_OL_FLAGS
1479      for(j = 0; j < vps->getNumLayersInIdList(lsIdx) ; j++)
1480#else
1481      for(j = 0; j < vps->getNumLayersInIdList(lsIdx) - 1; j++)
1482#endif
1483      {
1484        READ_FLAG( uiCode, "output_layer_flag[i][j]"); vps->setOutputLayerFlag(i, j, uiCode);
1485      }
1486    }
1487    else
1488    {
1489#if VPS_DPB_SIZE_TABLE
1490      vps->setOutputLayerSetIdx( i, i );
1491#endif
1492      // i <= (vps->getNumLayerSets() - 1)
1493      // Assign OutputLayerFlag depending on default_one_target_output_layer_flag
1494      Int lsIdx = i;
1495#if O0109_DEFAULT_ONE_OUT_LAYER_IDC
1496      if( vps->getDefaultOneTargetOutputLayerIdc() == 1 )
1497      {
1498        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1499        {
1500#if O0135_DEFAULT_ONE_OUT_SEMANTIC
1501          vps->setOutputLayerFlag(i, j, (j == (vps->getNumLayersInIdList(lsIdx)-1)) && (vps->getDimensionId(j,1)==0) );
1502#else
1503          vps->setOutputLayerFlag(i, j, (j == (vps->getNumLayersInIdList(lsIdx)-1)));
1504#endif
1505        }
1506      }
1507      else if ( vps->getDefaultOneTargetOutputLayerIdc() == 0 )
1508      {
1509        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1510        {
1511          vps->setOutputLayerFlag(i, j, 1);
1512        }
1513      }
1514      else
1515      {
1516        // Other values of default_one_target_output_layer_idc than 0 and 1 are reserved for future use.
1517      }
1518#else
1519      if( vps->getDefaultOneTargetOutputLayerFlag() )
1520      {
1521        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1522        {
1523          vps->setOutputLayerFlag(i, j, (j == (vps->getNumLayersInIdList(lsIdx)-1)));
1524        }
1525      }
1526      else
1527      {
1528        for(j = 0; j < vps->getNumLayersInIdList(lsIdx); j++)
1529        {
1530          vps->setOutputLayerFlag(i, j, 1);
1531        }
1532      }
1533#endif
1534    }
1535    Int numBits = 1;
1536    while ((1 << numBits) < (vps->getNumProfileTierLevel()))
1537    {
1538      numBits++;
1539    }
1540    READ_CODE( numBits, uiCode, "profile_level_tier_idx[i]" );     vps->setProfileLevelTierIdx(i, uiCode);
1541  }
1542#endif
1543
1544#if !P0300_ALT_OUTPUT_LAYER_FLAG
1545#if O0153_ALT_OUTPUT_LAYER_FLAG
1546  if( vps->getMaxLayers() > 1 )
1547  {
1548    READ_FLAG( uiCode, "alt_output_layer_flag");
1549    vps->setAltOuputLayerFlag( uiCode ? true : false );
1550  }
1551#endif
1552#endif
1553
1554#if REPN_FORMAT_IN_VPS
1555#if Q0195_REP_FORMAT_CLEANUP
1556  READ_UVLC( uiCode, "vps_num_rep_formats_minus1" );
1557  vps->setVpsNumRepFormats( uiCode + 1 );
1558
1559  // The value of vps_num_rep_formats_minus1 shall be in the range of 0 to 255, inclusive.
1560  assert( vps->getVpsNumRepFormats() > 0 && vps->getVpsNumRepFormats() <= 256 );
1561
1562  for(i = 0; i < vps->getVpsNumRepFormats(); i++)
1563  {
1564    // Read rep_format_structures
1565    parseRepFormat( vps->getVpsRepFormat(i), i > 0 ? vps->getVpsRepFormat(i-1) : 0 );
1566  }
1567
1568  // Default assignment for layer 0
1569  vps->setVpsRepFormatIdx( 0, 0 );
1570
1571  if( vps->getVpsNumRepFormats() > 1 )
1572  {
1573    READ_FLAG( uiCode, "rep_format_idx_present_flag");
1574    vps->setRepFormatIdxPresentFlag( uiCode ? true : false );
1575  }
1576  else
1577  {
1578    // When not present, the value of rep_format_idx_present_flag is inferred to be equal to 0
1579    vps->setRepFormatIdxPresentFlag( false );
1580  }
1581
1582  if( vps->getRepFormatIdxPresentFlag() )
1583  {
1584    for(i = 1; i < vps->getMaxLayers(); i++)
1585    {
1586      Int numBits = 1;
1587      while ((1 << numBits) < (vps->getVpsNumRepFormats()))
1588      {
1589        numBits++;
1590      }
1591      READ_CODE( numBits, uiCode, "vps_rep_format_idx[i]" );
1592      vps->setVpsRepFormatIdx( i, uiCode );
1593    }
1594  }
1595  else
1596  {
1597    // When not present, the value of vps_rep_format_idx[ i ] is inferred to be equal to Min (i, vps_num_rep_formats_minus1)
1598    for(i = 1; i < vps->getMaxLayers(); i++)
1599    {
1600      vps->setVpsRepFormatIdx( i, min( (Int)i, vps->getVpsNumRepFormats()-1 ) );
1601    }
1602  }
1603#else
1604  READ_FLAG( uiCode, "rep_format_idx_present_flag");
1605  vps->setRepFormatIdxPresentFlag( uiCode ? true : false );
1606
1607  if( vps->getRepFormatIdxPresentFlag() )
1608  {
1609#if O0096_REP_FORMAT_INDEX
1610#if !VPS_EXTN_UEV_CODING
1611    READ_CODE( 8, uiCode, "vps_num_rep_formats_minus1" );
1612#else
1613    READ_UVLC( uiCode, "vps_num_rep_formats_minus1" );
1614#endif
1615#else
1616    READ_CODE( 4, uiCode, "vps_num_rep_formats_minus1" );
1617#endif
1618    vps->setVpsNumRepFormats( uiCode + 1 );
1619  }
1620  else
1621  {
1622    // default assignment
1623    assert (vps->getMaxLayers() <= 16);       // If max_layers_is more than 15, num_rep_formats has to be signaled
1624    vps->setVpsNumRepFormats( vps->getMaxLayers() );
1625  }
1626
1627  // The value of vps_num_rep_formats_minus1 shall be in the range of 0 to 255, inclusive.
1628  assert( vps->getVpsNumRepFormats() > 0 && vps->getVpsNumRepFormats() <= 256 );
1629
1630  for(i = 0; i < vps->getVpsNumRepFormats(); i++)
1631  {
1632    // Read rep_format_structures
1633    parseRepFormat( vps->getVpsRepFormat(i), i > 0 ? vps->getVpsRepFormat(i-1) : 0 );
1634  }
1635
1636  // Default assignment for layer 0
1637  vps->setVpsRepFormatIdx( 0, 0 );
1638  if( vps->getRepFormatIdxPresentFlag() )
1639  {
1640    for(i = 1; i < vps->getMaxLayers(); i++)
1641    {
1642      if( vps->getVpsNumRepFormats() > 1 )
1643      {
1644#if O0096_REP_FORMAT_INDEX
1645#if !VPS_EXTN_UEV_CODING
1646        READ_CODE( 8, uiCode, "vps_rep_format_idx[i]" );
1647#else
1648        Int numBits = 1;
1649        while ((1 << numBits) < (vps->getVpsNumRepFormats()))
1650        {
1651          numBits++;
1652        }
1653        READ_CODE( numBits, uiCode, "vps_rep_format_idx[i]" );
1654#endif
1655#else
1656        READ_CODE( 4, uiCode, "vps_rep_format_idx[i]" );
1657#endif
1658        vps->setVpsRepFormatIdx( i, uiCode );
1659      }
1660      else
1661      {
1662        // default assignment - only one rep_format() structure
1663        vps->setVpsRepFormatIdx( i, 0 );
1664      }
1665    }
1666  }
1667  else
1668  {
1669    // default assignment - each layer assigned each rep_format() structure in the order signaled
1670    for(i = 1; i < vps->getMaxLayers(); i++)
1671    {
1672      vps->setVpsRepFormatIdx( i, i );
1673    }
1674  }
1675#endif
1676#endif
1677#if RESOLUTION_BASED_DPB
1678  vps->assignSubDpbIndices();
1679#endif
1680  READ_FLAG(uiCode, "max_one_active_ref_layer_flag" );
1681  vps->setMaxOneActiveRefLayerFlag(uiCode);
1682#if O0062_POC_LSB_NOT_PRESENT_FLAG
1683  for(i = 1; i< vps->getMaxLayers(); i++)
1684  {
1685    if( vps->getNumDirectRefLayers( vps->getLayerIdInNuh(i) ) == 0  )
1686    {
1687      READ_FLAG(uiCode, "poc_lsb_not_present_flag[i]");
1688      vps->setPocLsbNotPresentFlag(i, uiCode);
1689    }
1690  }
1691#endif
1692#if O0215_PHASE_ALIGNMENT
1693  READ_FLAG( uiCode, "cross_layer_phase_alignment_flag"); vps->setPhaseAlignFlag( uiCode == 1 ? true : false );
1694#endif
1695
1696#if !IRAP_ALIGN_FLAG_IN_VPS_VUI
1697  READ_FLAG(uiCode, "cross_layer_irap_aligned_flag" );
1698  vps->setCrossLayerIrapAlignFlag(uiCode);
1699#endif
1700
1701#if VPS_DPB_SIZE_TABLE
1702  parseVpsDpbSizeTable(vps);
1703#endif
1704
1705#if VPS_EXTN_DIRECT_REF_LAYERS
1706  READ_UVLC( uiCode,           "direct_dep_type_len_minus2"); vps->setDirectDepTypeLen(uiCode+2);
1707#if O0096_DEFAULT_DEPENDENCY_TYPE
1708  READ_FLAG(uiCode, "default_direct_dependency_type_flag"); 
1709  vps->setDefaultDirectDependecyTypeFlag(uiCode == 1? true : false);
1710  if (vps->getDefaultDirectDependencyTypeFlag())
1711  {
1712    READ_CODE( vps->getDirectDepTypeLen(), uiCode, "default_direct_dependency_type" ); 
1713    vps->setDefaultDirectDependecyType(uiCode);
1714  }
1715#endif
1716  for(i = 1; i < vps->getMaxLayers(); i++)
1717  {
1718    for(j = 0; j < i; j++)
1719    {
1720      if (vps->getDirectDependencyFlag(i, j))
1721      {
1722#if O0096_DEFAULT_DEPENDENCY_TYPE
1723        if (vps->getDefaultDirectDependencyTypeFlag())
1724        {
1725          vps->setDirectDependencyType(i, j, vps->getDefaultDirectDependencyType());
1726        }
1727        else
1728        {
1729          READ_CODE( vps->getDirectDepTypeLen(), uiCode, "direct_dependency_type[i][j]" ); 
1730          vps->setDirectDependencyType(i, j, uiCode);
1731        }
1732#else
1733        READ_CODE( vps->getDirectDepTypeLen(), uiCode, "direct_dependency_type[i][j]" ); 
1734        vps->setDirectDependencyType(i, j, uiCode);
1735#endif
1736      }
1737    }
1738  }
1739#endif
1740#if !Q0078_ADD_LAYER_SETS
1741#if O0092_0094_DEPENDENCY_CONSTRAINT // Moved up
1742  vps->setNumRefLayers();
1743
1744  if(vps->getMaxLayers() > MAX_REF_LAYERS)
1745  {
1746    for(i = 1;i < vps->getMaxLayers(); i++)
1747    {
1748      assert( vps->getNumRefLayers(vps->getLayerIdInNuh(i)) <= MAX_REF_LAYERS);
1749    }
1750  }
1751#endif
1752#endif
1753
1754#if P0307_VPS_NON_VUI_EXTENSION
1755  READ_UVLC( uiCode,           "vps_non_vui_extension_length"); vps->setVpsNonVuiExtLength((Int)uiCode);
1756
1757  // The value of vps_non_vui_extension_length shall be in the range of 0 to 4096, inclusive.
1758  assert( vps->getVpsNonVuiExtLength() >= 0 && vps->getVpsNonVuiExtLength() <= 4096 );
1759
1760#if P0307_VPS_NON_VUI_EXT_UPDATE
1761  Int nonVuiExtByte = uiCode;
1762  for (i = 1; i <= nonVuiExtByte; i++)
1763  {
1764    READ_CODE( 8, uiCode, "vps_non_vui_extension_data_byte" ); //just parse and discard for now.
1765  }
1766#else
1767  if ( vps->getVpsNonVuiExtLength() > 0 )
1768  {
1769    printf("\n\nUp to the current spec, the value of vps_non_vui_extension_length is supposed to be 0\n");
1770  }
1771#endif
1772#endif
1773
1774#if !O0109_O0199_FLAGS_TO_VUI
1775#if M0040_ADAPTIVE_RESOLUTION_CHANGE
1776  READ_FLAG(uiCode, "single_layer_for_non_irap_flag" ); vps->setSingleLayerForNonIrapFlag(uiCode == 1 ? true : false);
1777#endif
1778#if HIGHER_LAYER_IRAP_SKIP_FLAG
1779  READ_FLAG(uiCode, "higher_layer_irap_skip_flag" ); vps->setHigherLayerIrapSkipFlag(uiCode == 1 ? true : false);
1780#endif
1781#endif
1782
1783#if P0307_REMOVE_VPS_VUI_OFFSET
1784  READ_FLAG( uiCode, "vps_vui_present_flag"); vps->setVpsVuiPresentFlag(uiCode ? true : false);
1785#endif
1786
1787#if O0109_MOVE_VPS_VUI_FLAG
1788  if ( vps->getVpsVuiPresentFlag() )
1789#else
1790  READ_FLAG( uiCode,  "vps_vui_present_flag" );
1791  if (uiCode)
1792#endif
1793  {
1794    while ( m_pcBitstream->getNumBitsRead() % 8 != 0 )
1795    {
1796      READ_FLAG( uiCode, "vps_vui_alignment_bit_equal_to_one"); assert(uiCode == 1);
1797    }
1798    parseVPSVUI(vps);
1799  }
1800  else
1801  {
1802    // set default values for VPS VUI
1803    defaultVPSVUI( vps );
1804  }
1805}
1806
1807Void TDecCavlc::defaultVPSExtension( TComVPS* vps )
1808{
1809  // set default parameters when they are not present
1810  Int i, j;
1811
1812  // When layer_id_in_nuh[ i ] is not present, the value is inferred to be equal to i.
1813  for(i = 0; i < vps->getMaxLayers(); i++)
1814  {
1815    vps->setLayerIdInNuh(i, i);
1816    vps->setLayerIdInVps(vps->getLayerIdInNuh(i), i);
1817  }
1818
1819  // When not present, sub_layers_vps_max_minus1[ i ] is inferred to be equal to vps_max_sub_layers_minus1.
1820  for( i = 0; i < vps->getMaxLayers(); i++)
1821  {
1822    vps->setMaxTSLayersMinus1(i, vps->getMaxTLayers()-1);
1823  }
1824
1825  // When not present, max_tid_il_ref_pics_plus1[ i ][ j ] is inferred to be equal to 7.
1826  for( i = 0; i < vps->getMaxLayers() - 1; i++ )
1827  {
1828#if O0225_MAX_TID_FOR_REF_LAYERS
1829    for( j = i + 1; j < vps->getMaxLayers(); j++ )
1830    {
1831      vps->setMaxTidIlRefPicsPlus1(i, j, 7);
1832    }
1833#else
1834    vps->setMaxTidIlRefPicsPlus1(i, 7);
1835#endif
1836  }
1837 
1838  // When not present, the value of num_add_output_layer_sets is inferred to be equal to 0.
1839  // NumOutputLayerSets = num_add_output_layer_sets + vps_num_layer_sets_minus1 + 1
1840  vps->setNumOutputLayerSets( vps->getNumLayerSets() );
1841
1842  // For i in the range of 0 to NumOutputLayerSets-1, inclusive, the variable LayerSetIdxForOutputLayerSet[ i ] is derived as specified in the following:
1843  // LayerSetIdxForOutputLayerSet[ i ] = ( i <= vps_number_layer_sets_minus1 ) ? i : output_layer_set_idx_minus1[ i ] + 1
1844  for( i = 1; i < vps->getNumOutputLayerSets(); i++ )
1845  {
1846    vps->setOutputLayerSetIdx( i, i );
1847    Int lsIdx = vps->getOutputLayerSetIdx(i);
1848
1849    for( j = 0; j < vps->getNumLayersInIdList(lsIdx); j++ )
1850    {
1851    vps->setOutputLayerFlag(i, j, 1);
1852    }
1853  }
1854
1855  // The value of sub_layer_dpb_info_present_flag[ i ][ 0 ] for any possible value of i is inferred to be equal to 1
1856  // When not present, the value of sub_layer_dpb_info_present_flag[ i ][ j ] for j greater than 0 and any possible value of i, is inferred to be equal to be equal to 0.
1857  for( i = 1; i < vps->getNumOutputLayerSets(); i++ )
1858  {
1859    vps->setSubLayerDpbInfoPresentFlag( i, 0, true );
1860  }
1861 
1862  // When not present, the value of vps_num_rep_formats_minus1 is inferred to be equal to MaxLayersMinus1.
1863  vps->setVpsNumRepFormats( vps->getMaxLayers() );
1864
1865  // When not present, the value of rep_format_idx_present_flag is inferred to be equal to 0
1866  vps->setRepFormatIdxPresentFlag( false );
1867
1868  if( !vps->getRepFormatIdxPresentFlag() )
1869  {
1870    // When not present, the value of vps_rep_format_idx[ i ] is inferred to be equal to Min(i, vps_num_rep_formats_minus1).
1871    for(i = 1; i < vps->getMaxLayers(); i++)
1872    {
1873      vps->setVpsRepFormatIdx( i, min( (Int)i, vps->getVpsNumRepFormats() - 1 ) );
1874    }
1875  }
1876
1877  // vps_poc_lsb_aligned_flag
1878  // When not present, vps_poc_lsb_aligned_flag is inferred to be equal to 0.
1879 
1880#if O0062_POC_LSB_NOT_PRESENT_FLAG
1881  // When not present, poc_lsb_not_present_flag[ i ] is inferred to be equal to 0.
1882  for(i = 1; i< vps->getMaxLayers(); i++)
1883  {
1884    vps->setPocLsbNotPresentFlag(i, 0);
1885  }
1886#endif
1887
1888  // set default values for VPS VUI
1889  defaultVPSVUI( vps );
1890}
1891
1892Void TDecCavlc::defaultVPSVUI( TComVPS* vps )
1893{
1894  // When not present, the value of all_layers_idr_aligned_flag is inferred to be equal to 0.
1895  vps->setCrossLayerIrapAlignFlag( false );
1896
1897#if M0040_ADAPTIVE_RESOLUTION_CHANGE
1898  // When single_layer_for_non_irap_flag is not present, it is inferred to be equal to 0.
1899  vps->setSingleLayerForNonIrapFlag( false );
1900#endif
1901
1902#if HIGHER_LAYER_IRAP_SKIP_FLAG
1903  // When higher_layer_irap_skip_flag is not present it is inferred to be equal to 0
1904  vps->setHigherLayerIrapSkipFlag( false );
1905#endif
1906}
1907
1908#if REPN_FORMAT_IN_VPS
1909Void  TDecCavlc::parseRepFormat( RepFormat *repFormat, RepFormat *repFormatPrev )
1910{
1911  UInt uiCode;
1912#if REPN_FORMAT_CONTROL_FLAG 
1913  READ_CODE( 16, uiCode, "pic_width_vps_in_luma_samples" );        repFormat->setPicWidthVpsInLumaSamples ( uiCode );
1914  READ_CODE( 16, uiCode, "pic_height_vps_in_luma_samples" );       repFormat->setPicHeightVpsInLumaSamples( uiCode );
1915  READ_FLAG( uiCode, "chroma_and_bit_depth_vps_present_flag" );    repFormat->setChromaAndBitDepthVpsPresentFlag( uiCode ? true : false ); 
1916
1917  if( !repFormatPrev )
1918  {
1919    // The value of chroma_and_bit_depth_vps_present_flag of the first rep_format( ) syntax structure in the VPS shall be equal to 1
1920    assert( repFormat->getChromaAndBitDepthVpsPresentFlag() );
1921  }
1922
1923  if( repFormat->getChromaAndBitDepthVpsPresentFlag() )
1924  {
1925    READ_CODE( 2, uiCode, "chroma_format_vps_idc" );
1926#if AUXILIARY_PICTURES
1927    repFormat->setChromaFormatVpsIdc( ChromaFormat(uiCode) );
1928#else
1929    repFormat->setChromaFormatVpsIdc( uiCode );
1930#endif
1931
1932    if( repFormat->getChromaFormatVpsIdc() == 3 )
1933    {
1934      READ_FLAG( uiCode, "separate_colour_plane_vps_flag" );       repFormat->setSeparateColourPlaneVpsFlag( uiCode ? true : false );
1935    }
1936
1937    READ_CODE( 4, uiCode, "bit_depth_vps_luma_minus8" );           repFormat->setBitDepthVpsLuma  ( uiCode + 8 );
1938    READ_CODE( 4, uiCode, "bit_depth_vps_chroma_minus8" );         repFormat->setBitDepthVpsChroma( uiCode + 8 );
1939  }
1940  else if( repFormatPrev )
1941  {
1942    // chroma_and_bit_depth_vps_present_flag equal to 0 specifies that the syntax elements, chroma_format_vps_idc, separate_colour_plane_vps_flag, bit_depth_vps_luma_minus8, and
1943    // bit_depth_vps_chroma_minus8 are not present and inferred from the previous rep_format( ) syntax structure in the VPS.
1944
1945    repFormat->setChromaFormatVpsIdc        ( repFormatPrev->getChromaFormatVpsIdc() );
1946    repFormat->setSeparateColourPlaneVpsFlag( repFormatPrev->getSeparateColourPlaneVpsFlag() );
1947    repFormat->setBitDepthVpsLuma           ( repFormatPrev->getBitDepthVpsLuma() );
1948    repFormat->setBitDepthVpsChroma         ( repFormatPrev->getBitDepthVpsChroma() );
1949  }
1950#else
1951#if AUXILIARY_PICTURES
1952  READ_CODE( 2, uiCode, "chroma_format_idc" );               repFormat->setChromaFormatVpsIdc( ChromaFormat(uiCode) );
1953#else
1954  READ_CODE( 2, uiCode, "chroma_format_idc" );               repFormat->setChromaFormatVpsIdc( uiCode );
1955#endif
1956 
1957  if( repFormat->getChromaFormatVpsIdc() == 3 )
1958  {
1959    READ_FLAG( uiCode, "separate_colour_plane_flag");        repFormat->setSeparateColourPlaneVpsFlag(uiCode ? true : false);
1960  }
1961
1962  READ_CODE ( 16, uiCode, "pic_width_in_luma_samples" );     repFormat->setPicWidthVpsInLumaSamples ( uiCode );
1963  READ_CODE ( 16, uiCode, "pic_height_in_luma_samples" );    repFormat->setPicHeightVpsInLumaSamples( uiCode );
1964
1965  READ_CODE( 4, uiCode, "bit_depth_luma_minus8" );           repFormat->setBitDepthVpsLuma  ( uiCode + 8 );
1966  READ_CODE( 4, uiCode, "bit_depth_chroma_minus8" );         repFormat->setBitDepthVpsChroma( uiCode + 8 );
1967#endif
1968}
1969#endif
1970#if VPS_DPB_SIZE_TABLE
1971Void TDecCavlc::parseVpsDpbSizeTable( TComVPS *vps )
1972{
1973  UInt uiCode;
1974#if DPB_PARAMS_MAXTLAYERS
1975#if BITRATE_PICRATE_SIGNALLING
1976    Int * MaxSubLayersInLayerSetMinus1 = new Int[vps->getNumLayerSets()];
1977    for(Int i = 0; i < vps->getNumLayerSets(); i++)
1978#else
1979    Int * MaxSubLayersInLayerSetMinus1 = new Int[vps->getNumOutputLayerSets()];
1980    for(Int i = 1; i < vps->getNumOutputLayerSets(); i++)
1981#endif
1982    {
1983        UInt maxSLMinus1 = 0;
1984#if CHANGE_NUMSUBDPB_IDX
1985        Int optLsIdx = vps->getOutputLayerSetIdx( i );
1986#else
1987        Int optLsIdx = i;
1988#endif
1989#if BITRATE_PICRATE_SIGNALLING
1990        optLsIdx = i;
1991#endif
1992        for(Int k = 0; k < vps->getNumLayersInIdList(optLsIdx); k++ ) {
1993            Int  lId = vps->getLayerSetLayerIdList(optLsIdx, k);
1994            maxSLMinus1 = max(maxSLMinus1, vps->getMaxTSLayersMinus1(vps->getLayerIdInVps(lId)));
1995        }
1996        MaxSubLayersInLayerSetMinus1[ i ] = maxSLMinus1;
1997#if BITRATE_PICRATE_SIGNALLING
1998        vps->setMaxSLayersInLayerSetMinus1(i,MaxSubLayersInLayerSetMinus1[ i ]);
1999#endif
2000    }
2001#endif
2002   
2003#if !RESOLUTION_BASED_DPB
2004  vps->deriveNumberOfSubDpbs();
2005#endif
2006  for(Int i = 1; i < vps->getNumOutputLayerSets(); i++)
2007  {
2008#if CHANGE_NUMSUBDPB_IDX
2009    Int layerSetIdxForOutputLayerSet = vps->getOutputLayerSetIdx( i );
2010#endif
2011    READ_FLAG( uiCode, "sub_layer_flag_info_present_flag[i]");  vps->setSubLayerFlagInfoPresentFlag( i, uiCode ? true : false );
2012#if DPB_PARAMS_MAXTLAYERS
2013#if BITRATE_PICRATE_SIGNALLING
2014    for(Int j = 0; j <= MaxSubLayersInLayerSetMinus1[ vps->getOutputLayerSetIdx( i ) ]; j++)
2015#else
2016    for(Int j = 0; j <= MaxSubLayersInLayerSetMinus1[ i ]; j++)
2017#endif
2018#else
2019    for(Int j = 0; j <= vps->getMaxTLayers(); j++)
2020#endif
2021    {
2022      if( j > 0 && vps->getSubLayerFlagInfoPresentFlag(i) )
2023      {
2024        READ_FLAG( uiCode, "sub_layer_dpb_info_present_flag[i]");  vps->setSubLayerDpbInfoPresentFlag( i, j, uiCode ? true : false);
2025      }
2026      else
2027      {
2028        if( j == 0 )  // Always signal for the first sub-layer
2029        {
2030          vps->setSubLayerDpbInfoPresentFlag( i, j, true );
2031        }
2032        else // if (j != 0) && !vps->getSubLayerFlagInfoPresentFlag(i)
2033        {
2034          vps->setSubLayerDpbInfoPresentFlag( i, j, false );
2035        }
2036      }
2037      if( vps->getSubLayerDpbInfoPresentFlag(i, j) )  // If sub-layer DPB information is present
2038      {
2039#if CHANGE_NUMSUBDPB_IDX
2040        for(Int k = 0; k < vps->getNumSubDpbs(layerSetIdxForOutputLayerSet); k++)
2041#else
2042        for(Int k = 0; k < vps->getNumSubDpbs(i); k++)
2043#endif
2044        {
2045          READ_UVLC( uiCode, "max_vps_dec_pic_buffering_minus1[i][k][j]" ); vps->setMaxVpsDecPicBufferingMinus1( i, k, j, uiCode );
2046        }
2047        READ_UVLC( uiCode, "max_vps_num_reorder_pics[i][j]" );              vps->setMaxVpsNumReorderPics( i, j, uiCode);
2048#if RESOLUTION_BASED_DPB
2049        if( vps->getNumSubDpbs(layerSetIdxForOutputLayerSet) != vps->getNumLayersInIdList( layerSetIdxForOutputLayerSet ) ) 
2050        {
2051          for(Int k = 0; k < vps->getNumLayersInIdList( layerSetIdxForOutputLayerSet ); k++)
2052          {
2053            READ_UVLC( uiCode, "max_vps_layer_dec_pic_buff_minus1[i][k][j]" ); vps->setMaxVpsLayerDecPicBuffMinus1( i, k, j, uiCode);
2054          }
2055        }
2056        else  // vps->getNumSubDpbs(layerSetIdxForOutputLayerSet) == vps->getNumLayersInIdList( layerSetIdxForOutputLayerSet )
2057        {         
2058          for(Int k = 0; k < vps->getNumLayersInIdList( layerSetIdxForOutputLayerSet ); k++)
2059          {
2060            vps->setMaxVpsLayerDecPicBuffMinus1( i, k, j, vps->getMaxVpsDecPicBufferingMinus1( i, k, j));
2061          }
2062        }
2063#endif
2064        READ_UVLC( uiCode, "max_vps_latency_increase_plus1[i][j]" );        vps->setMaxVpsLatencyIncreasePlus1( i, j, uiCode);
2065      }
2066    }
2067    for(Int j = vps->getMaxTLayers(); j < MAX_TLAYER; j++)
2068    {
2069      vps->setSubLayerDpbInfoPresentFlag( i, j, false );
2070    }
2071  }
2072
2073  // Infer values when not signalled
2074  for(Int i = 1; i < vps->getNumOutputLayerSets(); i++)
2075  {
2076    Int layerSetIdxForOutputLayerSet = vps->getOutputLayerSetIdx( i );
2077    for(Int j = 0; j < MAX_TLAYER; j++)
2078    {
2079      if( !vps->getSubLayerDpbInfoPresentFlag(i, j) )  // If sub-layer DPB information is NOT present
2080      {
2081#if RESOLUTION_BASED_DPB
2082        for(Int k = 0; k < vps->getNumSubDpbs(layerSetIdxForOutputLayerSet); k++)
2083#else
2084        for(Int k = 0; k < vps->getNumLayersInIdList( layerSetIdxForOutputLayerSet ); k++)
2085#endif
2086        {
2087          vps->setMaxVpsDecPicBufferingMinus1( i, k, j, vps->getMaxVpsDecPicBufferingMinus1( i, k, j - 1 ) );
2088        }
2089        vps->setMaxVpsNumReorderPics( i, j, vps->getMaxVpsNumReorderPics( i, j - 1) );
2090#if RESOLUTION_BASED_DPB
2091        for(Int k = 0; k < vps->getNumLayersInIdList( layerSetIdxForOutputLayerSet ); k++)
2092        {
2093          vps->setMaxVpsLayerDecPicBuffMinus1( i, k, j, vps->getMaxVpsLayerDecPicBuffMinus1( i, k, j - 1));
2094        }
2095#endif
2096        vps->setMaxVpsLatencyIncreasePlus1( i, j, vps->getMaxVpsLatencyIncreasePlus1( i, j - 1 ) );
2097      }
2098    }
2099  }
2100}
2101#endif
2102
2103Void TDecCavlc::parseVPSVUI(TComVPS *vps)
2104{
2105  UInt i,j;
2106  UInt uiCode;
2107#if O0223_PICTURE_TYPES_ALIGN_FLAG
2108  READ_FLAG(uiCode, "cross_layer_pic_type_aligned_flag" );
2109  vps->setCrossLayerPictureTypeAlignFlag(uiCode);
2110  if (!uiCode) 
2111  {
2112#endif
2113#if IRAP_ALIGN_FLAG_IN_VPS_VUI
2114    READ_FLAG(uiCode, "cross_layer_irap_aligned_flag" );
2115    vps->setCrossLayerIrapAlignFlag(uiCode);
2116#if P0068_CROSS_LAYER_ALIGNED_IDR_ONLY_FOR_IRAP_FLAG
2117    if( uiCode )
2118    {
2119      READ_FLAG( uiCode, "all_layers_idr_aligned_flag" );
2120      vps->setCrossLayerAlignedIdrOnlyFlag(uiCode);
2121    }
2122#endif
2123#endif
2124#if O0223_PICTURE_TYPES_ALIGN_FLAG
2125  }
2126  else
2127  {
2128    vps->setCrossLayerIrapAlignFlag(true);
2129  }
2130#endif
2131
2132  READ_FLAG( uiCode,        "bit_rate_present_vps_flag" );  vps->setBitRatePresentVpsFlag( uiCode ? true : false );
2133  READ_FLAG( uiCode,        "pic_rate_present_vps_flag" );  vps->setPicRatePresentVpsFlag( uiCode ? true : false );
2134
2135  Bool parseFlag = vps->getBitRatePresentVpsFlag() || vps->getPicRatePresentVpsFlag();
2136
2137  for( i = 0; i < vps->getNumLayerSets(); i++ )
2138  {
2139#if BITRATE_PICRATE_SIGNALLING
2140    for( j = 0; j <= vps->getMaxSLayersInLayerSetMinus1(i); j++ )
2141#else
2142    for( j = 0; j < vps->getMaxTLayers(); j++ )
2143#endif
2144    {
2145      if( parseFlag && vps->getBitRatePresentVpsFlag() )
2146      {
2147        READ_FLAG( uiCode,        "bit_rate_present_flag[i][j]" );  vps->setBitRatePresentFlag( i, j, uiCode ? true : false );
2148      }
2149      else
2150      {
2151        vps->setBitRatePresentFlag( i, j, false );
2152      }
2153      if( parseFlag && vps->getPicRatePresentVpsFlag() )
2154      {
2155        READ_FLAG( uiCode,        "pic_rate_present_flag[i][j]" );  vps->setPicRatePresentFlag( i, j, uiCode ? true : false );
2156      }
2157      else
2158      {
2159        vps->setPicRatePresentFlag( i, j, false );
2160      }
2161      if( parseFlag && vps->getBitRatePresentFlag(i, j) )
2162      {
2163        READ_CODE( 16, uiCode,    "avg_bit_rate[i][j]" ); vps->setAvgBitRate( i, j, uiCode );
2164        READ_CODE( 16, uiCode,    "max_bit_rate[i][j]" ); vps->setMaxBitRate( i, j, uiCode );
2165      }
2166      else
2167      {
2168        vps->setAvgBitRate( i, j, 0 );
2169        vps->setMaxBitRate( i, j, 0 );
2170      }
2171      if( parseFlag && vps->getPicRatePresentFlag(i, j) )
2172      {
2173        READ_CODE( 2 , uiCode,    "constant_pic_rate_idc[i][j]" ); vps->setConstPicRateIdc( i, j, uiCode );
2174        READ_CODE( 16, uiCode,    "avg_pic_rate[i][j]"          ); vps->setAvgPicRate( i, j, uiCode );
2175      }
2176      else
2177      {
2178        vps->setConstPicRateIdc( i, j, 0 );
2179        vps->setAvgPicRate     ( i, j, 0 );
2180      }
2181    }
2182  }
2183#if VPS_VUI_VIDEO_SIGNAL_MOVE
2184  READ_FLAG( uiCode, "video_signal_info_idx_present_flag" ); vps->setVideoSigPresentVpsFlag( uiCode == 1 );
2185  if (vps->getVideoSigPresentVpsFlag())
2186  {
2187    READ_CODE(4, uiCode, "vps_num_video_signal_info_minus1" ); vps->setNumVideoSignalInfo(uiCode + 1);
2188  }
2189  else
2190  {
2191    vps->setNumVideoSignalInfo(vps->getMaxLayers());
2192  }
2193
2194  for(i = 0; i < vps->getNumVideoSignalInfo(); i++)
2195  {
2196    READ_CODE(3, uiCode, "video_vps_format" ); vps->setVideoVPSFormat(i,uiCode);
2197    READ_FLAG(uiCode, "video_full_range_vps_flag" ); vps->setVideoFullRangeVpsFlag(i,uiCode);
2198    READ_CODE(8, uiCode, "color_primaries_vps" ); vps->setColorPrimaries(i,uiCode);
2199    READ_CODE(8, uiCode, "transfer_characteristics_vps" ); vps->setTransCharacter(i,uiCode);
2200    READ_CODE(8, uiCode, "matrix_coeffs_vps" );vps->setMaxtrixCoeff(i,uiCode);
2201  }
2202  if(!vps->getVideoSigPresentVpsFlag())
2203  {
2204    for (i=0; i < vps->getMaxLayers(); i++)
2205    {
2206      vps->setVideoSignalInfoIdx(i,i);
2207    }
2208  }
2209  else {
2210    vps->setVideoSignalInfoIdx(0,0);
2211    if (vps->getNumVideoSignalInfo() > 1 )
2212    {
2213      for (i=1; i < vps->getMaxLayers(); i++)
2214        READ_CODE(4, uiCode, "vps_video_signal_info_idx" ); vps->setVideoSignalInfoIdx(i, uiCode);
2215    }
2216    else {
2217      for (i=1; i < vps->getMaxLayers(); i++)
2218      {
2219        vps->setVideoSignalInfoIdx(i,0);
2220      }
2221    }
2222  }
2223#endif
2224#if VPS_VUI_TILES_NOT_IN_USE__FLAG
2225  UInt layerIdx;
2226  READ_FLAG( uiCode, "tiles_not_in_use_flag" ); vps->setTilesNotInUseFlag(uiCode == 1);
2227  if (!uiCode)
2228  {
2229    for(i = 0; i < vps->getMaxLayers(); i++)
2230    {
2231      READ_FLAG( uiCode, "tiles_in_use_flag[ i ]" ); vps->setTilesInUseFlag(i, (uiCode == 1));
2232      if (uiCode)
2233      {
2234        READ_FLAG( uiCode, "loop_filter_not_across_tiles_flag[ i ]" ); vps->setLoopFilterNotAcrossTilesFlag(i, (uiCode == 1));
2235      }
2236      else
2237      {
2238        vps->setLoopFilterNotAcrossTilesFlag(i, false);
2239      }
2240    }
2241#endif
2242#if TILE_BOUNDARY_ALIGNED_FLAG
2243    for(i = 1; i < vps->getMaxLayers(); i++)
2244    {
2245      for(j = 0; j < vps->getNumDirectRefLayers(vps->getLayerIdInNuh(i)); j++)
2246      {
2247#if VPS_VUI_TILES_NOT_IN_USE__FLAG
2248        layerIdx = vps->getLayerIdInVps(vps->getRefLayerId(vps->getLayerIdInNuh(i), j));
2249        if (vps->getTilesInUseFlag(i) && vps->getTilesInUseFlag(layerIdx)) {
2250          READ_FLAG( uiCode, "tile_boundaries_aligned_flag[i][j]" ); vps->setTileBoundariesAlignedFlag(i,j,(uiCode == 1));
2251        }
2252#else
2253        READ_FLAG( uiCode, "tile_boundaries_aligned_flag[i][j]" ); vps->setTileBoundariesAlignedFlag(i,j,(uiCode == 1));
2254#endif
2255      }
2256    }
2257#endif
2258#if VPS_VUI_TILES_NOT_IN_USE__FLAG
2259  }
2260#endif
2261#if VPS_VUI_WPP_NOT_IN_USE__FLAG
2262  READ_FLAG( uiCode, "wpp_not_in_use_flag" ); vps->setWppNotInUseFlag(uiCode == 1);
2263  if (!uiCode)
2264  {
2265    for(i = 0; i < vps->getMaxLayers(); i++)
2266    {
2267      READ_FLAG( uiCode, "wpp_in_use_flag[ i ]" ); vps->setWppInUseFlag(i, (uiCode == 1));
2268    }
2269  }
2270#endif
2271
2272#if O0109_O0199_FLAGS_TO_VUI
2273#if M0040_ADAPTIVE_RESOLUTION_CHANGE
2274  READ_FLAG(uiCode, "single_layer_for_non_irap_flag" ); vps->setSingleLayerForNonIrapFlag(uiCode == 1 ? true : false);
2275#endif
2276#if HIGHER_LAYER_IRAP_SKIP_FLAG
2277  READ_FLAG(uiCode, "higher_layer_irap_skip_flag" ); vps->setHigherLayerIrapSkipFlag(uiCode == 1 ? true : false);
2278
2279  // When single_layer_for_non_irap_flag is equal to 0, higher_layer_irap_skip_flag shall be equal to 0
2280  if( !vps->getSingleLayerForNonIrapFlag() )
2281  {
2282    assert( !vps->getHigherLayerIrapSkipFlag() );
2283  }
2284#endif
2285#endif
2286#if P0312_VERT_PHASE_ADJ
2287  READ_FLAG( uiCode, "vps_vui_vert_phase_in_use_flag" ); vps->setVpsVuiVertPhaseInUseFlag(uiCode);
2288#endif
2289#if N0160_VUI_EXT_ILP_REF
2290  READ_FLAG( uiCode, "ilp_restricted_ref_layers_flag" ); vps->setIlpRestrictedRefLayersFlag( uiCode == 1 );
2291  if( vps->getIlpRestrictedRefLayersFlag())
2292  {
2293    for(i = 1; i < vps->getMaxLayers(); i++)
2294    {
2295      for(j = 0; j < vps->getNumDirectRefLayers(vps->getLayerIdInNuh(i)); j++)
2296      {
2297        READ_UVLC( uiCode, "min_spatial_segment_offset_plus1[i][j]" ); vps->setMinSpatialSegmentOffsetPlus1( i, j, uiCode );
2298        if( vps->getMinSpatialSegmentOffsetPlus1(i,j ) > 0 )
2299        {
2300          READ_FLAG( uiCode, "ctu_based_offset_enabled_flag[i][j]"); vps->setCtuBasedOffsetEnabledFlag(i, j, uiCode == 1 );
2301          if(vps->getCtuBasedOffsetEnabledFlag(i,j))
2302          {
2303            READ_UVLC( uiCode, "min_horizontal_ctu_offset_plus1[i][j]"); vps->setMinHorizontalCtuOffsetPlus1( i,j, uiCode );
2304          }
2305        }
2306      }
2307    }
2308  }
2309#endif
2310#if VPS_VUI_VIDEO_SIGNAL
2311#if VPS_VUI_VIDEO_SIGNAL_MOVE
2312#else
2313    READ_FLAG( uiCode, "video_signal_info_idx_present_flag" ); vps->setVideoSigPresentVpsFlag( uiCode == 1 );
2314    if (vps->getVideoSigPresentVpsFlag())
2315    {
2316        READ_CODE(4, uiCode, "vps_num_video_signal_info_minus1" ); vps->setNumVideoSignalInfo(uiCode + 1);
2317    }
2318    else
2319    {
2320        vps->setNumVideoSignalInfo(vps->getMaxLayers());
2321    }
2322   
2323   
2324    for(i = 0; i < vps->getNumVideoSignalInfo(); i++)
2325    {
2326        READ_CODE(3, uiCode, "video_vps_format" ); vps->setVideoVPSFormat(i,uiCode);
2327        READ_FLAG(uiCode, "video_full_range_vps_flag" ); vps->setVideoFullRangeVpsFlag(i,uiCode);
2328        READ_CODE(8, uiCode, "color_primaries_vps" ); vps->setColorPrimaries(i,uiCode);
2329        READ_CODE(8, uiCode, "transfer_characteristics_vps" ); vps->setTransCharacter(i,uiCode);
2330        READ_CODE(8, uiCode, "matrix_coeffs_vps" );vps->setMaxtrixCoeff(i,uiCode);
2331    }
2332    if(!vps->getVideoSigPresentVpsFlag())
2333    {
2334        for (i=0; i < vps->getMaxLayers(); i++)
2335        {
2336            vps->setVideoSignalInfoIdx(i,i);
2337        }
2338    }
2339    else {
2340        vps->setVideoSignalInfoIdx(0,0);
2341        if (vps->getNumVideoSignalInfo() > 1 )
2342        {
2343            for (i=1; i < vps->getMaxLayers(); i++)
2344                READ_CODE(4, uiCode, "vps_video_signal_info_idx" ); vps->setVideoSignalInfoIdx(i, uiCode);
2345        }
2346        else {
2347          for (i=1; i < vps->getMaxLayers(); i++)
2348          {
2349            vps->setVideoSignalInfoIdx(i,0);
2350          }
2351        }
2352    }
2353#endif
2354#endif
2355
2356#if O0164_MULTI_LAYER_HRD
2357    READ_FLAG(uiCode, "vps_vui_bsp_hrd_present_flag" ); vps->setVpsVuiBspHrdPresentFlag(uiCode);
2358    if (vps->getVpsVuiBspHrdPresentFlag())
2359    {
2360      READ_UVLC( uiCode, "vps_num_bsp_hrd_parameters_minus1" ); vps->setVpsNumBspHrdParametersMinus1(uiCode);
2361      vps->createBspHrdParamBuffer(vps->getVpsNumBspHrdParametersMinus1() + 1);
2362      for( i = 0; i <= vps->getVpsNumBspHrdParametersMinus1(); i++ )
2363      {
2364        if( i > 0 )
2365        {
2366          READ_FLAG( uiCode, "bsp_cprms_present_flag[i]" ); vps->setBspCprmsPresentFlag(i, uiCode);
2367        }
2368        parseHrdParameters(vps->getBspHrd(i), i==0 ? 1 : vps->getBspCprmsPresentFlag(i), vps->getMaxTLayers()-1);
2369      }
2370      for( UInt h = 1; h <= (vps->getNumLayerSets()-1); h++ )
2371      {
2372        READ_UVLC( uiCode, "num_bitstream_partitions[i]"); vps->setNumBitstreamPartitions(h, uiCode);
2373#if HRD_BPB
2374        Int chkPart=0;
2375#endif
2376        for( i = 0; i < vps->getNumBitstreamPartitions(h); i++ )
2377        {
2378          for( j = 0; j <= (vps->getMaxLayers()-1); j++ )
2379          {
2380            if( vps->getLayerIdIncludedFlag(h, j) )
2381            {
2382              READ_FLAG( uiCode, "layer_in_bsp_flag[h][i][j]" ); vps->setLayerInBspFlag(h, i, j, uiCode);
2383            }
2384          }
2385#if HRD_BPB
2386          chkPart+=vps->getLayerInBspFlag(h, i, j);
2387#endif
2388        }
2389#if HRD_BPB
2390        assert(chkPart<=1);
2391#endif
2392#if HRD_BPB
2393        if(vps->getNumBitstreamPartitions(h)==1)
2394        {
2395          Int chkPartition1=0; Int chkPartition2=0;
2396          for( j = 0; j <= (vps->getMaxLayers()-1); j++ )
2397          {
2398            if( vps->getLayerIdIncludedFlag(h, j) )
2399            {
2400              chkPartition1+=vps->getLayerInBspFlag(h, 0, j);
2401              chkPartition2++;
2402            }
2403          }
2404          assert(chkPartition1!=chkPartition2);
2405        }
2406#endif
2407        if (vps->getNumBitstreamPartitions(h))
2408        {
2409#if Q0182_MULTI_LAYER_HRD_UPDATE
2410          READ_UVLC( uiCode, "num_bsp_sched_combinations_minus1[h]"); vps->setNumBspSchedCombinations(h, uiCode + 1);
2411#else
2412          READ_UVLC( uiCode, "num_bsp_sched_combinations[h]"); vps->setNumBspSchedCombinations(h, uiCode);
2413#endif
2414          for( i = 0; i < vps->getNumBspSchedCombinations(h); i++ )
2415          {
2416            for( j = 0; j < vps->getNumBitstreamPartitions(h); j++ )
2417            {
2418              READ_UVLC( uiCode, "bsp_comb_hrd_idx[h][i][j]"); vps->setBspCombHrdIdx(h, i, j, uiCode);
2419#if HRD_BPB
2420              assert(uiCode <= vps->getVpsNumBspHrdParametersMinus1());
2421#endif
2422               
2423              READ_UVLC( uiCode, "bsp_comb_sched_idx[h][i][j]"); vps->setBspCombSchedIdx(h, i, j, uiCode);
2424#if HRD_BPB
2425              assert(uiCode <= vps->getBspHrdParamBufferCpbCntMinus1(uiCode,vps->getMaxTLayers()-1));
2426#endif
2427            }
2428          }
2429        }
2430      }
2431    }
2432#endif
2433
2434#if P0182_VPS_VUI_PS_FLAG
2435    for(i = 1; i < vps->getMaxLayers(); i++)
2436    {
2437      if (vps->getNumRefLayers(vps->getLayerIdInNuh(i)) == 0)
2438      {
2439        READ_FLAG( uiCode, "base_layer_parameter_set_compatibility_flag" ); 
2440        vps->setBaseLayerPSCompatibilityFlag( i, uiCode );
2441      }
2442      else
2443      {
2444        vps->setBaseLayerPSCompatibilityFlag( i, 0 );
2445      }
2446    }
2447#endif
2448}
2449#endif //SVC_EXTENSION
2450
2451Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager)
2452{
2453  UInt  uiCode;
2454  Int   iCode;
2455
2456#if ENC_DEC_TRACE
2457  xTraceSliceHeader(rpcSlice);
2458#endif
2459  TComPPS* pps = NULL;
2460  TComSPS* sps = NULL;
2461
2462  UInt firstSliceSegmentInPic;
2463  READ_FLAG( firstSliceSegmentInPic, "first_slice_segment_in_pic_flag" );
2464  if( rpcSlice->getRapPicFlag())
2465  {
2466    READ_FLAG( uiCode, "no_output_of_prior_pics_flag" );  //ignored -- updated already
2467#if SETTING_NO_OUT_PIC_PRIOR
2468    rpcSlice->setNoOutputPriorPicsFlag(uiCode ? true : false);
2469#else
2470    rpcSlice->setNoOutputPicPrior( false );
2471#endif
2472  }
2473  READ_UVLC (    uiCode, "slice_pic_parameter_set_id" );  rpcSlice->setPPSId(uiCode);
2474  pps = parameterSetManager->getPrefetchedPPS(uiCode);
2475  //!KS: need to add error handling code here, if PPS is not available
2476  assert(pps!=0);
2477  sps = parameterSetManager->getPrefetchedSPS(pps->getSPSId());
2478  //!KS: need to add error handling code here, if SPS is not available
2479  assert(sps!=0);
2480  rpcSlice->setSPS(sps);
2481  rpcSlice->setPPS(pps);
2482  if( pps->getDependentSliceSegmentsEnabledFlag() && ( !firstSliceSegmentInPic ))
2483  {
2484    READ_FLAG( uiCode, "dependent_slice_segment_flag" );       rpcSlice->setDependentSliceSegmentFlag(uiCode ? true : false);
2485  }
2486  else
2487  {
2488    rpcSlice->setDependentSliceSegmentFlag(false);
2489  }
2490#if REPN_FORMAT_IN_VPS
2491  Int numCTUs = ((rpcSlice->getPicWidthInLumaSamples()+sps->getMaxCUWidth()-1)/sps->getMaxCUWidth())*((rpcSlice->getPicHeightInLumaSamples()+sps->getMaxCUHeight()-1)/sps->getMaxCUHeight());
2492#else
2493  Int numCTUs = ((sps->getPicWidthInLumaSamples()+sps->getMaxCUWidth()-1)/sps->getMaxCUWidth())*((sps->getPicHeightInLumaSamples()+sps->getMaxCUHeight()-1)/sps->getMaxCUHeight());
2494#endif
2495  Int maxParts = (1<<(sps->getMaxCUDepth()<<1));
2496  UInt sliceSegmentAddress = 0;
2497  Int bitsSliceSegmentAddress = 0;
2498  while(numCTUs>(1<<bitsSliceSegmentAddress))
2499  {
2500    bitsSliceSegmentAddress++;
2501  }
2502
2503  if(!firstSliceSegmentInPic)
2504  {
2505    READ_CODE( bitsSliceSegmentAddress, sliceSegmentAddress, "slice_segment_address" );
2506  }
2507  //set uiCode to equal slice start address (or dependent slice start address)
2508  Int startCuAddress = maxParts*sliceSegmentAddress;
2509  rpcSlice->setSliceSegmentCurStartCUAddr( startCuAddress );
2510  rpcSlice->setSliceSegmentCurEndCUAddr(numCTUs*maxParts);
2511
2512  if (rpcSlice->getDependentSliceSegmentFlag())
2513  {
2514    rpcSlice->setNextSlice          ( false );
2515    rpcSlice->setNextSliceSegment ( true  );
2516  }
2517  else
2518  {
2519    rpcSlice->setNextSlice          ( true  );
2520    rpcSlice->setNextSliceSegment ( false );
2521
2522    rpcSlice->setSliceCurStartCUAddr(startCuAddress);
2523    rpcSlice->setSliceCurEndCUAddr(numCTUs*maxParts);
2524  }
2525
2526#if Q0142_POC_LSB_NOT_PRESENT
2527#if SHM_FIX7
2528    Int iPOClsb = 0;
2529#endif
2530#endif
2531
2532  if(!rpcSlice->getDependentSliceSegmentFlag())
2533  {
2534#if SVC_EXTENSION
2535#if POC_RESET_FLAG
2536    Int iBits = 0;
2537    if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > iBits)
2538    {
2539      READ_FLAG(uiCode, "poc_reset_flag");      rpcSlice->setPocResetFlag( uiCode ? true : false );
2540      iBits++;
2541    }
2542    if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > iBits)
2543    {
2544#if DISCARDABLE_PIC_RPS
2545      READ_FLAG(uiCode, "discardable_flag"); rpcSlice->setDiscardableFlag( uiCode ? true : false );
2546#else
2547      READ_FLAG(uiCode, "discardable_flag"); // ignored
2548#endif
2549      iBits++;
2550    }
2551#if O0149_CROSS_LAYER_BLA_FLAG
2552    if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits() > iBits)
2553    {
2554      READ_FLAG(uiCode, "cross_layer_bla_flag");  rpcSlice->setCrossLayerBLAFlag( uiCode ? true : false );
2555      iBits++;
2556    }
2557#endif
2558    for (; iBits < rpcSlice->getPPS()->getNumExtraSliceHeaderBits(); iBits++)
2559    {
2560      READ_FLAG(uiCode, "slice_reserved_undetermined_flag[]"); // ignored
2561    }
2562#else
2563    if(rpcSlice->getPPS()->getNumExtraSliceHeaderBits()>0)
2564    {
2565      READ_FLAG(uiCode, "discardable_flag"); // ignored
2566    }
2567    for (Int i = 1; i < rpcSlice->getPPS()->getNumExtraSliceHeaderBits(); i++)
2568    {
2569      READ_FLAG(uiCode, "slice_reserved_undetermined_flag[]"); // ignored
2570    }
2571#endif
2572#else //SVC_EXTENSION
2573    for (Int i = 0; i < rpcSlice->getPPS()->getNumExtraSliceHeaderBits(); i++)
2574    {
2575      READ_FLAG(uiCode, "slice_reserved_undetermined_flag[]"); // ignored
2576    }
2577#endif //SVC_EXTENSION
2578
2579    READ_UVLC (    uiCode, "slice_type" );            rpcSlice->setSliceType((SliceType)uiCode);
2580    if( pps->getOutputFlagPresentFlag() )
2581    {
2582      READ_FLAG( uiCode, "pic_output_flag" );    rpcSlice->setPicOutputFlag( uiCode ? true : false );
2583    }
2584    else
2585    {
2586      rpcSlice->setPicOutputFlag( true );
2587    }
2588    // in the first version chroma_format_idc is equal to one, thus colour_plane_id will not be present
2589    assert (sps->getChromaFormatIdc() == 1 );
2590    // if( separate_colour_plane_flag  ==  1 )
2591    //   colour_plane_id                                      u(2)
2592
2593    if( rpcSlice->getIdrPicFlag() )
2594    {
2595      rpcSlice->setPOC(0);
2596      TComReferencePictureSet* rps = rpcSlice->getLocalRPS();
2597      rps->setNumberOfNegativePictures(0);
2598      rps->setNumberOfPositivePictures(0);
2599      rps->setNumberOfLongtermPictures(0);
2600      rps->setNumberOfPictures(0);
2601      rpcSlice->setRPS(rps);
2602    }
2603#if N0065_LAYER_POC_ALIGNMENT
2604#if !Q0142_POC_LSB_NOT_PRESENT
2605#if SHM_FIX7
2606    Int iPOClsb = 0;
2607#endif
2608#endif
2609#if O0062_POC_LSB_NOT_PRESENT_FLAG
2610    if( ( rpcSlice->getLayerId() > 0 && !rpcSlice->getVPS()->getPocLsbNotPresentFlag( rpcSlice->getVPS()->getLayerIdInVps(rpcSlice->getLayerId())) ) || !rpcSlice->getIdrPicFlag())
2611#else
2612    if( rpcSlice->getLayerId() > 0 || !rpcSlice->getIdrPicFlag() )
2613#endif
2614#else
2615    else
2616#endif
2617    {
2618      READ_CODE(sps->getBitsForPOC(), uiCode, "pic_order_cnt_lsb");
2619#if SHM_FIX7
2620      iPOClsb = uiCode;
2621#else
2622      Int iPOClsb = uiCode;
2623#endif
2624      Int iPrevPOC = rpcSlice->getPrevTid0POC();
2625      Int iMaxPOClsb = 1<< sps->getBitsForPOC();
2626      Int iPrevPOClsb = iPrevPOC & (iMaxPOClsb - 1);
2627      Int iPrevPOCmsb = iPrevPOC-iPrevPOClsb;
2628      Int iPOCmsb;
2629      if( ( iPOClsb  <  iPrevPOClsb ) && ( ( iPrevPOClsb - iPOClsb )  >=  ( iMaxPOClsb / 2 ) ) )
2630      {
2631        iPOCmsb = iPrevPOCmsb + iMaxPOClsb;
2632      }
2633      else if( (iPOClsb  >  iPrevPOClsb )  && ( (iPOClsb - iPrevPOClsb )  >  ( iMaxPOClsb / 2 ) ) )
2634      {
2635        iPOCmsb = iPrevPOCmsb - iMaxPOClsb;
2636      }
2637      else
2638      {
2639        iPOCmsb = iPrevPOCmsb;
2640      }
2641      if ( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
2642        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
2643        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP )
2644      {
2645        // For BLA picture types, POCmsb is set to 0.
2646        iPOCmsb = 0;
2647      }
2648      rpcSlice->setPOC              (iPOCmsb+iPOClsb);
2649
2650#if N0065_LAYER_POC_ALIGNMENT
2651#if SHM_FIX7
2652      }
2653#endif
2654      if( !rpcSlice->getIdrPicFlag() )
2655      {
2656#endif
2657      TComReferencePictureSet* rps;
2658      rps = rpcSlice->getLocalRPS();
2659      rpcSlice->setRPS(rps);
2660      READ_FLAG( uiCode, "short_term_ref_pic_set_sps_flag" );
2661      if(uiCode == 0) // use short-term reference picture set explicitly signalled in slice header
2662      {
2663        parseShortTermRefPicSet(sps,rps, sps->getRPSList()->getNumberOfReferencePictureSets());
2664      }
2665      else // use reference to short-term reference picture set in PPS
2666      {
2667        Int numBits = 0;
2668        while ((1 << numBits) < rpcSlice->getSPS()->getRPSList()->getNumberOfReferencePictureSets())
2669        {
2670          numBits++;
2671        }
2672        if (numBits > 0)
2673        {
2674          READ_CODE( numBits, uiCode, "short_term_ref_pic_set_idx");
2675        }
2676        else
2677        {
2678          uiCode = 0;       
2679        }
2680        *rps = *(sps->getRPSList()->getReferencePictureSet(uiCode));
2681      }
2682      if(sps->getLongTermRefsPresent())
2683      {
2684        Int offset = rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures();
2685        UInt numOfLtrp = 0;
2686        UInt numLtrpInSPS = 0;
2687        if (rpcSlice->getSPS()->getNumLongTermRefPicSPS() > 0)
2688        {
2689          READ_UVLC( uiCode, "num_long_term_sps");
2690          numLtrpInSPS = uiCode;
2691          numOfLtrp += numLtrpInSPS;
2692          rps->setNumberOfLongtermPictures(numOfLtrp);
2693        }
2694        Int bitsForLtrpInSPS = 0;
2695        while (rpcSlice->getSPS()->getNumLongTermRefPicSPS() > (1 << bitsForLtrpInSPS))
2696        {
2697          bitsForLtrpInSPS++;
2698        }
2699        READ_UVLC( uiCode, "num_long_term_pics");             rps->setNumberOfLongtermPictures(uiCode);
2700        numOfLtrp += uiCode;
2701        rps->setNumberOfLongtermPictures(numOfLtrp);
2702        Int maxPicOrderCntLSB = 1 << rpcSlice->getSPS()->getBitsForPOC();
2703        Int prevDeltaMSB = 0, deltaPocMSBCycleLT = 0;;
2704        for(Int j=offset+rps->getNumberOfLongtermPictures()-1, k = 0; k < numOfLtrp; j--, k++)
2705        {
2706          Int pocLsbLt;
2707          if (k < numLtrpInSPS)
2708          {
2709            uiCode = 0;
2710            if (bitsForLtrpInSPS > 0)
2711            {
2712              READ_CODE(bitsForLtrpInSPS, uiCode, "lt_idx_sps[i]");
2713            }
2714            Int usedByCurrFromSPS=rpcSlice->getSPS()->getUsedByCurrPicLtSPSFlag(uiCode);
2715
2716            pocLsbLt = rpcSlice->getSPS()->getLtRefPicPocLsbSps(uiCode);
2717            rps->setUsed(j,usedByCurrFromSPS);
2718          }
2719          else
2720          {
2721            READ_CODE(rpcSlice->getSPS()->getBitsForPOC(), uiCode, "poc_lsb_lt"); pocLsbLt= uiCode;
2722            READ_FLAG( uiCode, "used_by_curr_pic_lt_flag");     rps->setUsed(j,uiCode);
2723          }
2724          READ_FLAG(uiCode,"delta_poc_msb_present_flag");
2725          Bool mSBPresentFlag = uiCode ? true : false;
2726          if(mSBPresentFlag)
2727          {
2728            READ_UVLC( uiCode, "delta_poc_msb_cycle_lt[i]" );
2729            Bool deltaFlag = false;
2730            //            First LTRP                               || First LTRP from SH
2731            if( (j == offset+rps->getNumberOfLongtermPictures()-1) || (j == offset+(numOfLtrp-numLtrpInSPS)-1) )
2732            {
2733              deltaFlag = true;
2734            }
2735            if(deltaFlag)
2736            {
2737              deltaPocMSBCycleLT = uiCode;
2738            }
2739            else
2740            {
2741              deltaPocMSBCycleLT = uiCode + prevDeltaMSB;
2742            }
2743
2744            Int pocLTCurr = rpcSlice->getPOC() - deltaPocMSBCycleLT * maxPicOrderCntLSB
2745                                        - iPOClsb + pocLsbLt;
2746            rps->setPOC     (j, pocLTCurr);
2747            rps->setDeltaPOC(j, - rpcSlice->getPOC() + pocLTCurr);
2748            rps->setCheckLTMSBPresent(j,true);
2749          }
2750          else
2751          {
2752            rps->setPOC     (j, pocLsbLt);
2753            rps->setDeltaPOC(j, - rpcSlice->getPOC() + pocLsbLt);
2754            rps->setCheckLTMSBPresent(j,false);
2755
2756            // reset deltaPocMSBCycleLT for first LTRP from slice header if MSB not present
2757            if( j == offset+(numOfLtrp-numLtrpInSPS)-1 )
2758            {
2759              deltaPocMSBCycleLT = 0;
2760            }
2761          }
2762          prevDeltaMSB = deltaPocMSBCycleLT;
2763        }
2764        offset += rps->getNumberOfLongtermPictures();
2765        rps->setNumberOfPictures(offset);
2766      }
2767#if DPB_CONSTRAINTS
2768          if(rpcSlice->getVPS()->getVpsExtensionFlag()==1)
2769          {
2770              for (Int ii=1; ii< rpcSlice->getVPS()->getNumOutputLayerSets(); ii++ )
2771              {
2772                  Int layerSetIdxForOutputLayerSet = rpcSlice->getVPS()->getOutputLayerSetIdx( ii );
2773                  Int chkAssert=0;
2774                  for(Int kk = 0; kk < rpcSlice->getVPS()->getNumLayersInIdList(layerSetIdxForOutputLayerSet); kk++)
2775                  {
2776                      if(rpcSlice->getLayerId()==rpcSlice->getVPS()->getLayerSetLayerIdList(layerSetIdxForOutputLayerSet, kk))
2777                      {
2778                          chkAssert=1;
2779                      }
2780                  }
2781                  if(chkAssert)
2782                  {
2783                      assert(rps->getNumberOfNegativePictures() <= rpcSlice->getVPS()->getMaxVpsDecPicBufferingMinus1(ii , rpcSlice->getLayerId() , rpcSlice->getVPS()->getMaxSLayersInLayerSetMinus1(ii)));
2784                      assert(rps->getNumberOfPositivePictures() <= rpcSlice->getVPS()->getMaxVpsDecPicBufferingMinus1(ii , rpcSlice->getLayerId() , rpcSlice->getVPS()->getMaxSLayersInLayerSetMinus1(ii)) - rps->getNumberOfNegativePictures());
2785                      assert((rps->getNumberOfPositivePictures() + rps->getNumberOfNegativePictures() + rps->getNumberOfLongtermPictures()) <= rpcSlice->getVPS()->getMaxVpsDecPicBufferingMinus1(ii , rpcSlice->getLayerId() , rpcSlice->getVPS()->getMaxSLayersInLayerSetMinus1(ii)));
2786                  }
2787              }
2788             
2789             
2790          }
2791          if(rpcSlice->getLayerId() == 0)
2792          {
2793              assert(rps->getNumberOfNegativePictures() <= rpcSlice->getSPS()->getMaxDecPicBuffering(rpcSlice->getSPS()->getMaxTLayers()-1) );
2794              assert(rps->getNumberOfPositivePictures() <= rpcSlice->getSPS()->getMaxDecPicBuffering(rpcSlice->getSPS()->getMaxTLayers()-1) -rps->getNumberOfNegativePictures());
2795              assert((rps->getNumberOfPositivePictures() + rps->getNumberOfNegativePictures() + rps->getNumberOfLongtermPictures()) <= rpcSlice->getSPS()->getMaxDecPicBuffering(rpcSlice->getSPS()->getMaxTLayers()-1));
2796          }
2797#endif
2798      if ( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
2799        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
2800        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP )
2801      {
2802        // In the case of BLA picture types, rps data is read from slice header but ignored
2803        rps = rpcSlice->getLocalRPS();
2804        rps->setNumberOfNegativePictures(0);
2805        rps->setNumberOfPositivePictures(0);
2806        rps->setNumberOfLongtermPictures(0);
2807        rps->setNumberOfPictures(0);
2808        rpcSlice->setRPS(rps);
2809      }
2810      if (rpcSlice->getSPS()->getTMVPFlagsPresent())
2811      {
2812        READ_FLAG( uiCode, "slice_temporal_mvp_enable_flag" );
2813        rpcSlice->setEnableTMVPFlag( uiCode == 1 ? true : false );
2814      }
2815      else
2816      {
2817        rpcSlice->setEnableTMVPFlag(false);
2818      }
2819#if N0065_LAYER_POC_ALIGNMENT && !SHM_FIX7
2820    }
2821#endif
2822    }
2823
2824#if SVC_EXTENSION
2825    rpcSlice->setActiveNumILRRefIdx(0);
2826    if((rpcSlice->getLayerId() > 0) && !(rpcSlice->getVPS()->getIlpSshSignalingEnabledFlag()) && (rpcSlice->getNumILRRefIdx() > 0) )
2827    {
2828      READ_FLAG(uiCode,"inter_layer_pred_enabled_flag");
2829      rpcSlice->setInterLayerPredEnabledFlag(uiCode);
2830      if( rpcSlice->getInterLayerPredEnabledFlag())
2831      {
2832        if(rpcSlice->getNumILRRefIdx() > 1)
2833        {
2834          Int numBits = 1;
2835          while ((1 << numBits) < rpcSlice->getNumILRRefIdx())
2836          {
2837            numBits++;
2838          }
2839          if( !rpcSlice->getVPS()->getMaxOneActiveRefLayerFlag())
2840          {
2841            READ_CODE( numBits, uiCode,"num_inter_layer_ref_pics_minus1" );
2842            rpcSlice->setActiveNumILRRefIdx(uiCode + 1);
2843          }
2844          else
2845          {
2846#if P0079_DERIVE_NUMACTIVE_REF_PICS
2847            for( Int i = 0; i < rpcSlice->getNumILRRefIdx(); i++ ) 
2848            {
2849#if Q0060_MAX_TID_REF_EQUAL_TO_ZERO
2850              if((rpcSlice->getVPS()->getMaxTidIlRefPicsPlus1(rpcSlice->getVPS()->getLayerIdInVps(i),rpcSlice->getLayerId()) >  rpcSlice->getTLayer() || rpcSlice->getTLayer()==0) &&
2851                (rpcSlice->getVPS()->getMaxTSLayersMinus1(rpcSlice->getVPS()->getLayerIdInVps(i)) >=  rpcSlice->getTLayer()) )
2852#else
2853              if(rpcSlice->getVPS()->getMaxTidIlRefPicsPlus1(rpcSlice->getVPS()->getLayerIdInVps(i),rpcSlice->getLayerId()) >  rpcSlice->getTLayer() &&
2854                (rpcSlice->getVPS()->getMaxTSLayersMinus1(rpcSlice->getVPS()->getLayerIdInVps(i)) >=  rpcSlice->getTLayer()) )
2855#endif
2856              {         
2857                rpcSlice->setActiveNumILRRefIdx(1);
2858                break;
2859              }
2860            }
2861#else
2862            rpcSlice->setActiveNumILRRefIdx(1);
2863#endif
2864          }
2865
2866          if( rpcSlice->getActiveNumILRRefIdx() == rpcSlice->getNumILRRefIdx() )
2867          {
2868            for( Int i = 0; i < rpcSlice->getActiveNumILRRefIdx(); i++ )
2869            {
2870              rpcSlice->setInterLayerPredLayerIdc(i,i);
2871            }
2872          }
2873          else
2874          {
2875            for(Int i = 0; i < rpcSlice->getActiveNumILRRefIdx(); i++ )
2876            {
2877              READ_CODE( numBits,uiCode,"inter_layer_pred_layer_idc[i]" );
2878              rpcSlice->setInterLayerPredLayerIdc(uiCode,i);
2879            }
2880          }
2881        }
2882        else
2883        {
2884#if O0225_TID_BASED_IL_RPS_DERIV && TSLAYERS_IL_RPS
2885#if Q0060_MAX_TID_REF_EQUAL_TO_ZERO
2886          if((rpcSlice->getVPS()->getMaxTidIlRefPicsPlus1(0,rpcSlice->getLayerId()) >  rpcSlice->getTLayer() || rpcSlice->getTLayer()==0) &&
2887            (rpcSlice->getVPS()->getMaxTSLayersMinus1(0) >=  rpcSlice->getTLayer()) )
2888#else
2889          if( (rpcSlice->getVPS()->getMaxTidIlRefPicsPlus1(0,rpcSlice->getLayerId()) >  rpcSlice->getTLayer()) &&
2890             (rpcSlice->getVPS()->getMaxTSLayersMinus1(0) >=  rpcSlice->getTLayer()) )
2891#endif
2892        {
2893#endif
2894          rpcSlice->setActiveNumILRRefIdx(1);
2895          rpcSlice->setInterLayerPredLayerIdc(0,0);
2896#if O0225_TID_BASED_IL_RPS_DERIV && TSLAYERS_IL_RPS
2897        }
2898#endif
2899        }
2900      }
2901    }
2902    else if( rpcSlice->getVPS()->getIlpSshSignalingEnabledFlag() == true &&  (rpcSlice->getLayerId() > 0 ))
2903    {
2904      rpcSlice->setInterLayerPredEnabledFlag(true);
2905
2906#if O0225_TID_BASED_IL_RPS_DERIV && TSLAYERS_IL_RPS
2907      Int   numRefLayerPics = 0;
2908      Int   i = 0;
2909      Int   refLayerPicIdc  [MAX_VPS_LAYER_ID_PLUS1];
2910      for(i = 0, numRefLayerPics = 0;  i < rpcSlice->getNumILRRefIdx(); i++ ) 
2911      {
2912#if Q0060_MAX_TID_REF_EQUAL_TO_ZERO
2913        if((rpcSlice->getVPS()->getMaxTidIlRefPicsPlus1(rpcSlice->getVPS()->getLayerIdInVps(i),rpcSlice->getLayerId()) >  rpcSlice->getTLayer() || rpcSlice->getTLayer()==0) &&
2914          (rpcSlice->getVPS()->getMaxTSLayersMinus1(rpcSlice->getVPS()->getLayerIdInVps(i)) >=  rpcSlice->getTLayer()) )
2915#else
2916        if(rpcSlice->getVPS()->getMaxTidIlRefPicsPlus1(rpcSlice->getVPS()->getLayerIdInVps(i),rpcSlice->getLayerId()) >  rpcSlice->getTLayer() &&
2917           (rpcSlice->getVPS()->getMaxTSLayersMinus1(rpcSlice->getVPS()->getLayerIdInVps(i)) >=  rpcSlice->getTLayer()) )
2918#endif
2919        {         
2920          refLayerPicIdc[ numRefLayerPics++ ] = i;
2921        }
2922      }
2923      rpcSlice->setActiveNumILRRefIdx(numRefLayerPics);
2924      for( i = 0; i < rpcSlice->getActiveNumILRRefIdx(); i++ )
2925      {
2926        rpcSlice->setInterLayerPredLayerIdc(refLayerPicIdc[i],i);
2927      }     
2928#else
2929      rpcSlice->setActiveNumILRRefIdx(rpcSlice->getNumILRRefIdx());
2930      for( Int i = 0; i < rpcSlice->getActiveNumILRRefIdx(); i++ )
2931      {
2932        rpcSlice->setInterLayerPredLayerIdc(i,i);
2933      }
2934#endif
2935    }
2936#if P0312_VERT_PHASE_ADJ
2937    for(Int i = 0; i < rpcSlice->getActiveNumILRRefIdx(); i++ ) 
2938    {
2939      UInt refLayerIdc = rpcSlice->getInterLayerPredLayerIdc(i);
2940      if( rpcSlice->getSPS()->getVertPhasePositionEnableFlag(refLayerIdc) )
2941      {
2942        READ_FLAG( uiCode, "vert_phase_position_flag" ); rpcSlice->setVertPhasePositionFlag( uiCode? true : false, refLayerIdc );
2943      }
2944    }
2945#endif
2946#endif //SVC_EXTENSION
2947
2948    if(sps->getUseSAO())
2949    {
2950      READ_FLAG(uiCode, "slice_sao_luma_flag");  rpcSlice->setSaoEnabledFlag((Bool)uiCode);
2951#if AUXILIARY_PICTURES
2952      ChromaFormat format;
2953#if REPN_FORMAT_IN_VPS
2954#if O0096_REP_FORMAT_INDEX
2955      if( sps->getLayerId() == 0 )
2956      {
2957        format = sps->getChromaFormatIdc();
2958      }
2959      else
2960      {
2961        format = rpcSlice->getVPS()->getVpsRepFormat( sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : rpcSlice->getVPS()->getVpsRepFormatIdx(sps->getLayerId()) )->getChromaFormatVpsIdc();
2962#if Q0195_REP_FORMAT_CLEANUP
2963         assert( (sps->getUpdateRepFormatFlag()==false && rpcSlice->getVPS()->getVpsNumRepFormats()==1) || rpcSlice->getVPS()->getVpsNumRepFormats() > 1 ); //conformance check
2964#endif
2965      }
2966#else
2967      if( ( sps->getLayerId() == 0 ) || sps->getUpdateRepFormatFlag() )
2968      {
2969        format = sps->getChromaFormatIdc();
2970      }
2971      else
2972      {
2973        format = rpcSlice->getVPS()->getVpsRepFormat( rpcSlice->getVPS()->getVpsRepFormatIdx(sps->getLayerId()) )->getChromaFormatVpsIdc();
2974      }
2975#endif
2976#else
2977      format = sps->getChromaFormatIdc();
2978#endif
2979      if (format != CHROMA_400)
2980      {
2981#endif
2982      READ_FLAG(uiCode, "slice_sao_chroma_flag");  rpcSlice->setSaoEnabledFlagChroma((Bool)uiCode);
2983#if AUXILIARY_PICTURES
2984      }
2985      else
2986      {
2987        rpcSlice->setSaoEnabledFlagChroma(false);
2988      }
2989#endif
2990    }
2991
2992    if (rpcSlice->getIdrPicFlag())
2993    {
2994      rpcSlice->setEnableTMVPFlag(false);
2995    }
2996    if (!rpcSlice->isIntra())
2997    {
2998
2999      READ_FLAG( uiCode, "num_ref_idx_active_override_flag");
3000      if (uiCode)
3001      {
3002        READ_UVLC (uiCode, "num_ref_idx_l0_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_0, uiCode + 1 );
3003        if (rpcSlice->isInterB())
3004        {
3005          READ_UVLC (uiCode, "num_ref_idx_l1_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_1, uiCode + 1 );
3006        }
3007        else
3008        {
3009          rpcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
3010        }
3011      }
3012      else
3013      {
3014        rpcSlice->setNumRefIdx(REF_PIC_LIST_0, rpcSlice->getPPS()->getNumRefIdxL0DefaultActive());
3015        if (rpcSlice->isInterB())
3016        {
3017          rpcSlice->setNumRefIdx(REF_PIC_LIST_1, rpcSlice->getPPS()->getNumRefIdxL1DefaultActive());
3018        }
3019        else
3020        {
3021          rpcSlice->setNumRefIdx(REF_PIC_LIST_1,0);
3022        }
3023      }
3024    }
3025    // }
3026    TComRefPicListModification* refPicListModification = rpcSlice->getRefPicListModification();
3027    if(!rpcSlice->isIntra())
3028    {
3029      if( !rpcSlice->getPPS()->getListsModificationPresentFlag() || rpcSlice->getNumRpsCurrTempList() <= 1 )
3030      {
3031        refPicListModification->setRefPicListModificationFlagL0( 0 );
3032      }
3033      else
3034      {
3035        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l0" ); refPicListModification->setRefPicListModificationFlagL0( uiCode ? 1 : 0 );
3036      }
3037
3038      if(refPicListModification->getRefPicListModificationFlagL0())
3039      {
3040        uiCode = 0;
3041        Int i = 0;
3042        Int numRpsCurrTempList0 = rpcSlice->getNumRpsCurrTempList();
3043        if ( numRpsCurrTempList0 > 1 )
3044        {
3045          Int length = 1;
3046          numRpsCurrTempList0 --;
3047          while ( numRpsCurrTempList0 >>= 1)
3048          {
3049            length ++;
3050          }
3051          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
3052          {
3053            READ_CODE( length, uiCode, "list_entry_l0" );
3054            refPicListModification->setRefPicSetIdxL0(i, uiCode );
3055          }
3056        }
3057        else
3058        {
3059          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
3060          {
3061            refPicListModification->setRefPicSetIdxL0(i, 0 );
3062          }
3063        }
3064      }
3065    }
3066    else
3067    {
3068      refPicListModification->setRefPicListModificationFlagL0(0);
3069    }
3070    if(rpcSlice->isInterB())
3071    {
3072      if( !rpcSlice->getPPS()->getListsModificationPresentFlag() || rpcSlice->getNumRpsCurrTempList() <= 1 )
3073      {
3074        refPicListModification->setRefPicListModificationFlagL1( 0 );
3075      }
3076      else
3077      {
3078        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l1" ); refPicListModification->setRefPicListModificationFlagL1( uiCode ? 1 : 0 );
3079      }
3080      if(refPicListModification->getRefPicListModificationFlagL1())
3081      {
3082        uiCode = 0;
3083        Int i = 0;
3084        Int numRpsCurrTempList1 = rpcSlice->getNumRpsCurrTempList();
3085        if ( numRpsCurrTempList1 > 1 )
3086        {
3087          Int length = 1;
3088          numRpsCurrTempList1 --;
3089          while ( numRpsCurrTempList1 >>= 1)
3090          {
3091            length ++;
3092          }
3093          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
3094          {
3095            READ_CODE( length, uiCode, "list_entry_l1" );
3096            refPicListModification->setRefPicSetIdxL1(i, uiCode );
3097          }
3098        }
3099        else
3100        {
3101          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
3102          {
3103            refPicListModification->setRefPicSetIdxL1(i, 0 );
3104          }
3105        }
3106      }
3107    }
3108    else
3109    {
3110      refPicListModification->setRefPicListModificationFlagL1(0);
3111    }
3112    if (rpcSlice->isInterB())
3113    {
3114      READ_FLAG( uiCode, "mvd_l1_zero_flag" );       rpcSlice->setMvdL1ZeroFlag( (uiCode ? true : false) );
3115    }
3116
3117    rpcSlice->setCabacInitFlag( false ); // default
3118    if(pps->getCabacInitPresentFlag() && !rpcSlice->isIntra())
3119    {
3120      READ_FLAG(uiCode, "cabac_init_flag");
3121      rpcSlice->setCabacInitFlag( uiCode ? true : false );
3122    }
3123
3124    if ( rpcSlice->getEnableTMVPFlag() )
3125    {
3126#if SVC_EXTENSION && REF_IDX_MFM
3127      // set motion mapping flag
3128      rpcSlice->setMFMEnabledFlag( ( rpcSlice->getNumMotionPredRefLayers() > 0 && rpcSlice->getActiveNumILRRefIdx() && !rpcSlice->isIntra() ) ? true : false );
3129#endif
3130      if ( rpcSlice->getSliceType() == B_SLICE )
3131      {
3132        READ_FLAG( uiCode, "collocated_from_l0_flag" );
3133        rpcSlice->setColFromL0Flag(uiCode);
3134      }
3135      else
3136      {
3137        rpcSlice->setColFromL0Flag( 1 );
3138      }
3139
3140      if ( rpcSlice->getSliceType() != I_SLICE &&
3141          ((rpcSlice->getColFromL0Flag() == 1 && rpcSlice->getNumRefIdx(REF_PIC_LIST_0) > 1)||
3142           (rpcSlice->getColFromL0Flag() == 0 && rpcSlice->getNumRefIdx(REF_PIC_LIST_1) > 1)))
3143      {
3144        READ_UVLC( uiCode, "collocated_ref_idx" );
3145        rpcSlice->setColRefIdx(uiCode);
3146      }
3147      else
3148      {
3149        rpcSlice->setColRefIdx(0);
3150      }
3151    }
3152    if ( (pps->getUseWP() && rpcSlice->getSliceType()==P_SLICE) || (pps->getWPBiPred() && rpcSlice->getSliceType()==B_SLICE) )
3153    {
3154      xParsePredWeightTable(rpcSlice);
3155      rpcSlice->initWpScaling();
3156    }
3157    if (!rpcSlice->isIntra())
3158    {
3159      READ_UVLC( uiCode, "five_minus_max_num_merge_cand");
3160      rpcSlice->setMaxNumMergeCand(MRG_MAX_NUM_CANDS - uiCode);
3161    }
3162
3163    READ_SVLC( iCode, "slice_qp_delta" );
3164    rpcSlice->setSliceQp (26 + pps->getPicInitQPMinus26() + iCode);
3165
3166#if REPN_FORMAT_IN_VPS
3167#if O0194_DIFFERENT_BITDEPTH_EL_BL
3168    g_bitDepthYLayer[rpcSlice->getLayerId()] = rpcSlice->getBitDepthY();
3169    g_bitDepthCLayer[rpcSlice->getLayerId()] = rpcSlice->getBitDepthC();
3170#endif
3171    assert( rpcSlice->getSliceQp() >= -rpcSlice->getQpBDOffsetY() );
3172#else
3173    assert( rpcSlice->getSliceQp() >= -sps->getQpBDOffsetY() );
3174#endif
3175    assert( rpcSlice->getSliceQp() <=  51 );
3176
3177    if (rpcSlice->getPPS()->getSliceChromaQpFlag())
3178    {
3179      READ_SVLC( iCode, "slice_qp_delta_cb" );
3180      rpcSlice->setSliceQpDeltaCb( iCode );
3181      assert( rpcSlice->getSliceQpDeltaCb() >= -12 );
3182      assert( rpcSlice->getSliceQpDeltaCb() <=  12 );
3183      assert( (rpcSlice->getPPS()->getChromaCbQpOffset() + rpcSlice->getSliceQpDeltaCb()) >= -12 );
3184      assert( (rpcSlice->getPPS()->getChromaCbQpOffset() + rpcSlice->getSliceQpDeltaCb()) <=  12 );
3185
3186      READ_SVLC( iCode, "slice_qp_delta_cr" );
3187      rpcSlice->setSliceQpDeltaCr( iCode );
3188      assert( rpcSlice->getSliceQpDeltaCr() >= -12 );
3189      assert( rpcSlice->getSliceQpDeltaCr() <=  12 );
3190      assert( (rpcSlice->getPPS()->getChromaCrQpOffset() + rpcSlice->getSliceQpDeltaCr()) >= -12 );
3191      assert( (rpcSlice->getPPS()->getChromaCrQpOffset() + rpcSlice->getSliceQpDeltaCr()) <=  12 );
3192    }
3193
3194    if (rpcSlice->getPPS()->getDeblockingFilterControlPresentFlag())
3195    {
3196      if(rpcSlice->getPPS()->getDeblockingFilterOverrideEnabledFlag())
3197      {
3198        READ_FLAG ( uiCode, "deblocking_filter_override_flag" );        rpcSlice->setDeblockingFilterOverrideFlag(uiCode ? true : false);
3199      }
3200      else
3201      {
3202        rpcSlice->setDeblockingFilterOverrideFlag(0);
3203      }
3204      if(rpcSlice->getDeblockingFilterOverrideFlag())
3205      {
3206        READ_FLAG ( uiCode, "slice_disable_deblocking_filter_flag" );   rpcSlice->setDeblockingFilterDisable(uiCode ? 1 : 0);
3207        if(!rpcSlice->getDeblockingFilterDisable())
3208        {
3209          READ_SVLC( iCode, "slice_beta_offset_div2" );                       rpcSlice->setDeblockingFilterBetaOffsetDiv2(iCode);
3210          assert(rpcSlice->getDeblockingFilterBetaOffsetDiv2() >= -6 &&
3211                 rpcSlice->getDeblockingFilterBetaOffsetDiv2() <=  6);
3212          READ_SVLC( iCode, "slice_tc_offset_div2" );                         rpcSlice->setDeblockingFilterTcOffsetDiv2(iCode);
3213          assert(rpcSlice->getDeblockingFilterTcOffsetDiv2() >= -6 &&
3214                 rpcSlice->getDeblockingFilterTcOffsetDiv2() <=  6);
3215        }
3216      }
3217      else
3218      {
3219        rpcSlice->setDeblockingFilterDisable   ( rpcSlice->getPPS()->getPicDisableDeblockingFilterFlag() );
3220        rpcSlice->setDeblockingFilterBetaOffsetDiv2( rpcSlice->getPPS()->getDeblockingFilterBetaOffsetDiv2() );
3221        rpcSlice->setDeblockingFilterTcOffsetDiv2  ( rpcSlice->getPPS()->getDeblockingFilterTcOffsetDiv2() );
3222      }
3223    }
3224    else
3225    {
3226      rpcSlice->setDeblockingFilterDisable       ( false );
3227      rpcSlice->setDeblockingFilterBetaOffsetDiv2( 0 );
3228      rpcSlice->setDeblockingFilterTcOffsetDiv2  ( 0 );
3229    }
3230
3231    Bool isSAOEnabled = (!rpcSlice->getSPS()->getUseSAO())?(false):(rpcSlice->getSaoEnabledFlag()||rpcSlice->getSaoEnabledFlagChroma());
3232    Bool isDBFEnabled = (!rpcSlice->getDeblockingFilterDisable());
3233
3234    if(rpcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag() && ( isSAOEnabled || isDBFEnabled ))
3235    {
3236      READ_FLAG( uiCode, "slice_loop_filter_across_slices_enabled_flag");
3237    }
3238    else
3239    {
3240      uiCode = rpcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag()?1:0;
3241    }
3242    rpcSlice->setLFCrossSliceBoundaryFlag( (uiCode==1)?true:false);
3243
3244  }
3245
3246    UInt *entryPointOffset          = NULL;
3247    UInt numEntryPointOffsets, offsetLenMinus1;
3248  if( pps->getTilesEnabledFlag() || pps->getEntropyCodingSyncEnabledFlag() )
3249  {
3250    READ_UVLC(numEntryPointOffsets, "num_entry_point_offsets"); rpcSlice->setNumEntryPointOffsets ( numEntryPointOffsets );
3251    if (numEntryPointOffsets>0)
3252    {
3253      READ_UVLC(offsetLenMinus1, "offset_len_minus1");
3254    }
3255    entryPointOffset = new UInt[numEntryPointOffsets];
3256    for (UInt idx=0; idx<numEntryPointOffsets; idx++)
3257    {
3258      READ_CODE(offsetLenMinus1+1, uiCode, "entry_point_offset_minus1");
3259      entryPointOffset[ idx ] = uiCode + 1;
3260    }
3261  }
3262  else
3263  {
3264    rpcSlice->setNumEntryPointOffsets ( 0 );
3265  }
3266
3267#if POC_RESET_IDC_SIGNALLING
3268  Int sliceHeaderExtensionLength = 0;
3269  if(pps->getSliceHeaderExtensionPresentFlag())
3270  {
3271    READ_UVLC( uiCode, "slice_header_extension_length"); sliceHeaderExtensionLength = uiCode;
3272  }
3273  else
3274  {
3275    sliceHeaderExtensionLength = 0;
3276  }
3277  UInt startBits = m_pcBitstream->getNumBitsRead();     // Start counter of # SH Extn bits
3278  if( sliceHeaderExtensionLength > 0 )
3279  {
3280    if( rpcSlice->getPPS()->getPocResetInfoPresentFlag() )
3281    {
3282      READ_CODE( 2, uiCode,       "poc_reset_idc"); rpcSlice->setPocResetIdc(uiCode);
3283    }
3284    else
3285    {
3286      rpcSlice->setPocResetIdc( 0 );
3287    }
3288#if Q0142_POC_LSB_NOT_PRESENT
3289    if ( rpcSlice->getVPS()->getPocLsbNotPresentFlag(rpcSlice->getLayerId()) && iPOClsb > 0 )
3290    {
3291      assert( rpcSlice->getPocResetIdc() != 2 );
3292    }
3293#endif
3294    if( rpcSlice->getPocResetIdc() > 0 )
3295    {
3296      READ_CODE(6, uiCode,      "poc_reset_period_id"); rpcSlice->setPocResetPeriodId(uiCode);
3297    }
3298    else
3299    {
3300     
3301      rpcSlice->setPocResetPeriodId( 0 );
3302    }
3303
3304    if (rpcSlice->getPocResetIdc() == 3)
3305    {
3306      READ_FLAG( uiCode,        "full_poc_reset_flag"); rpcSlice->setFullPocResetFlag((uiCode == 1) ? true : false);
3307      READ_CODE(rpcSlice->getSPS()->getBitsForPOC(), uiCode,"poc_lsb_val"); rpcSlice->setPocLsbVal(uiCode);
3308#if Q0142_POC_LSB_NOT_PRESENT
3309      if ( rpcSlice->getVPS()->getPocLsbNotPresentFlag(rpcSlice->getLayerId()) && rpcSlice->getFullPocResetFlag() )
3310      {
3311        assert( rpcSlice->getPocLsbVal() == 0 );
3312      }
3313#endif
3314    }
3315
3316    // Derive the value of PocMsbValRequiredFlag
3317    rpcSlice->setPocMsbValRequiredFlag( rpcSlice->getCraPicFlag() || rpcSlice->getBlaPicFlag()
3318                                          /* || related to vps_poc_lsb_aligned_flag */
3319                                          );
3320
3321    if( !rpcSlice->getPocMsbValRequiredFlag() /* vps_poc_lsb_aligned_flag */ )
3322    {
3323      READ_FLAG( uiCode,    "poc_msb_val_present_flag"); rpcSlice->setPocMsbValPresentFlag( uiCode ? true : false );
3324    }
3325    else
3326    {
3327#if POC_MSB_VAL_PRESENT_FLAG_SEM
3328      if( sliceHeaderExtensionLength == 0 )
3329      {
3330        rpcSlice->setPocMsbValPresentFlag( false );
3331      }
3332      else if( rpcSlice->getPocMsbValRequiredFlag() )
3333#else
3334      if( rpcSlice->getPocMsbValRequiredFlag() )
3335#endif
3336      {
3337        rpcSlice->setPocMsbValPresentFlag( true );
3338      }
3339      else
3340      {
3341        rpcSlice->setPocMsbValPresentFlag( false );
3342      }
3343    }
3344
3345    Int maxPocLsb  = 1 << rpcSlice->getSPS()->getBitsForPOC();
3346    if( rpcSlice->getPocMsbValPresentFlag() )
3347    {
3348      READ_UVLC( uiCode,    "poc_msb_val");             rpcSlice->setPocMsbVal( uiCode );
3349      // Update POC of the slice based on this MSB val
3350      Int pocLsb     = rpcSlice->getPOC() % maxPocLsb;
3351      rpcSlice->setPOC((rpcSlice->getPocMsbVal() * maxPocLsb) + pocLsb);
3352    }
3353    else
3354    {
3355      rpcSlice->setPocMsbVal( rpcSlice->getPOC() / maxPocLsb );
3356    }
3357
3358    // Read remaining bits in the slice header extension.
3359    UInt endBits = m_pcBitstream->getNumBitsRead();
3360    Int counter = (endBits - startBits) % 8;
3361    if( counter )
3362    {
3363      counter = 8 - counter;
3364    }
3365
3366    while( counter )
3367    {
3368#if Q0146_SSH_EXT_DATA_BIT
3369      READ_FLAG( uiCode, "slice_segment_header_extension_data_bit" );
3370#else
3371      READ_FLAG( uiCode, "slice_segment_header_extension_reserved_bit" ); assert( uiCode == 1 );
3372#endif
3373      counter--;
3374    }
3375  }
3376#else
3377  if(pps->getSliceHeaderExtensionPresentFlag())
3378  {
3379    READ_UVLC(uiCode,"slice_header_extension_length");
3380    for(Int i=0; i<uiCode; i++)
3381    {
3382      UInt ignore;
3383      READ_CODE(8,ignore,"slice_header_extension_data_byte");
3384    }
3385  }
3386#endif
3387  m_pcBitstream->readByteAlignment();
3388
3389  if( pps->getTilesEnabledFlag() || pps->getEntropyCodingSyncEnabledFlag() )
3390  {
3391    Int endOfSliceHeaderLocation = m_pcBitstream->getByteLocation();
3392
3393    // Adjust endOfSliceHeaderLocation to account for emulation prevention bytes in the slice segment header
3394    for ( UInt curByteIdx  = 0; curByteIdx<m_pcBitstream->numEmulationPreventionBytesRead(); curByteIdx++ )
3395    {
3396      if ( m_pcBitstream->getEmulationPreventionByteLocation( curByteIdx ) < endOfSliceHeaderLocation )
3397      {
3398        endOfSliceHeaderLocation++;
3399      }
3400    }
3401
3402    Int  curEntryPointOffset     = 0;
3403    Int  prevEntryPointOffset    = 0;
3404    for (UInt idx=0; idx<numEntryPointOffsets; idx++)
3405    {
3406      curEntryPointOffset += entryPointOffset[ idx ];
3407
3408      Int emulationPreventionByteCount = 0;
3409      for ( UInt curByteIdx  = 0; curByteIdx<m_pcBitstream->numEmulationPreventionBytesRead(); curByteIdx++ )
3410      {
3411        if ( m_pcBitstream->getEmulationPreventionByteLocation( curByteIdx ) >= ( prevEntryPointOffset + endOfSliceHeaderLocation ) &&
3412             m_pcBitstream->getEmulationPreventionByteLocation( curByteIdx ) <  ( curEntryPointOffset  + endOfSliceHeaderLocation ) )
3413        {
3414          emulationPreventionByteCount++;
3415        }
3416      }
3417
3418      entryPointOffset[ idx ] -= emulationPreventionByteCount;
3419      prevEntryPointOffset = curEntryPointOffset;
3420    }
3421
3422    if ( pps->getTilesEnabledFlag() )
3423    {
3424      rpcSlice->setTileLocationCount( numEntryPointOffsets );
3425
3426      UInt prevPos = 0;
3427      for (Int idx=0; idx<rpcSlice->getTileLocationCount(); idx++)
3428      {
3429        rpcSlice->setTileLocation( idx, prevPos + entryPointOffset [ idx ] );
3430        prevPos += entryPointOffset[ idx ];
3431      }
3432    }
3433    else if ( pps->getEntropyCodingSyncEnabledFlag() )
3434    {
3435    Int numSubstreams = rpcSlice->getNumEntryPointOffsets()+1;
3436      rpcSlice->allocSubstreamSizes(numSubstreams);
3437      UInt *pSubstreamSizes       = rpcSlice->getSubstreamSizes();
3438      for (Int idx=0; idx<numSubstreams-1; idx++)
3439      {
3440        if ( idx < numEntryPointOffsets )
3441        {
3442          pSubstreamSizes[ idx ] = ( entryPointOffset[ idx ] << 3 ) ;
3443        }
3444        else
3445        {
3446          pSubstreamSizes[ idx ] = 0;
3447        }
3448      }
3449    }
3450
3451    if (entryPointOffset)
3452    {
3453      delete [] entryPointOffset;
3454    }
3455  }
3456
3457  return;
3458}
3459
3460Void TDecCavlc::parsePTL( TComPTL *rpcPTL, Bool profilePresentFlag, Int maxNumSubLayersMinus1 )
3461{
3462  UInt uiCode;
3463  if(profilePresentFlag)
3464  {
3465    parseProfileTier(rpcPTL->getGeneralPTL());
3466  }
3467  READ_CODE( 8, uiCode, "general_level_idc" );    rpcPTL->getGeneralPTL()->setLevelIdc(uiCode);
3468
3469  for (Int i = 0; i < maxNumSubLayersMinus1; i++)
3470  {
3471    if(profilePresentFlag)
3472    {
3473      READ_FLAG( uiCode, "sub_layer_profile_present_flag[i]" ); rpcPTL->setSubLayerProfilePresentFlag(i, uiCode);
3474    }
3475    READ_FLAG( uiCode, "sub_layer_level_present_flag[i]"   ); rpcPTL->setSubLayerLevelPresentFlag  (i, uiCode);
3476  }
3477
3478  if (maxNumSubLayersMinus1 > 0)
3479  {
3480    for (Int i = maxNumSubLayersMinus1; i < 8; i++)
3481    {
3482      READ_CODE(2, uiCode, "reserved_zero_2bits");
3483      assert(uiCode == 0);
3484    }
3485  }
3486
3487  for(Int i = 0; i < maxNumSubLayersMinus1; i++)
3488  {
3489    if( profilePresentFlag && rpcPTL->getSubLayerProfilePresentFlag(i) )
3490    {
3491      parseProfileTier(rpcPTL->getSubLayerPTL(i));
3492    }
3493    if(rpcPTL->getSubLayerLevelPresentFlag(i))
3494    {
3495      READ_CODE( 8, uiCode, "sub_layer_level_idc[i]" );   rpcPTL->getSubLayerPTL(i)->setLevelIdc(uiCode);
3496    }
3497  }
3498}
3499
3500Void TDecCavlc::parseProfileTier(ProfileTierLevel *ptl)
3501{
3502  UInt uiCode;
3503  READ_CODE(2 , uiCode, "XXX_profile_space[]");   ptl->setProfileSpace(uiCode);
3504  READ_FLAG(    uiCode, "XXX_tier_flag[]"    );   ptl->setTierFlag    (uiCode ? 1 : 0);
3505  READ_CODE(5 , uiCode, "XXX_profile_idc[]"  );   ptl->setProfileIdc  (uiCode);
3506  for(Int j = 0; j < 32; j++)
3507  {
3508    READ_FLAG(  uiCode, "XXX_profile_compatibility_flag[][j]");   ptl->setProfileCompatibilityFlag(j, uiCode ? 1 : 0);
3509  }
3510  READ_FLAG(uiCode, "general_progressive_source_flag");
3511  ptl->setProgressiveSourceFlag(uiCode ? true : false);
3512
3513  READ_FLAG(uiCode, "general_interlaced_source_flag");
3514  ptl->setInterlacedSourceFlag(uiCode ? true : false);
3515
3516  READ_FLAG(uiCode, "general_non_packed_constraint_flag");
3517  ptl->setNonPackedConstraintFlag(uiCode ? true : false);
3518
3519  READ_FLAG(uiCode, "general_frame_only_constraint_flag");
3520  ptl->setFrameOnlyConstraintFlag(uiCode ? true : false);
3521
3522  READ_CODE(16, uiCode, "XXX_reserved_zero_44bits[0..15]");
3523  READ_CODE(16, uiCode, "XXX_reserved_zero_44bits[16..31]");
3524  READ_CODE(12, uiCode, "XXX_reserved_zero_44bits[32..43]");
3525}
3526
3527Void TDecCavlc::parseTerminatingBit( UInt& ruiBit )
3528{
3529  ruiBit = false;
3530  Int iBitsLeft = m_pcBitstream->getNumBitsLeft();
3531  if(iBitsLeft <= 8)
3532  {
3533    UInt uiPeekValue = m_pcBitstream->peekBits(iBitsLeft);
3534    if (uiPeekValue == (1<<(iBitsLeft-1)))
3535    {
3536      ruiBit = true;
3537    }
3538  }
3539}
3540
3541Void TDecCavlc::parseSkipFlag( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
3542{
3543  assert(0);
3544}
3545
3546Void TDecCavlc::parseCUTransquantBypassFlag( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
3547{
3548  assert(0);
3549}
3550
3551Void TDecCavlc::parseMVPIdx( Int& /*riMVPIdx*/ )
3552{
3553  assert(0);
3554}
3555
3556Void TDecCavlc::parseSplitFlag     ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
3557{
3558  assert(0);
3559}
3560
3561Void TDecCavlc::parsePartSize( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
3562{
3563  assert(0);
3564}
3565
3566Void TDecCavlc::parsePredMode( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
3567{
3568  assert(0);
3569}
3570
3571/** Parse I_PCM information.
3572* \param pcCU pointer to CU
3573* \param uiAbsPartIdx CU index
3574* \param uiDepth CU depth
3575* \returns Void
3576*
3577* If I_PCM flag indicates that the CU is I_PCM, parse its PCM alignment bits and codes.
3578*/
3579Void TDecCavlc::parseIPCMInfo( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
3580{
3581  assert(0);
3582}
3583
3584Void TDecCavlc::parseIntraDirLumaAng  ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
3585{
3586  assert(0);
3587}
3588
3589Void TDecCavlc::parseIntraDirChroma( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
3590{
3591  assert(0);
3592}
3593
3594Void TDecCavlc::parseInterDir( TComDataCU* /*pcCU*/, UInt& /*ruiInterDir*/, UInt /*uiAbsPartIdx*/ )
3595{
3596  assert(0);
3597}
3598
3599Void TDecCavlc::parseRefFrmIdx( TComDataCU* /*pcCU*/, Int& /*riRefFrmIdx*/, RefPicList /*eRefList*/ )
3600{
3601  assert(0);
3602}
3603
3604Void TDecCavlc::parseMvd( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiPartIdx*/, UInt /*uiDepth*/, RefPicList /*eRefList*/ )
3605{
3606  assert(0);
3607}
3608
3609Void TDecCavlc::parseDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
3610{
3611  Int qp;
3612  Int  iDQp;
3613
3614  xReadSvlc( iDQp );
3615
3616#if REPN_FORMAT_IN_VPS
3617  Int qpBdOffsetY = pcCU->getSlice()->getQpBDOffsetY();
3618#else
3619  Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffsetY();
3620#endif
3621  qp = (((Int) pcCU->getRefQP( uiAbsPartIdx ) + iDQp + 52 + 2*qpBdOffsetY )%(52+ qpBdOffsetY)) -  qpBdOffsetY;
3622
3623  UInt uiAbsQpCUPartIdx = (uiAbsPartIdx>>((g_uiMaxCUDepth - pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())<<1))<<((g_uiMaxCUDepth - pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())<<1) ;
3624  UInt uiQpCUDepth =   min(uiDepth,pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()) ;
3625
3626  pcCU->setQPSubParts( qp, uiAbsQpCUPartIdx, uiQpCUDepth );
3627}
3628
3629Void TDecCavlc::parseCoeffNxN( TComDataCU* /*pcCU*/, TCoeff* /*pcCoef*/, UInt /*uiAbsPartIdx*/, UInt /*uiWidth*/, UInt /*uiHeight*/, UInt /*uiDepth*/, TextType /*eTType*/ )
3630{
3631  assert(0);
3632}
3633
3634Void TDecCavlc::parseTransformSubdivFlag( UInt& /*ruiSubdivFlag*/, UInt /*uiLog2TransformBlockSize*/ )
3635{
3636  assert(0);
3637}
3638
3639Void TDecCavlc::parseQtCbf( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, TextType /*eType*/, UInt /*uiTrDepth*/, UInt /*uiDepth*/ )
3640{
3641  assert(0);
3642}
3643
3644Void TDecCavlc::parseQtRootCbf( UInt /*uiAbsPartIdx*/, UInt& /*uiQtRootCbf*/ )
3645{
3646  assert(0);
3647}
3648
3649Void TDecCavlc::parseTransformSkipFlags (TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*width*/, UInt /*height*/, UInt /*uiDepth*/, TextType /*eTType*/)
3650{
3651  assert(0);
3652}
3653
3654Void TDecCavlc::parseMergeFlag ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/, UInt /*uiPUIdx*/ )
3655{
3656  assert(0);
3657}
3658
3659Void TDecCavlc::parseMergeIndex ( TComDataCU* /*pcCU*/, UInt& /*ruiMergeIndex*/ )
3660{
3661  assert(0);
3662}
3663
3664// ====================================================================================================================
3665// Protected member functions
3666// ====================================================================================================================
3667
3668/** parse explicit wp tables
3669* \param TComSlice* pcSlice
3670* \returns Void
3671*/
3672Void TDecCavlc::xParsePredWeightTable( TComSlice* pcSlice )
3673{
3674  wpScalingParam  *wp;
3675  Bool            bChroma     = true; // color always present in HEVC ?
3676  SliceType       eSliceType  = pcSlice->getSliceType();
3677  Int             iNbRef       = (eSliceType == B_SLICE ) ? (2) : (1);
3678#if SVC_EXTENSION
3679  UInt            uiLog2WeightDenomLuma = 0, uiLog2WeightDenomChroma = 0;
3680#else
3681  UInt            uiLog2WeightDenomLuma, uiLog2WeightDenomChroma;
3682#endif
3683  UInt            uiTotalSignalledWeightFlags = 0;
3684
3685  Int iDeltaDenom;
3686#if AUXILIARY_PICTURES
3687  if (pcSlice->getChromaFormatIdc() == CHROMA_400)
3688  {
3689    bChroma = false;
3690  }
3691#endif
3692  // decode delta_luma_log2_weight_denom :
3693  READ_UVLC( uiLog2WeightDenomLuma, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
3694  assert( uiLog2WeightDenomLuma <= 7 );
3695  if( bChroma )
3696  {
3697    READ_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );     // se(v): delta_chroma_log2_weight_denom
3698    assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)>=0);
3699    assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)<=7);
3700    uiLog2WeightDenomChroma = (UInt)(iDeltaDenom + uiLog2WeightDenomLuma);
3701  }
3702
3703  for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ )
3704  {
3705    RefPicList  eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 );
3706    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ )
3707    {
3708      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
3709
3710      wp[0].uiLog2WeightDenom = uiLog2WeightDenomLuma;
3711#if AUXILIARY_PICTURES
3712      if (!bChroma)
3713      {
3714        wp[1].uiLog2WeightDenom = 0;
3715        wp[2].uiLog2WeightDenom = 0;
3716      }
3717      else
3718      {
3719#endif
3720      wp[1].uiLog2WeightDenom = uiLog2WeightDenomChroma;
3721      wp[2].uiLog2WeightDenom = uiLog2WeightDenomChroma;
3722#if AUXILIARY_PICTURES
3723      }
3724#endif
3725
3726      UInt  uiCode;
3727      READ_FLAG( uiCode, "luma_weight_lX_flag" );           // u(1): luma_weight_l0_flag
3728      wp[0].bPresentFlag = ( uiCode == 1 );
3729      uiTotalSignalledWeightFlags += wp[0].bPresentFlag;
3730    }
3731    if ( bChroma )
3732    {
3733      UInt  uiCode;
3734      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ )
3735      {
3736        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
3737        READ_FLAG( uiCode, "chroma_weight_lX_flag" );      // u(1): chroma_weight_l0_flag
3738        wp[1].bPresentFlag = ( uiCode == 1 );
3739        wp[2].bPresentFlag = ( uiCode == 1 );
3740        uiTotalSignalledWeightFlags += 2*wp[1].bPresentFlag;
3741      }
3742    }
3743    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ )
3744    {
3745      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
3746      if ( wp[0].bPresentFlag )
3747      {
3748        Int iDeltaWeight;
3749        READ_SVLC( iDeltaWeight, "delta_luma_weight_lX" );  // se(v): delta_luma_weight_l0[i]
3750        assert( iDeltaWeight >= -128 );
3751        assert( iDeltaWeight <=  127 );
3752        wp[0].iWeight = (iDeltaWeight + (1<<wp[0].uiLog2WeightDenom));
3753        READ_SVLC( wp[0].iOffset, "luma_offset_lX" );       // se(v): luma_offset_l0[i]
3754        assert( wp[0].iOffset >= -128 );
3755        assert( wp[0].iOffset <=  127 );
3756      }
3757      else
3758      {
3759        wp[0].iWeight = (1 << wp[0].uiLog2WeightDenom);
3760        wp[0].iOffset = 0;
3761      }
3762      if ( bChroma )
3763      {
3764        if ( wp[1].bPresentFlag )
3765        {
3766          for ( Int j=1 ; j<3 ; j++ )
3767          {
3768            Int iDeltaWeight;
3769            READ_SVLC( iDeltaWeight, "delta_chroma_weight_lX" );  // se(v): chroma_weight_l0[i][j]
3770            assert( iDeltaWeight >= -128 );
3771            assert( iDeltaWeight <=  127 );
3772            wp[j].iWeight = (iDeltaWeight + (1<<wp[1].uiLog2WeightDenom));
3773
3774            Int iDeltaChroma;
3775            READ_SVLC( iDeltaChroma, "delta_chroma_offset_lX" );  // se(v): delta_chroma_offset_l0[i][j]
3776            assert( iDeltaChroma >= -512 );
3777            assert( iDeltaChroma <=  511 );
3778            Int pred = ( 128 - ( ( 128*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) );
3779            wp[j].iOffset = Clip3(-128, 127, (iDeltaChroma + pred) );
3780          }
3781        }
3782        else
3783        {
3784          for ( Int j=1 ; j<3 ; j++ )
3785          {
3786            wp[j].iWeight = (1 << wp[j].uiLog2WeightDenom);
3787            wp[j].iOffset = 0;
3788          }
3789        }
3790      }
3791    }
3792
3793    for ( Int iRefIdx=pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx<MAX_NUM_REF ; iRefIdx++ )
3794    {
3795      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
3796
3797      wp[0].bPresentFlag = false;
3798      wp[1].bPresentFlag = false;
3799      wp[2].bPresentFlag = false;
3800    }
3801  }
3802  assert(uiTotalSignalledWeightFlags<=24);
3803}
3804
3805/** decode quantization matrix
3806* \param scalingList quantization matrix information
3807*/
3808Void TDecCavlc::parseScalingList(TComScalingList* scalingList)
3809{
3810  UInt  code, sizeId, listId;
3811  Bool scalingListPredModeFlag;
3812  //for each size
3813  for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
3814  {
3815    for(listId = 0; listId <  g_scalingListNum[sizeId]; listId++)
3816    {
3817      READ_FLAG( code, "scaling_list_pred_mode_flag");
3818      scalingListPredModeFlag = (code) ? true : false;
3819      if(!scalingListPredModeFlag) //Copy Mode
3820      {
3821        READ_UVLC( code, "scaling_list_pred_matrix_id_delta");
3822        scalingList->setRefMatrixId (sizeId,listId,(UInt)((Int)(listId)-(code)));
3823        if( sizeId > SCALING_LIST_8x8 )
3824        {
3825          scalingList->setScalingListDC(sizeId,listId,((listId == scalingList->getRefMatrixId (sizeId,listId))? 16 :scalingList->getScalingListDC(sizeId, scalingList->getRefMatrixId (sizeId,listId))));
3826        }
3827        scalingList->processRefMatrix( sizeId, listId, scalingList->getRefMatrixId (sizeId,listId));
3828
3829      }
3830      else //DPCM Mode
3831      {
3832        xDecodeScalingList(scalingList, sizeId, listId);
3833      }
3834    }
3835  }
3836
3837  return;
3838}
3839/** decode DPCM
3840* \param scalingList  quantization matrix information
3841* \param sizeId size index
3842* \param listId list index
3843*/
3844Void TDecCavlc::xDecodeScalingList(TComScalingList *scalingList, UInt sizeId, UInt listId)
3845{
3846  Int i,coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]);
3847  Int data;
3848  Int scalingListDcCoefMinus8 = 0;
3849  Int nextCoef = SCALING_LIST_START_VALUE;
3850  UInt* scan  = (sizeId == 0) ? g_auiSigLastScan [ SCAN_DIAG ] [ 1 ] :  g_sigLastScanCG32x32;
3851  Int *dst = scalingList->getScalingListAddress(sizeId, listId);
3852
3853  if( sizeId > SCALING_LIST_8x8 )
3854  {
3855    READ_SVLC( scalingListDcCoefMinus8, "scaling_list_dc_coef_minus8");
3856    scalingList->setScalingListDC(sizeId,listId,scalingListDcCoefMinus8 + 8);
3857    nextCoef = scalingList->getScalingListDC(sizeId,listId);
3858  }
3859
3860  for(i = 0; i < coefNum; i++)
3861  {
3862    READ_SVLC( data, "scaling_list_delta_coef");
3863    nextCoef = (nextCoef + data + 256 ) % 256;
3864    dst[scan[i]] = nextCoef;
3865  }
3866}
3867
3868Bool TDecCavlc::xMoreRbspData()
3869{
3870  Int bitsLeft = m_pcBitstream->getNumBitsLeft();
3871
3872  // if there are more than 8 bits, it cannot be rbsp_trailing_bits
3873  if (bitsLeft > 8)
3874  {
3875    return true;
3876  }
3877
3878  UChar lastByte = m_pcBitstream->peekBits(bitsLeft);
3879  Int cnt = bitsLeft;
3880
3881  // remove trailing bits equal to zero
3882  while ((cnt>0) && ((lastByte & 1) == 0))
3883  {
3884    lastByte >>= 1;
3885    cnt--;
3886  }
3887  // remove bit equal to one
3888  cnt--;
3889
3890  // we should not have a negative number of bits
3891  assert (cnt>=0);
3892
3893  // we have more data, if cnt is not zero
3894  return (cnt>0);
3895}
3896
3897#if Q0048_CGS_3D_ASYMLUT
3898Void TDecCavlc::xParse3DAsymLUT( TCom3DAsymLUT * pc3DAsymLUT )
3899{
3900  UInt uiCurOctantDepth , uiCurPartNumLog2 , uiInputBitDepthM8 , uiOutputBitDepthM8 , uiResQaunBit;
3901  READ_CODE( 2 , uiCurOctantDepth , "cm_octant_depth" ); 
3902  READ_CODE( 2 , uiCurPartNumLog2 , "cm_y_part_num_log2" );     
3903  READ_CODE( 3 , uiInputBitDepthM8 , "cm_input_bit_depth_minus8" );
3904  Int iInputBitDepthCDelta;
3905  READ_SVLC(iInputBitDepthCDelta, "cm_input_bit_depth_chroma delta");
3906  READ_CODE( 3 , uiOutputBitDepthM8 , "cm_output_bit_depth_minus8" ); 
3907  Int iOutputBitDepthCDelta;
3908  READ_SVLC(iOutputBitDepthCDelta, "cm_output_bit_depth_chroma_delta");
3909  READ_CODE( 2 , uiResQaunBit , "cm_res_quant_bit" );
3910  pc3DAsymLUT->destroy();
3911  pc3DAsymLUT->create( uiCurOctantDepth , uiInputBitDepthM8 + 8 ,  uiInputBitDepthM8 + 8 + iInputBitDepthCDelta, uiOutputBitDepthM8 + 8 , uiOutputBitDepthM8 + 8 + iOutputBitDepthCDelta ,uiCurPartNumLog2 );
3912  pc3DAsymLUT->setResQuantBit( uiResQaunBit );
3913
3914  xParse3DAsymLUTOctant( pc3DAsymLUT , 0 , 0 , 0 , 0 , 1 << pc3DAsymLUT->getCurOctantDepth() );
3915}
3916
3917Void TDecCavlc::xParse3DAsymLUTOctant( TCom3DAsymLUT * pc3DAsymLUT , Int nDepth , Int yIdx , Int uIdx , Int vIdx , Int nLength )
3918{
3919  UInt uiOctantSplit = nDepth < pc3DAsymLUT->getCurOctantDepth();
3920  if( nDepth < pc3DAsymLUT->getCurOctantDepth() )
3921    READ_FLAG( uiOctantSplit , "split_octant_flag" );
3922  Int nYPartNum = 1 << pc3DAsymLUT->getCurYPartNumLog2();
3923  if( uiOctantSplit )
3924  {
3925    Int nHalfLength = nLength >> 1;
3926    for( Int l = 0 ; l < 2 ; l++ )
3927    {
3928      for( Int m = 0 ; m < 2 ; m++ )
3929      {
3930        for( Int n = 0 ; n < 2 ; n++ )
3931        {
3932          xParse3DAsymLUTOctant( pc3DAsymLUT , nDepth + 1 , yIdx + l * nHalfLength * nYPartNum , uIdx + m * nHalfLength , vIdx + n * nHalfLength , nHalfLength );
3933        }
3934      }
3935    }
3936  }
3937  else
3938  {
3939    for( Int l = 0 ; l < nYPartNum ; l++ )
3940    {
3941      for( Int nVertexIdx = 0 ; nVertexIdx < 4 ; nVertexIdx++ )
3942      {
3943        UInt uiCodeVertex = 0;
3944        Int deltaY = 0 , deltaU = 0 , deltaV = 0;
3945        READ_FLAG( uiCodeVertex , "coded_vertex_flag" );
3946        if( uiCodeVertex )
3947        {
3948          READ_SVLC( deltaY , "resY" );
3949          READ_SVLC( deltaU , "resU" );
3950          READ_SVLC( deltaV , "resV" );
3951        }
3952        pc3DAsymLUT->setCuboidVertexResTree( yIdx + l , uIdx , vIdx , nVertexIdx , deltaY , deltaU , deltaV );
3953      }
3954    }
3955  }
3956}
3957#endif
3958//! \}
3959
Note: See TracBrowser for help on using the repository browser.