source: 3DVCSoftware/trunk/source/Lib/TLibDecoder/TDecCAVLC.cpp @ 969

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