source: 3DVCSoftware/branches/HTM-11.2-dev0/source/Lib/TLibDecoder/TDecCAVLC.cpp @ 1030

Last change on this file since 1030 was 1030, checked in by tech, 10 years ago

Merged 11.2-dev2-Samsung@1026.

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