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

Last change on this file since 1222 was 1217, checked in by seregin, 10 years ago

macro cleanup: R0164_CGS_LUT_BUGFIX

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