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

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

remove macro N0120_MAX_TID_REF_CFG

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