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

Last change on this file since 839 was 839, checked in by qualcomm, 10 years ago

JCTVC-R0227: Signal VST params for base layer when intenal (Macro: VPS_VUI_VST_PARAMS)

Signal VST parameters for BL only when it is internal.

From: Adarsh K. Ramasubramonian <aramasub@…>

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