source: 3DVCSoftware/branches/HTM-DEV-0.3-dev2/source/Lib/TLibDecoder/TDecCAVLC.cpp @ 478

Last change on this file since 478 was 478, checked in by tech, 11 years ago

Minor clean ups.

  • Property svn:eol-style set to native
File size: 79.3 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-2013, 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  fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() );
50}
51
52Void  xTracePPSHeader (TComPPS *pPPS)
53{
54  fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() );
55}
56
57Void  xTraceSliceHeader (TComSlice *pSlice)
58{
59  fprintf( g_hTrace, "=========== Slice ===========\n");
60}
61
62#endif
63
64// ====================================================================================================================
65// Constructor / destructor / create / destroy
66// ====================================================================================================================
67
68TDecCavlc::TDecCavlc()
69{
70#if H_3D
71  m_aaiTempScale            = new Int* [ MAX_NUM_LAYERS ];
72  m_aaiTempOffset           = new Int* [ MAX_NUM_LAYERS ];
73  for( UInt uiVId = 0; uiVId < MAX_NUM_LAYERS; uiVId++ )
74  {
75    m_aaiTempScale            [ uiVId ] = new Int [ MAX_NUM_LAYERS ];
76    m_aaiTempOffset           [ uiVId ] = new Int [ MAX_NUM_LAYERS ];
77  }
78#endif
79}
80
81TDecCavlc::~TDecCavlc()
82{
83#if H_3D
84  for( UInt uiVId = 0; uiVId < MAX_NUM_LAYERS; uiVId++ )
85  {
86    delete [] m_aaiTempScale            [ uiVId ];
87    delete [] m_aaiTempOffset           [ uiVId ];
88  }
89  delete [] m_aaiTempScale;
90  delete [] m_aaiTempOffset;
91#endif
92}
93
94// ====================================================================================================================
95// Public member functions
96// ====================================================================================================================
97
98void TDecCavlc::parseShortTermRefPicSet( TComSPS* sps, TComReferencePictureSet* rps, Int idx )
99{
100  UInt code;
101  UInt interRPSPred;
102  if (idx > 0)
103  {
104    READ_FLAG(interRPSPred, "inter_ref_pic_set_prediction_flag");  rps->setInterRPSPrediction(interRPSPred);
105  }
106  else
107  {
108    interRPSPred = false;
109    rps->setInterRPSPrediction(false);
110  }
111
112  if (interRPSPred) 
113  {
114    UInt bit;
115    if(idx == sps->getRPSList()->getNumberOfReferencePictureSets())
116    {
117      READ_UVLC(code, "delta_idx_minus1" ); // delta index of the Reference Picture Set used for prediction minus 1
118    }
119    else
120    {
121      code = 0;
122    }
123    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
124    Int rIdx =  idx - 1 - code;
125    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
126    TComReferencePictureSet*   rpsRef = sps->getRPSList()->getReferencePictureSet(rIdx);
127    Int k = 0, k0 = 0, k1 = 0;
128    READ_CODE(1, bit, "delta_rps_sign"); // delta_RPS_sign
129    READ_UVLC(code, "abs_delta_rps_minus1");  // absolute delta RPS minus 1
130    Int deltaRPS = (1 - 2 * bit) * (code + 1); // delta_RPS
131    for(Int j=0 ; j <= rpsRef->getNumberOfPictures(); j++)
132    {
133      READ_CODE(1, bit, "used_by_curr_pic_flag" ); //first bit is "1" if Idc is 1
134      Int refIdc = bit;
135      if (refIdc == 0) 
136      {
137        READ_CODE(1, bit, "use_delta_flag" ); //second bit is "1" if Idc is 2, "0" otherwise.
138        refIdc = bit<<1; //second bit is "1" if refIdc is 2, "0" if refIdc = 0.
139      }
140      if (refIdc == 1 || refIdc == 2)
141      {
142        Int deltaPOC = deltaRPS + ((j < rpsRef->getNumberOfPictures())? rpsRef->getDeltaPOC(j) : 0);
143        rps->setDeltaPOC(k, deltaPOC);
144        rps->setUsed(k, (refIdc == 1));
145
146        if (deltaPOC < 0)
147        {
148          k0++;
149        }
150        else 
151        {
152          k1++;
153        }
154        k++;
155      } 
156      rps->setRefIdc(j,refIdc); 
157    }
158    rps->setNumRefIdc(rpsRef->getNumberOfPictures()+1); 
159    rps->setNumberOfPictures(k);
160    rps->setNumberOfNegativePictures(k0);
161    rps->setNumberOfPositivePictures(k1);
162    rps->sortDeltaPOC();
163  }
164  else
165  {
166    READ_UVLC(code, "num_negative_pics");           rps->setNumberOfNegativePictures(code);
167    READ_UVLC(code, "num_positive_pics");           rps->setNumberOfPositivePictures(code);
168    Int prev = 0;
169    Int poc;
170    for(Int j=0 ; j < rps->getNumberOfNegativePictures(); j++)
171    {
172      READ_UVLC(code, "delta_poc_s0_minus1");
173      poc = prev-code-1;
174      prev = poc;
175      rps->setDeltaPOC(j,poc);
176      READ_FLAG(code, "used_by_curr_pic_s0_flag");  rps->setUsed(j,code);
177    }
178    prev = 0;
179    for(Int j=rps->getNumberOfNegativePictures(); j < rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures(); j++)
180    {
181      READ_UVLC(code, "delta_poc_s1_minus1");
182      poc = prev+code+1;
183      prev = poc;
184      rps->setDeltaPOC(j,poc);
185      READ_FLAG(code, "used_by_curr_pic_s1_flag");  rps->setUsed(j,code);
186    }
187    rps->setNumberOfPictures(rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures());
188  }
189#if PRINT_RPS_INFO
190  rps->printDeltaPOC();
191#endif
192}
193
194Void TDecCavlc::parsePPS(TComPPS* pcPPS)
195{
196#if ENC_DEC_TRACE 
197  xTracePPSHeader (pcPPS);
198#endif
199  UInt  uiCode;
200
201  Int   iCode;
202
203  READ_UVLC( uiCode, "pps_pic_parameter_set_id");                     pcPPS->setPPSId (uiCode);
204  READ_UVLC( uiCode, "pps_seq_parameter_set_id");                     pcPPS->setSPSId (uiCode);
205  READ_FLAG( uiCode, "dependent_slice_segments_enabled_flag"    );    pcPPS->setDependentSliceSegmentsEnabledFlag   ( uiCode == 1 );
206#if L0255_MOVE_PPS_FLAGS
207  READ_FLAG( uiCode, "output_flag_present_flag" );                    pcPPS->setOutputFlagPresentFlag( uiCode==1 );
208
209  READ_CODE(3, uiCode, "num_extra_slice_header_bits");                pcPPS->setNumExtraSliceHeaderBits(uiCode);
210#endif
211  READ_FLAG ( uiCode, "sign_data_hiding_flag" ); pcPPS->setSignHideFlag( uiCode );
212
213  READ_FLAG( uiCode,   "cabac_init_present_flag" );            pcPPS->setCabacInitPresentFlag( uiCode ? true : false );
214
215#if L0323_LIMIT_DEFAULT_LIST_SIZE
216  READ_UVLC(uiCode, "num_ref_idx_l0_default_active_minus1");
217  assert(uiCode <= 14);
218  pcPPS->setNumRefIdxL0DefaultActive(uiCode+1);
219 
220  READ_UVLC(uiCode, "num_ref_idx_l1_default_active_minus1");
221  assert(uiCode <= 14);
222  pcPPS->setNumRefIdxL1DefaultActive(uiCode+1);
223#else
224  READ_UVLC(uiCode, "num_ref_idx_l0_default_active_minus1");       pcPPS->setNumRefIdxL0DefaultActive(uiCode+1);
225  READ_UVLC(uiCode, "num_ref_idx_l1_default_active_minus1");       pcPPS->setNumRefIdxL1DefaultActive(uiCode+1);
226#endif
227 
228  READ_SVLC(iCode, "init_qp_minus26" );                            pcPPS->setPicInitQPMinus26(iCode);
229  READ_FLAG( uiCode, "constrained_intra_pred_flag" );              pcPPS->setConstrainedIntraPred( uiCode ? true : false );
230  READ_FLAG( uiCode, "transform_skip_enabled_flag" );               
231  pcPPS->setUseTransformSkip ( uiCode ? true : false ); 
232
233  READ_FLAG( uiCode, "cu_qp_delta_enabled_flag" );            pcPPS->setUseDQP( uiCode ? true : false );
234  if( pcPPS->getUseDQP() )
235  {
236    READ_UVLC( uiCode, "diff_cu_qp_delta_depth" );
237    pcPPS->setMaxCuDQPDepth( uiCode );
238  }
239  else
240  {
241    pcPPS->setMaxCuDQPDepth( 0 );
242  }
243  READ_SVLC( iCode, "pps_cb_qp_offset");
244  pcPPS->setChromaCbQpOffset(iCode);
245  assert( pcPPS->getChromaCbQpOffset() >= -12 );
246  assert( pcPPS->getChromaCbQpOffset() <=  12 );
247
248  READ_SVLC( iCode, "pps_cr_qp_offset");
249  pcPPS->setChromaCrQpOffset(iCode);
250  assert( pcPPS->getChromaCrQpOffset() >= -12 );
251  assert( pcPPS->getChromaCrQpOffset() <=  12 );
252
253  READ_FLAG( uiCode, "pps_slice_chroma_qp_offsets_present_flag" );
254  pcPPS->setSliceChromaQpFlag( uiCode ? true : false );
255
256  READ_FLAG( uiCode, "weighted_pred_flag" );          // Use of Weighting Prediction (P_SLICE)
257  pcPPS->setUseWP( uiCode==1 );
258  READ_FLAG( uiCode, "weighted_bipred_flag" );         // Use of Bi-Directional Weighting Prediction (B_SLICE)
259  pcPPS->setWPBiPred( uiCode==1 );
260
261#if !L0255_MOVE_PPS_FLAGS
262  READ_FLAG( uiCode, "output_flag_present_flag" );
263  pcPPS->setOutputFlagPresentFlag( uiCode==1 );
264#endif
265  READ_FLAG( uiCode, "transquant_bypass_enable_flag");
266  pcPPS->setTransquantBypassEnableFlag(uiCode ? true : false);
267  READ_FLAG( uiCode, "tiles_enabled_flag"               );    pcPPS->setTilesEnabledFlag            ( uiCode == 1 );
268  READ_FLAG( uiCode, "entropy_coding_sync_enabled_flag" );    pcPPS->setEntropyCodingSyncEnabledFlag( uiCode == 1 );
269 
270  if( pcPPS->getTilesEnabledFlag() )
271  {
272    READ_UVLC ( uiCode, "num_tile_columns_minus1" );                pcPPS->setNumColumnsMinus1( uiCode ); 
273    READ_UVLC ( uiCode, "num_tile_rows_minus1" );                   pcPPS->setNumRowsMinus1( uiCode ); 
274    READ_FLAG ( uiCode, "uniform_spacing_flag" );                   pcPPS->setUniformSpacingFlag( uiCode );
275
276    if( !pcPPS->getUniformSpacingFlag())
277    {
278      UInt* columnWidth = (UInt*)malloc(pcPPS->getNumColumnsMinus1()*sizeof(UInt));
279      for(UInt i=0; i<pcPPS->getNumColumnsMinus1(); i++)
280      { 
281        READ_UVLC( uiCode, "column_width_minus1" ); 
282        columnWidth[i] = uiCode+1;
283      }
284      pcPPS->setColumnWidth(columnWidth);
285      free(columnWidth);
286
287      UInt* rowHeight = (UInt*)malloc(pcPPS->getNumRowsMinus1()*sizeof(UInt));
288      for(UInt i=0; i<pcPPS->getNumRowsMinus1(); i++)
289      {
290        READ_UVLC( uiCode, "row_height_minus1" );
291        rowHeight[i] = uiCode + 1;
292      }
293      pcPPS->setRowHeight(rowHeight);
294      free(rowHeight); 
295    }
296
297    if(pcPPS->getNumColumnsMinus1() !=0 || pcPPS->getNumRowsMinus1() !=0)
298    {
299      READ_FLAG ( uiCode, "loop_filter_across_tiles_enabled_flag" );   pcPPS->setLoopFilterAcrossTilesEnabledFlag( uiCode ? true : false );
300    }
301  }
302  READ_FLAG( uiCode, "loop_filter_across_slices_enabled_flag" );       pcPPS->setLoopFilterAcrossSlicesEnabledFlag( uiCode ? true : false );
303  READ_FLAG( uiCode, "deblocking_filter_control_present_flag" );       pcPPS->setDeblockingFilterControlPresentFlag( uiCode ? true : false );
304  if(pcPPS->getDeblockingFilterControlPresentFlag())
305  {
306    READ_FLAG( uiCode, "deblocking_filter_override_enabled_flag" );    pcPPS->setDeblockingFilterOverrideEnabledFlag( uiCode ? true : false );
307    READ_FLAG( uiCode, "pps_disable_deblocking_filter_flag" );         pcPPS->setPicDisableDeblockingFilterFlag(uiCode ? true : false );
308    if(!pcPPS->getPicDisableDeblockingFilterFlag())
309    {
310      READ_SVLC ( iCode, "pps_beta_offset_div2" );                     pcPPS->setDeblockingFilterBetaOffsetDiv2( iCode );
311      READ_SVLC ( iCode, "pps_tc_offset_div2" );                       pcPPS->setDeblockingFilterTcOffsetDiv2( iCode );
312    }
313  }
314  READ_FLAG( uiCode, "pps_scaling_list_data_present_flag" );           pcPPS->setScalingListPresentFlag( uiCode ? true : false );
315  if(pcPPS->getScalingListPresentFlag ())
316  {
317    parseScalingList( pcPPS->getScalingList() );
318  }
319
320  READ_FLAG( uiCode, "lists_modification_present_flag");
321  pcPPS->setListsModificationPresentFlag(uiCode);
322
323  READ_UVLC( uiCode, "log2_parallel_merge_level_minus2");
324  pcPPS->setLog2ParallelMergeLevelMinus2 (uiCode);
325
326#if !L0255_MOVE_PPS_FLAGS
327  READ_CODE(3, uiCode, "num_extra_slice_header_bits");
328  pcPPS->setNumExtraSliceHeaderBits(uiCode);
329#endif
330  READ_FLAG( uiCode, "slice_segment_header_extension_present_flag");
331  pcPPS->setSliceHeaderExtensionPresentFlag(uiCode);
332
333  READ_FLAG( uiCode, "pps_extension_flag");
334  if (uiCode)
335  {
336    while ( xMoreRbspData() )
337    {
338      READ_FLAG( uiCode, "pps_extension_data_flag");
339    }
340  }
341}
342
343Void  TDecCavlc::parseVUI(TComVUI* pcVUI, TComSPS *pcSPS)
344{
345#if ENC_DEC_TRACE
346  fprintf( g_hTrace, "----------- vui_parameters -----------\n");
347#endif
348  UInt  uiCode;
349
350  READ_FLAG(     uiCode, "aspect_ratio_info_present_flag");           pcVUI->setAspectRatioInfoPresentFlag(uiCode);
351  if (pcVUI->getAspectRatioInfoPresentFlag())
352  {
353    READ_CODE(8, uiCode, "aspect_ratio_idc");                         pcVUI->setAspectRatioIdc(uiCode);
354    if (pcVUI->getAspectRatioIdc() == 255)
355    {
356      READ_CODE(16, uiCode, "sar_width");                             pcVUI->setSarWidth(uiCode);
357      READ_CODE(16, uiCode, "sar_height");                            pcVUI->setSarHeight(uiCode);
358    }
359  }
360
361  READ_FLAG(     uiCode, "overscan_info_present_flag");               pcVUI->setOverscanInfoPresentFlag(uiCode);
362  if (pcVUI->getOverscanInfoPresentFlag())
363  {
364    READ_FLAG(   uiCode, "overscan_appropriate_flag");                pcVUI->setOverscanAppropriateFlag(uiCode);
365  }
366
367  READ_FLAG(     uiCode, "video_signal_type_present_flag");           pcVUI->setVideoSignalTypePresentFlag(uiCode);
368  if (pcVUI->getVideoSignalTypePresentFlag())
369  {
370    READ_CODE(3, uiCode, "video_format");                             pcVUI->setVideoFormat(uiCode);
371    READ_FLAG(   uiCode, "video_full_range_flag");                    pcVUI->setVideoFullRangeFlag(uiCode);
372    READ_FLAG(   uiCode, "colour_description_present_flag");          pcVUI->setColourDescriptionPresentFlag(uiCode);
373    if (pcVUI->getColourDescriptionPresentFlag())
374    {
375      READ_CODE(8, uiCode, "colour_primaries");                       pcVUI->setColourPrimaries(uiCode);
376      READ_CODE(8, uiCode, "transfer_characteristics");               pcVUI->setTransferCharacteristics(uiCode);
377      READ_CODE(8, uiCode, "matrix_coefficients");                    pcVUI->setMatrixCoefficients(uiCode);
378    }
379  }
380
381  READ_FLAG(     uiCode, "chroma_loc_info_present_flag");             pcVUI->setChromaLocInfoPresentFlag(uiCode);
382  if (pcVUI->getChromaLocInfoPresentFlag())
383  {
384    READ_UVLC(   uiCode, "chroma_sample_loc_type_top_field" );        pcVUI->setChromaSampleLocTypeTopField(uiCode);
385    READ_UVLC(   uiCode, "chroma_sample_loc_type_bottom_field" );     pcVUI->setChromaSampleLocTypeBottomField(uiCode);
386  }
387
388  READ_FLAG(     uiCode, "neutral_chroma_indication_flag");           pcVUI->setNeutralChromaIndicationFlag(uiCode);
389
390  READ_FLAG(     uiCode, "field_seq_flag");                           pcVUI->setFieldSeqFlag(uiCode);
391
392  READ_FLAG(uiCode, "frame_field_info_present_flag");                 pcVUI->setFrameFieldInfoPresentFlag(uiCode);
393
394  READ_FLAG(     uiCode, "default_display_window_flag");
395  if (uiCode != 0)
396  {
397    Window &defDisp = pcVUI->getDefaultDisplayWindow();
398    READ_UVLC(   uiCode, "def_disp_win_left_offset" );                defDisp.setWindowLeftOffset  ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc()) );
399    READ_UVLC(   uiCode, "def_disp_win_right_offset" );               defDisp.setWindowRightOffset ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc()) );
400    READ_UVLC(   uiCode, "def_disp_win_top_offset" );                 defDisp.setWindowTopOffset   ( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc()) );
401    READ_UVLC(   uiCode, "def_disp_win_bottom_offset" );              defDisp.setWindowBottomOffset( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc()) );
402  }
403#if L0043_TIMING_INFO
404  TimingInfo *timingInfo = pcVUI->getTimingInfo();
405  READ_FLAG(       uiCode, "vui_timing_info_present_flag");         timingInfo->setTimingInfoPresentFlag      (uiCode ? true : false);
406  if(timingInfo->getTimingInfoPresentFlag())
407  {
408    READ_CODE( 32, uiCode, "vui_num_units_in_tick");                timingInfo->setNumUnitsInTick             (uiCode);
409    READ_CODE( 32, uiCode, "vui_time_scale");                       timingInfo->setTimeScale                  (uiCode);
410    READ_FLAG(     uiCode, "vui_poc_proportional_to_timing_flag");  timingInfo->setPocProportionalToTimingFlag(uiCode ? true : false);
411    if(timingInfo->getPocProportionalToTimingFlag())
412    {
413      READ_UVLC(   uiCode, "vui_num_ticks_poc_diff_one_minus1");    timingInfo->setNumTicksPocDiffOneMinus1   (uiCode);
414    }
415#endif 
416  READ_FLAG(     uiCode, "hrd_parameters_present_flag");              pcVUI->setHrdParametersPresentFlag(uiCode);
417  if( pcVUI->getHrdParametersPresentFlag() )
418  {
419    parseHrdParameters( pcVUI->getHrdParameters(), 1, pcSPS->getMaxTLayers() - 1 );
420  }
421#if L0043_TIMING_INFO
422  }
423#endif
424#if !L0043_TIMING_INFO
425  READ_FLAG( uiCode, "poc_proportional_to_timing_flag" ); pcVUI->setPocProportionalToTimingFlag(uiCode ? true : false);
426  if( pcVUI->getPocProportionalToTimingFlag() && pcVUI->getHrdParameters()->getTimingInfoPresentFlag() )
427  {
428    READ_UVLC( uiCode, "num_ticks_poc_diff_one_minus1" ); pcVUI->setNumTicksPocDiffOneMinus1(uiCode);
429  }
430#endif
431  READ_FLAG(     uiCode, "bitstream_restriction_flag");               pcVUI->setBitstreamRestrictionFlag(uiCode);
432  if (pcVUI->getBitstreamRestrictionFlag())
433  {
434    READ_FLAG(   uiCode, "tiles_fixed_structure_flag");               pcVUI->setTilesFixedStructureFlag(uiCode);
435    READ_FLAG(   uiCode, "motion_vectors_over_pic_boundaries_flag");  pcVUI->setMotionVectorsOverPicBoundariesFlag(uiCode);
436    READ_FLAG(   uiCode, "restricted_ref_pic_lists_flag");            pcVUI->setRestrictedRefPicListsFlag(uiCode);
437#if L0043_MSS_IDC
438    READ_UVLC( uiCode, "min_spatial_segmentation_idc");            pcVUI->setMinSpatialSegmentationIdc(uiCode);
439    assert(uiCode < 4096);
440#else
441    READ_CODE( 8, uiCode, "min_spatial_segmentation_idc");            pcVUI->setMinSpatialSegmentationIdc(uiCode);
442#endif
443    READ_UVLC(   uiCode, "max_bytes_per_pic_denom" );                 pcVUI->setMaxBytesPerPicDenom(uiCode);
444    READ_UVLC(   uiCode, "max_bits_per_mincu_denom" );                pcVUI->setMaxBitsPerMinCuDenom(uiCode);
445    READ_UVLC(   uiCode, "log2_max_mv_length_horizontal" );           pcVUI->setLog2MaxMvLengthHorizontal(uiCode);
446    READ_UVLC(   uiCode, "log2_max_mv_length_vertical" );             pcVUI->setLog2MaxMvLengthVertical(uiCode);
447  }
448}
449
450Void TDecCavlc::parseHrdParameters(TComHRD *hrd, Bool commonInfPresentFlag, UInt maxNumSubLayersMinus1)
451{
452  UInt  uiCode;
453  if( commonInfPresentFlag )
454  {
455#if !L0043_TIMING_INFO
456    READ_FLAG( uiCode, "timing_info_present_flag" );                  hrd->setTimingInfoPresentFlag( uiCode == 1 ? true : false );
457    if( hrd->getTimingInfoPresentFlag() )
458    {
459      READ_CODE( 32, uiCode, "num_units_in_tick" );                   hrd->setNumUnitsInTick( uiCode );
460      READ_CODE( 32, uiCode, "time_scale" );                          hrd->setTimeScale( uiCode );
461    }
462#endif
463    READ_FLAG( uiCode, "nal_hrd_parameters_present_flag" );           hrd->setNalHrdParametersPresentFlag( uiCode == 1 ? true : false );
464    READ_FLAG( uiCode, "vcl_hrd_parameters_present_flag" );           hrd->setVclHrdParametersPresentFlag( uiCode == 1 ? true : false );
465    if( hrd->getNalHrdParametersPresentFlag() || hrd->getVclHrdParametersPresentFlag() )
466    {
467      READ_FLAG( uiCode, "sub_pic_cpb_params_present_flag" );         hrd->setSubPicCpbParamsPresentFlag( uiCode == 1 ? true : false );
468      if( hrd->getSubPicCpbParamsPresentFlag() )
469      {
470        READ_CODE( 8, uiCode, "tick_divisor_minus2" );                hrd->setTickDivisorMinus2( uiCode );
471        READ_CODE( 5, uiCode, "du_cpb_removal_delay_length_minus1" ); hrd->setDuCpbRemovalDelayLengthMinus1( uiCode );
472        READ_FLAG( uiCode, "sub_pic_cpb_params_in_pic_timing_sei_flag" ); hrd->setSubPicCpbParamsInPicTimingSEIFlag( uiCode == 1 ? true : false );
473#if L0044_DU_DPB_OUTPUT_DELAY_HRD
474        READ_CODE( 5, uiCode, "dpb_output_delay_du_length_minus1"  ); hrd->setDpbOutputDelayDuLengthMinus1( uiCode );
475#endif
476      }
477      READ_CODE( 4, uiCode, "bit_rate_scale" );                       hrd->setBitRateScale( uiCode );
478      READ_CODE( 4, uiCode, "cpb_size_scale" );                       hrd->setCpbSizeScale( uiCode );
479      if( hrd->getSubPicCpbParamsPresentFlag() )
480      {
481        READ_CODE( 4, uiCode, "cpb_size_du_scale" );                  hrd->setDuCpbSizeScale( uiCode );
482      }
483      READ_CODE( 5, uiCode, "initial_cpb_removal_delay_length_minus1" ); hrd->setInitialCpbRemovalDelayLengthMinus1( uiCode );
484      READ_CODE( 5, uiCode, "au_cpb_removal_delay_length_minus1" );      hrd->setCpbRemovalDelayLengthMinus1( uiCode );
485      READ_CODE( 5, uiCode, "dpb_output_delay_length_minus1" );       hrd->setDpbOutputDelayLengthMinus1( uiCode );
486    }
487  }
488  Int i, j, nalOrVcl;
489  for( i = 0; i <= maxNumSubLayersMinus1; i ++ )
490  {
491    READ_FLAG( uiCode, "fixed_pic_rate_general_flag" );                     hrd->setFixedPicRateFlag( i, uiCode == 1 ? true : false  );
492    if( !hrd->getFixedPicRateFlag( i ) )
493    {
494      READ_FLAG( uiCode, "fixed_pic_rate_within_cvs_flag" );                hrd->setFixedPicRateWithinCvsFlag( i, uiCode == 1 ? true : false  );
495    }
496    else
497    {
498      hrd->setFixedPicRateWithinCvsFlag( i, true );
499    }
500#if L0372
501    hrd->setLowDelayHrdFlag( i, 0 ); // Infered to be 0 when not present
502    hrd->setCpbCntMinus1   ( i, 0 ); // Infered to be 0 when not present
503#endif
504    if( hrd->getFixedPicRateWithinCvsFlag( i ) )
505    {
506      READ_UVLC( uiCode, "elemental_duration_in_tc_minus1" );             hrd->setPicDurationInTcMinus1( i, uiCode );
507    }
508#if L0372
509    else
510    {     
511      READ_FLAG( uiCode, "low_delay_hrd_flag" );                      hrd->setLowDelayHrdFlag( i, uiCode == 1 ? true : false  );
512    }
513    if (!hrd->getLowDelayHrdFlag( i ))
514    {
515      READ_UVLC( uiCode, "cpb_cnt_minus1" );                          hrd->setCpbCntMinus1( i, uiCode );     
516    }
517#else
518    READ_FLAG( uiCode, "low_delay_hrd_flag" );                      hrd->setLowDelayHrdFlag( i, uiCode == 1 ? true : false  );
519    READ_UVLC( uiCode, "cpb_cnt_minus1" );                          hrd->setCpbCntMinus1( i, uiCode );
520#endif
521    for( nalOrVcl = 0; nalOrVcl < 2; nalOrVcl ++ )
522    {
523      if( ( ( nalOrVcl == 0 ) && ( hrd->getNalHrdParametersPresentFlag() ) ) ||
524          ( ( nalOrVcl == 1 ) && ( hrd->getVclHrdParametersPresentFlag() ) ) )
525      {
526        for( j = 0; j <= ( hrd->getCpbCntMinus1( i ) ); j ++ )
527        {
528          READ_UVLC( uiCode, "bit_rate_value_minus1" );             hrd->setBitRateValueMinus1( i, j, nalOrVcl, uiCode );
529          READ_UVLC( uiCode, "cpb_size_value_minus1" );             hrd->setCpbSizeValueMinus1( i, j, nalOrVcl, uiCode );
530          if( hrd->getSubPicCpbParamsPresentFlag() )
531          {
532#if L0363_DU_BIT_RATE
533            READ_UVLC( uiCode, "bit_rate_du_value_minus1" );       hrd->setDuBitRateValueMinus1( i, j, nalOrVcl, uiCode );
534#endif
535            READ_UVLC( uiCode, "cpb_size_du_value_minus1" );       hrd->setDuCpbSizeValueMinus1( i, j, nalOrVcl, uiCode );
536          }
537          READ_FLAG( uiCode, "cbr_flag" );                          hrd->setCbrFlag( i, j, nalOrVcl, uiCode == 1 ? true : false  );
538        }
539      }
540    }
541  }
542}
543
544#if H_3D
545Void TDecCavlc::parseSPS(TComSPS* pcSPS, Int viewIndex, Bool depthFlag )
546#else
547Void TDecCavlc::parseSPS(TComSPS* pcSPS)
548#endif
549{
550#if ENC_DEC_TRACE 
551  xTraceSPSHeader (pcSPS);
552#endif
553
554  UInt  uiCode;
555  READ_CODE( 4,  uiCode, "sps_video_parameter_set_id");          pcSPS->setVPSId        ( uiCode );
556  READ_CODE( 3,  uiCode, "sps_max_sub_layers_minus1" );          pcSPS->setMaxTLayers   ( uiCode+1 );
557  READ_FLAG( uiCode, "sps_temporal_id_nesting_flag" );               pcSPS->setTemporalIdNestingFlag ( uiCode > 0 ? true : false );
558  if ( pcSPS->getMaxTLayers() == 1 )
559  {
560    // sps_temporal_id_nesting_flag must be 1 when sps_max_sub_layers_minus1 is 0
561    assert( uiCode == 1 );
562  }
563 
564  parsePTL(pcSPS->getPTL(), 1, pcSPS->getMaxTLayers() - 1);
565  READ_UVLC(     uiCode, "sps_seq_parameter_set_id" );           pcSPS->setSPSId( uiCode );
566  READ_UVLC(     uiCode, "chroma_format_idc" );                  pcSPS->setChromaFormatIdc( uiCode );
567  // 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
568  assert (uiCode == 1);
569  if( uiCode == 3 )
570  {
571    READ_FLAG(     uiCode, "separate_colour_plane_flag");        assert(uiCode == 0);
572  }
573
574  READ_UVLC (    uiCode, "pic_width_in_luma_samples" );          pcSPS->setPicWidthInLumaSamples ( uiCode    );
575  READ_UVLC (    uiCode, "pic_height_in_luma_samples" );         pcSPS->setPicHeightInLumaSamples( uiCode    );
576  READ_FLAG(     uiCode, "conformance_window_flag");
577  if (uiCode != 0)
578  {
579    Window &conf = pcSPS->getConformanceWindow();
580    READ_UVLC(   uiCode, "conf_win_left_offset" );               conf.setWindowLeftOffset  ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc() ) );
581    READ_UVLC(   uiCode, "conf_win_right_offset" );              conf.setWindowRightOffset ( uiCode * TComSPS::getWinUnitX( pcSPS->getChromaFormatIdc() ) );
582    READ_UVLC(   uiCode, "conf_win_top_offset" );                conf.setWindowTopOffset   ( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc() ) );
583    READ_UVLC(   uiCode, "conf_win_bottom_offset" );             conf.setWindowBottomOffset( uiCode * TComSPS::getWinUnitY( pcSPS->getChromaFormatIdc() ) );
584  }
585
586  READ_UVLC(     uiCode, "bit_depth_luma_minus8" );
587  pcSPS->setBitDepthY( uiCode + 8 );
588  pcSPS->setQpBDOffsetY( (Int) (6*uiCode) );
589
590  READ_UVLC( uiCode,    "bit_depth_chroma_minus8" );
591  pcSPS->setBitDepthC( uiCode + 8 );
592  pcSPS->setQpBDOffsetC( (Int) (6*uiCode) );
593
594  READ_UVLC( uiCode,    "log2_max_pic_order_cnt_lsb_minus4" );   pcSPS->setBitsForPOC( 4 + uiCode );
595
596  UInt subLayerOrderingInfoPresentFlag;
597  READ_FLAG(subLayerOrderingInfoPresentFlag, "sps_sub_layer_ordering_info_present_flag");
598  for(UInt i=0; i <= pcSPS->getMaxTLayers()-1; i++)
599  {
600#if L0323_DPB
601#if H_MV
602    READ_UVLC ( uiCode, "sps_max_dec_pic_buffering_minus1[i]");
603#else
604    READ_UVLC ( uiCode, "sps_max_dec_pic_buffering_minus1");
605#endif
606    pcSPS->setMaxDecPicBuffering( uiCode + 1, i);
607#else
608    READ_UVLC ( uiCode, "sps_max_dec_pic_buffering");
609    pcSPS->setMaxDecPicBuffering( uiCode, i);
610#endif
611#if H_MV
612    READ_UVLC ( uiCode, "sps_num_reorder_pics[i]" );
613#else
614    READ_UVLC ( uiCode, "sps_num_reorder_pics" );
615#endif
616    pcSPS->setNumReorderPics(uiCode, i);
617#if H_MV
618    READ_UVLC ( uiCode, "sps_max_latency_increase[i]");
619#else
620    READ_UVLC ( uiCode, "sps_max_latency_increase");
621#endif
622    pcSPS->setMaxLatencyIncrease( uiCode, i );
623
624    if (!subLayerOrderingInfoPresentFlag)
625    {
626      for (i++; i <= pcSPS->getMaxTLayers()-1; i++)
627      {
628        pcSPS->setMaxDecPicBuffering(pcSPS->getMaxDecPicBuffering(0), i);
629        pcSPS->setNumReorderPics(pcSPS->getNumReorderPics(0), i);
630        pcSPS->setMaxLatencyIncrease(pcSPS->getMaxLatencyIncrease(0), i);
631      }
632      break;
633    }
634  }
635
636  READ_UVLC( uiCode, "log2_min_coding_block_size_minus3" );
637  Int log2MinCUSize = uiCode + 3;
638  pcSPS->setLog2MinCodingBlockSize(log2MinCUSize);
639  READ_UVLC( uiCode, "log2_diff_max_min_coding_block_size" );
640  pcSPS->setLog2DiffMaxMinCodingBlockSize(uiCode);
641  Int maxCUDepthDelta = uiCode;
642  pcSPS->setMaxCUWidth  ( 1<<(log2MinCUSize + maxCUDepthDelta) ); 
643  pcSPS->setMaxCUHeight ( 1<<(log2MinCUSize + maxCUDepthDelta) );
644  READ_UVLC( uiCode, "log2_min_transform_block_size_minus2" );   pcSPS->setQuadtreeTULog2MinSize( uiCode + 2 );
645
646  READ_UVLC( uiCode, "log2_diff_max_min_transform_block_size" ); pcSPS->setQuadtreeTULog2MaxSize( uiCode + pcSPS->getQuadtreeTULog2MinSize() );
647  pcSPS->setMaxTrSize( 1<<(uiCode + pcSPS->getQuadtreeTULog2MinSize()) );
648
649  READ_UVLC( uiCode, "max_transform_hierarchy_depth_inter" );    pcSPS->setQuadtreeTUMaxDepthInter( uiCode+1 );
650  READ_UVLC( uiCode, "max_transform_hierarchy_depth_intra" );    pcSPS->setQuadtreeTUMaxDepthIntra( uiCode+1 );
651
652  Int addCuDepth = max (0, log2MinCUSize - (Int)pcSPS->getQuadtreeTULog2MinSize() );
653  pcSPS->setMaxCUDepth( maxCUDepthDelta + addCuDepth ); 
654
655  READ_FLAG( uiCode, "scaling_list_enabled_flag" );                 pcSPS->setScalingListFlag ( uiCode );
656  if(pcSPS->getScalingListFlag())
657  {
658    READ_FLAG( uiCode, "sps_scaling_list_data_present_flag" );                 pcSPS->setScalingListPresentFlag ( uiCode );
659    if(pcSPS->getScalingListPresentFlag ())
660    {
661      parseScalingList( pcSPS->getScalingList() );
662    }
663  }
664  READ_FLAG( uiCode, "amp_enabled_flag" );                          pcSPS->setUseAMP( uiCode );
665  READ_FLAG( uiCode, "sample_adaptive_offset_enabled_flag" );       pcSPS->setUseSAO ( uiCode ? true : false );
666
667  READ_FLAG( uiCode, "pcm_enabled_flag" ); pcSPS->setUsePCM( uiCode ? true : false );
668  if( pcSPS->getUsePCM() )
669  {
670    READ_CODE( 4, uiCode, "pcm_sample_bit_depth_luma_minus1" );          pcSPS->setPCMBitDepthLuma   ( 1 + uiCode );
671    READ_CODE( 4, uiCode, "pcm_sample_bit_depth_chroma_minus1" );        pcSPS->setPCMBitDepthChroma ( 1 + uiCode );
672    READ_UVLC( uiCode, "log2_min_pcm_luma_coding_block_size_minus3" );   pcSPS->setPCMLog2MinSize (uiCode+3);
673    READ_UVLC( uiCode, "log2_diff_max_min_pcm_luma_coding_block_size" ); pcSPS->setPCMLog2MaxSize ( uiCode+pcSPS->getPCMLog2MinSize() );
674    READ_FLAG( uiCode, "pcm_loop_filter_disable_flag" );                 pcSPS->setPCMFilterDisableFlag ( uiCode ? true : false );
675  }
676
677  READ_UVLC( uiCode, "num_short_term_ref_pic_sets" );
678  pcSPS->createRPSList(uiCode);
679
680  TComRPSList* rpsList = pcSPS->getRPSList();
681  TComReferencePictureSet* rps;
682
683  for(UInt i=0; i< rpsList->getNumberOfReferencePictureSets(); i++)
684  {
685    rps = rpsList->getReferencePictureSet(i);
686    parseShortTermRefPicSet(pcSPS,rps,i);
687  }
688  READ_FLAG( uiCode, "long_term_ref_pics_present_flag" );          pcSPS->setLongTermRefsPresent(uiCode);
689  if (pcSPS->getLongTermRefsPresent()) 
690  {
691    READ_UVLC( uiCode, "num_long_term_ref_pic_sps" );
692    pcSPS->setNumLongTermRefPicSPS(uiCode);
693    for (UInt k = 0; k < pcSPS->getNumLongTermRefPicSPS(); k++)
694    {
695      READ_CODE( pcSPS->getBitsForPOC(), uiCode, "lt_ref_pic_poc_lsb_sps" );
696      pcSPS->setLtRefPicPocLsbSps(k, uiCode);
697      READ_FLAG( uiCode,  "used_by_curr_pic_lt_sps_flag[i]");
698      pcSPS->setUsedByCurrPicLtSPSFlag(k, uiCode?1:0);
699    }
700  }
701  READ_FLAG( uiCode, "sps_temporal_mvp_enable_flag" );            pcSPS->setTMVPFlagsPresent(uiCode);
702
703  READ_FLAG( uiCode, "sps_strong_intra_smoothing_enable_flag" );  pcSPS->setUseStrongIntraSmoothing(uiCode);
704
705  READ_FLAG( uiCode, "vui_parameters_present_flag" );             pcSPS->setVuiParametersPresentFlag(uiCode);
706
707  if (pcSPS->getVuiParametersPresentFlag())
708  {
709    parseVUI(pcSPS->getVuiParameters(), pcSPS);
710  }
711
712  READ_FLAG( uiCode, "sps_extension_flag");
713  if (uiCode)
714  {
715#if !H_MV
716    while ( xMoreRbspData() )
717    {
718      READ_FLAG( uiCode, "sps_extension_data_flag");
719    }
720#else
721    READ_FLAG( uiCode, "inter_view_mv_vert_constraint_flag" );    pcSPS->setInterViewMvVertConstraintFlag(uiCode == 1 ? true : false);
722    READ_FLAG( uiCode, "sps_extension2_flag");
723    if ( uiCode )
724    {
725#if !H_3D
726      while ( xMoreRbspData() )
727      {
728        READ_FLAG( uiCode, "sps_extension_data_flag");
729      }
730#else
731      UInt uiCamParPrecision = 0; 
732      Bool bCamParSlice      = false; 
733      if ( !depthFlag )
734      {     
735        READ_UVLC( uiCamParPrecision, "cp_precision" );
736        READ_FLAG( uiCode, "cp_in_slice_header_flag" );    bCamParSlice = ( uiCode == 1 );
737        if( !bCamParSlice )
738        {       
739          for( UInt uiBaseIndex = 0; uiBaseIndex < viewIndex; uiBaseIndex++ )
740          {
741            Int iCode; 
742            READ_SVLC( iCode, "cp_scale" );                m_aaiTempScale  [ uiBaseIndex ][ viewIndex ]   = iCode;
743            READ_SVLC( iCode, "cp_off" );                  m_aaiTempOffset [ uiBaseIndex ][ viewIndex ]   = iCode;
744            READ_SVLC( iCode, "cp_inv_scale_plus_scale" ); m_aaiTempScale  [ viewIndex   ][ uiBaseIndex ] = iCode - m_aaiTempScale [ uiBaseIndex ][ viewIndex ];
745            READ_SVLC( iCode, "cp_inv_off_plus_off" );     m_aaiTempOffset [ viewIndex   ][ uiBaseIndex ] = iCode - m_aaiTempOffset[ uiBaseIndex ][ viewIndex ];
746          }
747        }
748      }
749      pcSPS->initCamParaSPS( viewIndex, uiCamParPrecision, bCamParSlice, m_aaiTempScale, m_aaiTempOffset );
750      READ_FLAG( uiCode, "sps_extension3_flag");
751      if ( uiCode )
752      {
753        while ( xMoreRbspData() )
754        {
755          READ_FLAG( uiCode, "sps_extension_data_flag");
756        }
757      }
758#endif // !H_3D
759    }
760#endif // !H_MV
761#if H_3D_IV_MERGE
762    READ_FLAG( uiCode, "base_view_flag" );
763    if( uiCode )
764    { // baseview SPS -> set standard values
765      pcSPS->initCamParaSPS         ( 0 );
766      pcSPS->setPredDepthMapGeneration( 0, false );
767    }
768    else
769    {
770      READ_FLAG( uiCode, "depth_flag" ); 
771      if( uiCode )
772      {
773        READ_UVLC( uiCode, "view_idx" ); 
774        pcSPS->initCamParaSPSDepth    ( uiCode );
775        pcSPS->setPredDepthMapGeneration( uiCode, true );
776      }
777      else
778      {
779        UInt  uiViewIndex;
780        READ_UVLC( uiViewIndex, "view_idx" );  uiViewIndex++; 
781        UInt uiPredDepthMapGeneration = 0;
782        UInt uiMultiviewMvPredMode = 0;
783
784        READ_UVLC( uiPredDepthMapGeneration, "Pdm_generation" );
785        if( uiPredDepthMapGeneration )
786        {
787          READ_UVLC( uiMultiviewMvPredMode, "multi_view_mv_pred_mode" );
788        }
789
790        pcSPS->setPredDepthMapGeneration( uiViewIndex, false, uiPredDepthMapGeneration, uiMultiviewMvPredMode);
791
792      }
793    }
794#endif
795  }
796}
797
798Void TDecCavlc::parseVPS(TComVPS* pcVPS)
799{
800  UInt  uiCode;
801 
802  READ_CODE( 4,  uiCode,  "vps_video_parameter_set_id" );         pcVPS->setVPSId( uiCode );
803  READ_CODE( 2,  uiCode,  "vps_reserved_three_2bits" );           assert(uiCode == 3);
804#if H_MV
805  READ_CODE( 6,  uiCode,  "vps_max_layers_minus1" );              pcVPS->setMaxLayers( uiCode + 1 );
806#else
807  READ_CODE( 6,  uiCode,  "vps_reserved_zero_6bits" );            assert(uiCode == 0);
808#endif
809  READ_CODE( 3,  uiCode,  "vps_max_sub_layers_minus1" );          pcVPS->setMaxTLayers( uiCode + 1 );
810  READ_FLAG(     uiCode,  "vps_temporal_id_nesting_flag" );       pcVPS->setTemporalNestingFlag( uiCode ? true:false );
811  assert (pcVPS->getMaxTLayers()>1||pcVPS->getTemporalNestingFlag());
812#if H_MV
813  READ_CODE( 16, uiCode,  "vps_extension_offset" );               
814#else
815  READ_CODE( 16, uiCode,  "vps_reserved_ffff_16bits" );           assert(uiCode == 0xffff);
816#endif
817  parsePTL ( pcVPS->getPTL(), true, pcVPS->getMaxTLayers()-1);
818#if SIGNAL_BITRATE_PICRATE_IN_VPS
819  parseBitratePicRateInfo( pcVPS->getBitratePicrateInfo(), 0, pcVPS->getMaxTLayers() - 1);
820#endif
821  UInt subLayerOrderingInfoPresentFlag;
822  READ_FLAG(subLayerOrderingInfoPresentFlag, "vps_sub_layer_ordering_info_present_flag");
823  for(UInt i = 0; i <= pcVPS->getMaxTLayers()-1; i++)
824  {
825#if L0323_DPB
826    READ_UVLC( uiCode,  "vps_max_dec_pic_buffering_minus1[i]" );     pcVPS->setMaxDecPicBuffering( uiCode + 1, i );
827#else
828    READ_UVLC( uiCode,  "vps_max_dec_pic_buffering[i]" );     pcVPS->setMaxDecPicBuffering( uiCode, i );
829#endif
830    READ_UVLC( uiCode,  "vps_num_reorder_pics[i]" );          pcVPS->setNumReorderPics( uiCode, i );
831    READ_UVLC( uiCode,  "vps_max_latency_increase[i]" );      pcVPS->setMaxLatencyIncrease( uiCode, i );
832
833    if (!subLayerOrderingInfoPresentFlag)
834    {
835      for (i++; i <= pcVPS->getMaxTLayers()-1; i++)
836      {
837        pcVPS->setMaxDecPicBuffering(pcVPS->getMaxDecPicBuffering(0), i);
838        pcVPS->setNumReorderPics(pcVPS->getNumReorderPics(0), i);
839        pcVPS->setMaxLatencyIncrease(pcVPS->getMaxLatencyIncrease(0), i);
840      }
841      break;
842    }
843  }
844
845  assert( pcVPS->getNumHrdParameters() < MAX_VPS_OP_SETS_PLUS1 );
846#if H_MV
847  assert( pcVPS->getMaxNuhLayerId() < MAX_VPS_NUH_LAYER_ID_PLUS1 );
848  READ_CODE( 6, uiCode, "vps_max_nuh_layer_id" );   pcVPS->setMaxNuhLayerId( uiCode );
849#else
850  assert( pcVPS->getMaxNuhReservedZeroLayerId() < MAX_VPS_NUH_RESERVED_ZERO_LAYER_ID_PLUS1 );
851  READ_CODE( 6, uiCode, "vps_max_nuh_reserved_zero_layer_id" );   pcVPS->setMaxNuhReservedZeroLayerId( uiCode );
852#endif
853  READ_UVLC(    uiCode, "vps_max_op_sets_minus1" );               pcVPS->setMaxOpSets( uiCode + 1 );
854  for( UInt opsIdx = 1; opsIdx <= ( pcVPS->getMaxOpSets() - 1 ); opsIdx ++ )
855  {
856    // Operation point set
857#if H_MV
858    for( UInt i = 0; i <= pcVPS->getMaxNuhLayerId(); i ++ )
859#else
860    for( UInt i = 0; i <= pcVPS->getMaxNuhReservedZeroLayerId(); i ++ )
861#endif
862    {
863      READ_FLAG( uiCode, "layer_id_included_flag[opsIdx][i]" );     pcVPS->setLayerIdIncludedFlag( uiCode == 1 ? true : false, opsIdx, i );
864    }
865  }
866#if L0043_TIMING_INFO
867  TimingInfo *timingInfo = pcVPS->getTimingInfo();
868  READ_FLAG(       uiCode, "vps_timing_info_present_flag");         timingInfo->setTimingInfoPresentFlag      (uiCode ? true : false);
869  if(timingInfo->getTimingInfoPresentFlag())
870  {
871    READ_CODE( 32, uiCode, "vps_num_units_in_tick");                timingInfo->setNumUnitsInTick             (uiCode);
872    READ_CODE( 32, uiCode, "vps_time_scale");                       timingInfo->setTimeScale                  (uiCode);
873    READ_FLAG(     uiCode, "vps_poc_proportional_to_timing_flag");  timingInfo->setPocProportionalToTimingFlag(uiCode ? true : false);
874    if(timingInfo->getPocProportionalToTimingFlag())
875    {
876      READ_UVLC(   uiCode, "vps_num_ticks_poc_diff_one_minus1");    timingInfo->setNumTicksPocDiffOneMinus1   (uiCode);
877    }
878#endif
879    READ_UVLC( uiCode, "vps_num_hrd_parameters" );                  pcVPS->setNumHrdParameters( uiCode );
880
881    if( pcVPS->getNumHrdParameters() > 0 )
882    {
883      pcVPS->createHrdParamBuffer();
884    }
885    for( UInt i = 0; i < pcVPS->getNumHrdParameters(); i ++ )
886    {
887      READ_UVLC( uiCode, "hrd_op_set_idx" );                       pcVPS->setHrdOpSetIdx( uiCode, i );
888      if( i > 0 )
889      {
890        READ_FLAG( uiCode, "cprms_present_flag[i]" );              pcVPS->setCprmsPresentFlag( uiCode == 1 ? true : false, i );
891      }
892      parseHrdParameters(pcVPS->getHrdParameters(i), pcVPS->getCprmsPresentFlag( i ), pcVPS->getMaxTLayers() - 1);
893    }
894#if L0043_TIMING_INFO
895  }
896#endif
897  READ_FLAG( uiCode,  "vps_extension_flag" );
898  if (uiCode)
899  {
900#if H_MV
901    m_pcBitstream->readOutTrailingBits();
902
903    READ_FLAG( uiCode, "avc_base_layer_flag" );                     pcVPS->setAvcBaseLayerFlag( uiCode == 1 ? true : false );
904    READ_FLAG( uiCode, "splitting_flag" );                          pcVPS->setSplittingFlag( uiCode == 1 ? true : false );
905
906    // Parse scalability_mask[i]   
907    for( Int sIdx = 0; sIdx < MAX_NUM_SCALABILITY_TYPES; sIdx++ )
908    {
909      READ_FLAG( uiCode,  "scalability_mask[i]" );                  pcVPS->setScalabilityMask( sIdx, uiCode == 1 ? true : false );     
910    }
911
912    Int numScalabilityTypes = pcVPS->getNumScalabilityTypes(); 
913
914    // Parse dimension_id_len_minus1[j]   
915    for( Int sIdx = 0; sIdx < numScalabilityTypes; sIdx++ )
916    {
917        READ_CODE( 3, uiCode, "dimension_id_len_minus1[j]" );       pcVPS->setDimensionIdLen( sIdx, uiCode + 1 );
918    }
919
920    // vps_nuh_layer_id_present_flag
921    READ_FLAG( uiCode, "vps_nuh_layer_id_present_flag" );           pcVPS->setVpsNuhLayerIdPresentFlag( uiCode == 1 ? true : false );
922
923    // parse layer_id_in_nuh[i] and derive LayerIdInVps
924    // already updated to JCT3V-D0220
925    for( Int layer = 0; layer <= pcVPS->getMaxLayers() - 1; layer++ )
926    {
927      UInt layerIdInNuh; 
928      if ( pcVPS->getVpsNuhLayerIdPresentFlag() && ( layer != 0 ) )
929      {
930        READ_CODE( 6, uiCode, "layer_id_in_nuh[i]" );                layerIdInNuh = uiCode; 
931      }
932      else
933      {
934        layerIdInNuh = layer; 
935      }     
936
937      pcVPS->setLayerIdInNuh( layer, layerIdInNuh );
938      pcVPS->setLayerIdInVps( layerIdInNuh, layer ); 
939
940      // parse dimension_id[i][j]
941      for( Int sIdx = 0; sIdx < numScalabilityTypes; sIdx++ )
942      {
943          READ_CODE( pcVPS->getDimensionIdLen( sIdx ), uiCode, "dimension_id[i][j]" );  pcVPS->setDimensionId( layer, sIdx, uiCode );
944      }
945    }
946
947    for( Int layerSet = 1; layerSet <= pcVPS->getMaxOpSets() - 1; layerSet++ )
948    {
949      READ_FLAG(  uiCode, "vps_profile_present_flag[lsIdx]" );    pcVPS->setVpsProfilePresentFlag( layerSet, uiCode == 1 ? true : false );
950      if( pcVPS->getVpsProfilePresentFlag( layerSet ) == false )
951      {
952        READ_UVLC( uiCode, "profile_layer_set_ref_minus1[lsIdx]" ); pcVPS->setProfileLayerSetRefMinus1( layerSet, uiCode );
953      }
954
955      parsePTL ( pcVPS->getPTL( layerSet ), pcVPS->getVpsProfilePresentFlag( layerSet ), pcVPS->getMaxTLayers()-1);
956      if( pcVPS->getVpsProfilePresentFlag( layerSet ) == false )
957      {
958        TComPTL temp = *pcVPS->getPTL( layerSet );
959        *pcVPS->getPTL( layerSet ) = *pcVPS->getPTL( pcVPS->getProfileLayerSetRefMinus1( layerSet ) + 1 );
960        pcVPS->getPTL( layerSet )->copyLevelFrom( &temp );
961      }
962    }
963
964    READ_UVLC( uiCode, "num_output_layer_sets" );                  pcVPS->setNumOutputLayerSets( uiCode );
965   
966    for( Int layerSet = 0; layerSet < pcVPS->getNumOutputLayerSets(); layerSet++ )
967    {
968      READ_UVLC( uiCode, "output_layer_set_idx[i]" );              pcVPS->setOutputLayerSetIdx( layerSet, uiCode );
969      for( Int layer = 0; layer <= pcVPS->getMaxNuhLayerId(); layer++ )
970      {
971        if( pcVPS->getLayerIdIncludedFlag( pcVPS->getOutputLayerSetIdx( layerSet ), layer ) == true )
972        {
973          READ_FLAG( uiCode, "output_layer_flag" );                 pcVPS->setOutputLayerFlag( layerSet, layer, uiCode == 1 ? true : false );
974        }
975      }
976    }
977
978    for( Int i = 1; i <= pcVPS->getMaxLayers() - 1; i++ )
979    {
980      for( Int j = 0; j < i; j++ )
981      {
982        READ_FLAG( uiCode, "direct_dependency_flag[i][j]" );             pcVPS->setDirectDependencyFlag( i, j, uiCode );
983      }
984    }
985   
986    READ_FLAG( uiCode,  "vps_extension2_flag" );
987    if (uiCode)
988    {
989      while ( xMoreRbspData() )
990      {
991        READ_FLAG( uiCode, "vps_extension2_data_flag");
992      }
993    }
994
995    pcVPS->checkVPSExtensionSyntax(); 
996
997    pcVPS->calcIvRefLayers(); 
998
999#else
1000    while ( xMoreRbspData() )
1001    {
1002      READ_FLAG( uiCode, "vps_extension_data_flag");
1003    }
1004#endif   
1005  }
1006
1007#if H_3D
1008  pcVPS->initViewIndex(); 
1009#endif
1010
1011  return;
1012}
1013
1014Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager)
1015{
1016  UInt  uiCode;
1017  Int   iCode;
1018
1019#if ENC_DEC_TRACE
1020  xTraceSliceHeader(rpcSlice);
1021#endif
1022  TComPPS* pps = NULL;
1023  TComSPS* sps = NULL;
1024#if H_MV
1025  TComVPS* vps = NULL;
1026#endif
1027
1028  UInt firstSliceSegmentInPic;
1029  READ_FLAG( firstSliceSegmentInPic, "first_slice_segment_in_pic_flag" );
1030  if( rpcSlice->getRapPicFlag())
1031  { 
1032    READ_FLAG( uiCode, "no_output_of_prior_pics_flag" );  //ignored
1033  }
1034  READ_UVLC (    uiCode, "slice_pic_parameter_set_id" );  rpcSlice->setPPSId(uiCode);
1035  pps = parameterSetManager->getPrefetchedPPS(uiCode);
1036  //!KS: need to add error handling code here, if PPS is not available
1037  assert(pps!=0);
1038  sps = parameterSetManager->getPrefetchedSPS(pps->getSPSId());
1039  //!KS: need to add error handling code here, if SPS is not available
1040  assert(sps!=0);
1041#if H_MV
1042  vps = parameterSetManager->getPrefetchedVPS(sps->getVPSId());
1043  assert(vps!=0);
1044  rpcSlice->setVPS(vps);     
1045  rpcSlice->setViewId   ( vps->getViewId   ( rpcSlice->getLayerIdInVps() )      );
1046#if H_3D 
1047  rpcSlice->setViewIndex( vps->getViewIndex( rpcSlice->getLayerIdInVps() )      ); 
1048  rpcSlice->setIsDepth  ( vps->getDepthId  ( rpcSlice->getLayerIdInVps() ) == 1 );
1049#endif
1050#endif
1051  rpcSlice->setSPS(sps);
1052  rpcSlice->setPPS(pps);
1053  if( pps->getDependentSliceSegmentsEnabledFlag() && ( !firstSliceSegmentInPic ))
1054  {
1055    READ_FLAG( uiCode, "dependent_slice_segment_flag" );       rpcSlice->setDependentSliceSegmentFlag(uiCode ? true : false);
1056  }
1057  else
1058  {
1059    rpcSlice->setDependentSliceSegmentFlag(false);
1060  }
1061  Int numCTUs = ((sps->getPicWidthInLumaSamples()+sps->getMaxCUWidth()-1)/sps->getMaxCUWidth())*((sps->getPicHeightInLumaSamples()+sps->getMaxCUHeight()-1)/sps->getMaxCUHeight());
1062  Int maxParts = (1<<(sps->getMaxCUDepth()<<1));
1063  UInt sliceSegmentAddress = 0;
1064  Int bitsSliceSegmentAddress = 0;
1065  while(numCTUs>(1<<bitsSliceSegmentAddress))
1066  {
1067    bitsSliceSegmentAddress++;
1068  }
1069
1070  if(!firstSliceSegmentInPic)
1071  {
1072    READ_CODE( bitsSliceSegmentAddress, sliceSegmentAddress, "slice_segment_address" );
1073  }
1074  //set uiCode to equal slice start address (or dependent slice start address)
1075  Int startCuAddress = maxParts*sliceSegmentAddress;
1076  rpcSlice->setSliceSegmentCurStartCUAddr( startCuAddress );
1077  rpcSlice->setSliceSegmentCurEndCUAddr(numCTUs*maxParts);
1078
1079  if (rpcSlice->getDependentSliceSegmentFlag())
1080  {
1081    rpcSlice->setNextSlice          ( false );
1082    rpcSlice->setNextSliceSegment ( true  );
1083  }
1084  else
1085  {
1086    rpcSlice->setNextSlice          ( true  );
1087    rpcSlice->setNextSliceSegment ( false );
1088
1089    rpcSlice->setSliceCurStartCUAddr(startCuAddress);
1090    rpcSlice->setSliceCurEndCUAddr(numCTUs*maxParts);
1091  }
1092 
1093  if(!rpcSlice->getDependentSliceSegmentFlag())
1094  {
1095    for (Int i = 0; i < rpcSlice->getPPS()->getNumExtraSliceHeaderBits(); i++)
1096    {
1097      READ_FLAG(uiCode, "slice_reserved_undetermined_flag[]"); // ignored
1098    }
1099
1100    READ_UVLC (    uiCode, "slice_type" );            rpcSlice->setSliceType((SliceType)uiCode);
1101    if( pps->getOutputFlagPresentFlag() )
1102    {
1103      READ_FLAG( uiCode, "pic_output_flag" );    rpcSlice->setPicOutputFlag( uiCode ? true : false );
1104    }
1105    else
1106    {
1107      rpcSlice->setPicOutputFlag( true );
1108    }
1109    // in the first version chroma_format_idc is equal to one, thus colour_plane_id will not be present
1110    assert (sps->getChromaFormatIdc() == 1 );
1111    // if( separate_colour_plane_flag  ==  1 )
1112    //   colour_plane_id                                      u(2)
1113
1114    if( rpcSlice->getIdrPicFlag() )
1115    {
1116      rpcSlice->setPOC(0);
1117      TComReferencePictureSet* rps = rpcSlice->getLocalRPS();
1118      rps->setNumberOfNegativePictures(0);
1119      rps->setNumberOfPositivePictures(0);
1120      rps->setNumberOfLongtermPictures(0);
1121      rps->setNumberOfPictures(0);
1122      rpcSlice->setRPS(rps);
1123    }
1124    else
1125    {
1126      READ_CODE(sps->getBitsForPOC(), uiCode, "pic_order_cnt_lsb"); 
1127      Int iPOClsb = uiCode;
1128      Int iPrevPOC = rpcSlice->getPrevPOC();
1129      Int iMaxPOClsb = 1<< sps->getBitsForPOC();
1130      Int iPrevPOClsb = iPrevPOC%iMaxPOClsb;
1131      Int iPrevPOCmsb = iPrevPOC-iPrevPOClsb;
1132      Int iPOCmsb;
1133      if( ( iPOClsb  <  iPrevPOClsb ) && ( ( iPrevPOClsb - iPOClsb )  >=  ( iMaxPOClsb / 2 ) ) )
1134      {
1135        iPOCmsb = iPrevPOCmsb + iMaxPOClsb;
1136      }
1137      else if( (iPOClsb  >  iPrevPOClsb )  && ( (iPOClsb - iPrevPOClsb )  >  ( iMaxPOClsb / 2 ) ) ) 
1138      {
1139        iPOCmsb = iPrevPOCmsb - iMaxPOClsb;
1140      }
1141      else
1142      {
1143        iPOCmsb = iPrevPOCmsb;
1144      }
1145      if ( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
1146        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
1147        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP )
1148      {
1149        // For BLA picture types, POCmsb is set to 0.
1150        iPOCmsb = 0;
1151      }
1152      rpcSlice->setPOC              (iPOCmsb+iPOClsb);
1153
1154      TComReferencePictureSet* rps;
1155      rps = rpcSlice->getLocalRPS();
1156      rpcSlice->setRPS(rps);
1157      READ_FLAG( uiCode, "short_term_ref_pic_set_sps_flag" );
1158      if(uiCode == 0) // use short-term reference picture set explicitly signalled in slice header
1159      {
1160        parseShortTermRefPicSet(sps,rps, sps->getRPSList()->getNumberOfReferencePictureSets());
1161      }
1162      else // use reference to short-term reference picture set in PPS
1163      {
1164        Int numBits = 0;
1165        while ((1 << numBits) < rpcSlice->getSPS()->getRPSList()->getNumberOfReferencePictureSets())
1166        {
1167          numBits++;
1168        }
1169        if (numBits > 0)
1170        {
1171          READ_CODE( numBits, uiCode, "short_term_ref_pic_set_idx");
1172        }
1173        else
1174        {
1175          uiCode = 0;
1176        }
1177        memcpy(rps,sps->getRPSList()->getReferencePictureSet(uiCode),sizeof(TComReferencePictureSet));
1178      }
1179      if(sps->getLongTermRefsPresent())
1180      {
1181        Int offset = rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures();
1182        UInt numOfLtrp = 0;
1183        UInt numLtrpInSPS = 0;
1184        if (rpcSlice->getSPS()->getNumLongTermRefPicSPS() > 0)
1185        {
1186          READ_UVLC( uiCode, "num_long_term_sps");
1187          numLtrpInSPS = uiCode;
1188          numOfLtrp += numLtrpInSPS;
1189          rps->setNumberOfLongtermPictures(numOfLtrp);
1190        }
1191        Int bitsForLtrpInSPS = 0;
1192        while (rpcSlice->getSPS()->getNumLongTermRefPicSPS() > (1 << bitsForLtrpInSPS))
1193        {
1194          bitsForLtrpInSPS++;
1195        }
1196        READ_UVLC( uiCode, "num_long_term_pics");             rps->setNumberOfLongtermPictures(uiCode);
1197        numOfLtrp += uiCode;
1198        rps->setNumberOfLongtermPictures(numOfLtrp);
1199        Int maxPicOrderCntLSB = 1 << rpcSlice->getSPS()->getBitsForPOC();
1200        Int prevDeltaMSB = 0, deltaPocMSBCycleLT = 0;;
1201        for(Int j=offset+rps->getNumberOfLongtermPictures()-1, k = 0; k < numOfLtrp; j--, k++)
1202        {
1203          Int pocLsbLt;
1204          if (k < numLtrpInSPS)
1205          {
1206            uiCode = 0;
1207            if (bitsForLtrpInSPS > 0)
1208            {
1209              READ_CODE(bitsForLtrpInSPS, uiCode, "lt_idx_sps[i]");
1210            }
1211            Int usedByCurrFromSPS=rpcSlice->getSPS()->getUsedByCurrPicLtSPSFlag(uiCode);
1212
1213            pocLsbLt = rpcSlice->getSPS()->getLtRefPicPocLsbSps(uiCode);
1214            rps->setUsed(j,usedByCurrFromSPS);
1215          }
1216          else
1217          {
1218            READ_CODE(rpcSlice->getSPS()->getBitsForPOC(), uiCode, "poc_lsb_lt"); pocLsbLt= uiCode;
1219            READ_FLAG( uiCode, "used_by_curr_pic_lt_flag");     rps->setUsed(j,uiCode);
1220          }
1221          READ_FLAG(uiCode,"delta_poc_msb_present_flag");
1222          Bool mSBPresentFlag = uiCode ? true : false;
1223          if(mSBPresentFlag)                 
1224          {
1225            READ_UVLC( uiCode, "delta_poc_msb_cycle_lt[i]" );
1226            Bool deltaFlag = false;
1227            //            First LTRP                               || First LTRP from SH
1228            if( (j == offset+rps->getNumberOfLongtermPictures()-1) || (j == offset+(numOfLtrp-numLtrpInSPS)-1) )
1229            {
1230              deltaFlag = true;
1231            }
1232            if(deltaFlag)
1233            {
1234              deltaPocMSBCycleLT = uiCode;
1235            }
1236            else
1237            {
1238              deltaPocMSBCycleLT = uiCode + prevDeltaMSB;             
1239            }
1240
1241            Int pocLTCurr = rpcSlice->getPOC() - deltaPocMSBCycleLT * maxPicOrderCntLSB
1242                                        - iPOClsb + pocLsbLt;
1243            rps->setPOC     (j, pocLTCurr); 
1244            rps->setDeltaPOC(j, - rpcSlice->getPOC() + pocLTCurr);
1245            rps->setCheckLTMSBPresent(j,true); 
1246          }
1247          else
1248          {
1249            rps->setPOC     (j, pocLsbLt);
1250            rps->setDeltaPOC(j, - rpcSlice->getPOC() + pocLsbLt);
1251            rps->setCheckLTMSBPresent(j,false); 
1252          }
1253          prevDeltaMSB = deltaPocMSBCycleLT;
1254        }
1255        offset += rps->getNumberOfLongtermPictures();
1256        rps->setNumberOfPictures(offset);       
1257      } 
1258      if ( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
1259        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
1260        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP )
1261      {
1262        // In the case of BLA picture types, rps data is read from slice header but ignored
1263        rps = rpcSlice->getLocalRPS();
1264        rps->setNumberOfNegativePictures(0);
1265        rps->setNumberOfPositivePictures(0);
1266        rps->setNumberOfLongtermPictures(0);
1267        rps->setNumberOfPictures(0);
1268        rpcSlice->setRPS(rps);
1269      }
1270      if (rpcSlice->getSPS()->getTMVPFlagsPresent())
1271      {
1272        READ_FLAG( uiCode, "slice_temporal_mvp_enable_flag" );
1273        rpcSlice->setEnableTMVPFlag( uiCode == 1 ? true : false ); 
1274      }
1275      else
1276      {
1277        rpcSlice->setEnableTMVPFlag(false);
1278      }
1279    }
1280    if(sps->getUseSAO())
1281    {
1282      READ_FLAG(uiCode, "slice_sao_luma_flag");  rpcSlice->setSaoEnabledFlag((Bool)uiCode);
1283      READ_FLAG(uiCode, "slice_sao_chroma_flag");  rpcSlice->setSaoEnabledFlagChroma((Bool)uiCode);
1284    }
1285
1286    if (rpcSlice->getIdrPicFlag())
1287    {
1288      rpcSlice->setEnableTMVPFlag(false);
1289    }
1290    if (!rpcSlice->isIntra())
1291    {
1292
1293      READ_FLAG( uiCode, "num_ref_idx_active_override_flag");
1294      if (uiCode)
1295      {
1296        READ_UVLC (uiCode, "num_ref_idx_l0_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_0, uiCode + 1 );
1297        if (rpcSlice->isInterB())
1298        {
1299          READ_UVLC (uiCode, "num_ref_idx_l1_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_1, uiCode + 1 );
1300        }
1301        else
1302        {
1303          rpcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
1304        }
1305      }
1306      else
1307      {
1308        rpcSlice->setNumRefIdx(REF_PIC_LIST_0, rpcSlice->getPPS()->getNumRefIdxL0DefaultActive());
1309        if (rpcSlice->isInterB())
1310        {
1311          rpcSlice->setNumRefIdx(REF_PIC_LIST_1, rpcSlice->getPPS()->getNumRefIdxL1DefaultActive());
1312        }
1313        else
1314        {
1315          rpcSlice->setNumRefIdx(REF_PIC_LIST_1,0);
1316        }
1317      }
1318    }
1319    // }
1320    TComRefPicListModification* refPicListModification = rpcSlice->getRefPicListModification();
1321    if(!rpcSlice->isIntra())
1322    {
1323      if( !rpcSlice->getPPS()->getListsModificationPresentFlag() || rpcSlice->getNumRpsCurrTempList() <= 1 )
1324      {
1325        refPicListModification->setRefPicListModificationFlagL0( 0 );
1326      }
1327      else
1328      {
1329        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l0" ); refPicListModification->setRefPicListModificationFlagL0( uiCode ? 1 : 0 );
1330      }
1331
1332      if(refPicListModification->getRefPicListModificationFlagL0())
1333      { 
1334        uiCode = 0;
1335        Int i = 0;
1336        Int numRpsCurrTempList0 = rpcSlice->getNumRpsCurrTempList();
1337        if ( numRpsCurrTempList0 > 1 )
1338        {
1339          Int length = 1;
1340          numRpsCurrTempList0 --;
1341          while ( numRpsCurrTempList0 >>= 1) 
1342          {
1343            length ++;
1344          }
1345          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
1346          {
1347            READ_CODE( length, uiCode, "list_entry_l0" );
1348            refPicListModification->setRefPicSetIdxL0(i, uiCode );
1349          }
1350        }
1351        else
1352        {
1353          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
1354          {
1355            refPicListModification->setRefPicSetIdxL0(i, 0 );
1356          }
1357        }
1358      }
1359    }
1360    else
1361    {
1362      refPicListModification->setRefPicListModificationFlagL0(0);
1363    }
1364    if(rpcSlice->isInterB())
1365    {
1366      if( !rpcSlice->getPPS()->getListsModificationPresentFlag() || rpcSlice->getNumRpsCurrTempList() <= 1 )
1367      {
1368        refPicListModification->setRefPicListModificationFlagL1( 0 );
1369      }
1370      else
1371      {
1372        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l1" ); refPicListModification->setRefPicListModificationFlagL1( uiCode ? 1 : 0 );
1373      }
1374      if(refPicListModification->getRefPicListModificationFlagL1())
1375      {
1376        uiCode = 0;
1377        Int i = 0;
1378        Int numRpsCurrTempList1 = rpcSlice->getNumRpsCurrTempList();
1379        if ( numRpsCurrTempList1 > 1 )
1380        {
1381          Int length = 1;
1382          numRpsCurrTempList1 --;
1383          while ( numRpsCurrTempList1 >>= 1) 
1384          {
1385            length ++;
1386          }
1387          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
1388          {
1389            READ_CODE( length, uiCode, "list_entry_l1" );
1390            refPicListModification->setRefPicSetIdxL1(i, uiCode );
1391          }
1392        }
1393        else
1394        {
1395          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
1396          {
1397            refPicListModification->setRefPicSetIdxL1(i, 0 );
1398          }
1399        }
1400      }
1401    } 
1402    else
1403    {
1404      refPicListModification->setRefPicListModificationFlagL1(0);
1405    }
1406    if (rpcSlice->isInterB())
1407    {
1408      READ_FLAG( uiCode, "mvd_l1_zero_flag" );       rpcSlice->setMvdL1ZeroFlag( (uiCode ? true : false) );
1409    }
1410
1411    rpcSlice->setCabacInitFlag( false ); // default
1412    if(pps->getCabacInitPresentFlag() && !rpcSlice->isIntra())
1413    {
1414      READ_FLAG(uiCode, "cabac_init_flag");
1415      rpcSlice->setCabacInitFlag( uiCode ? true : false );
1416    }
1417
1418    if ( rpcSlice->getEnableTMVPFlag() )
1419    {
1420      if ( rpcSlice->getSliceType() == B_SLICE )
1421      {
1422        READ_FLAG( uiCode, "collocated_from_l0_flag" );
1423        rpcSlice->setColFromL0Flag(uiCode);
1424      }
1425      else
1426      {
1427        rpcSlice->setColFromL0Flag( 1 );
1428      }
1429
1430      if ( rpcSlice->getSliceType() != I_SLICE &&
1431          ((rpcSlice->getColFromL0Flag() == 1 && rpcSlice->getNumRefIdx(REF_PIC_LIST_0) > 1)||
1432           (rpcSlice->getColFromL0Flag() == 0 && rpcSlice->getNumRefIdx(REF_PIC_LIST_1) > 1)))
1433      {
1434        READ_UVLC( uiCode, "collocated_ref_idx" );
1435        rpcSlice->setColRefIdx(uiCode);
1436      }
1437      else
1438      {
1439        rpcSlice->setColRefIdx(0);
1440      }
1441    }
1442    if ( (pps->getUseWP() && rpcSlice->getSliceType()==P_SLICE) || (pps->getWPBiPred() && rpcSlice->getSliceType()==B_SLICE) )
1443    {
1444      xParsePredWeightTable(rpcSlice);
1445      rpcSlice->initWpScaling();
1446    }
1447    if (!rpcSlice->isIntra())
1448    {
1449      READ_UVLC( uiCode, "five_minus_max_num_merge_cand");
1450#if H_3D_IV_MERGE
1451      rpcSlice->setMaxNumMergeCand(((rpcSlice->getSPS()->getMultiviewMvPredMode() & PDM_USE_FOR_MERGE) == PDM_USE_FOR_MERGE ? MRG_MAX_NUM_CANDS_MEM: MRG_MAX_NUM_CANDS) - uiCode);
1452#else
1453      rpcSlice->setMaxNumMergeCand(MRG_MAX_NUM_CANDS - uiCode);
1454#endif
1455    }
1456
1457    READ_SVLC( iCode, "slice_qp_delta" );
1458    rpcSlice->setSliceQp (26 + pps->getPicInitQPMinus26() + iCode);
1459
1460    assert( rpcSlice->getSliceQp() >= -sps->getQpBDOffsetY() );
1461    assert( rpcSlice->getSliceQp() <=  51 );
1462
1463    if (rpcSlice->getPPS()->getSliceChromaQpFlag())
1464    {
1465      READ_SVLC( iCode, "slice_qp_delta_cb" );
1466      rpcSlice->setSliceQpDeltaCb( iCode );
1467      assert( rpcSlice->getSliceQpDeltaCb() >= -12 );
1468      assert( rpcSlice->getSliceQpDeltaCb() <=  12 );
1469      assert( (rpcSlice->getPPS()->getChromaCbQpOffset() + rpcSlice->getSliceQpDeltaCb()) >= -12 );
1470      assert( (rpcSlice->getPPS()->getChromaCbQpOffset() + rpcSlice->getSliceQpDeltaCb()) <=  12 );
1471
1472      READ_SVLC( iCode, "slice_qp_delta_cr" );
1473      rpcSlice->setSliceQpDeltaCr( iCode );
1474      assert( rpcSlice->getSliceQpDeltaCr() >= -12 );
1475      assert( rpcSlice->getSliceQpDeltaCr() <=  12 );
1476      assert( (rpcSlice->getPPS()->getChromaCrQpOffset() + rpcSlice->getSliceQpDeltaCr()) >= -12 );
1477      assert( (rpcSlice->getPPS()->getChromaCrQpOffset() + rpcSlice->getSliceQpDeltaCr()) <=  12 );
1478    }
1479
1480    if (rpcSlice->getPPS()->getDeblockingFilterControlPresentFlag())
1481    {
1482      if(rpcSlice->getPPS()->getDeblockingFilterOverrideEnabledFlag())
1483      {
1484        READ_FLAG ( uiCode, "deblocking_filter_override_flag" );        rpcSlice->setDeblockingFilterOverrideFlag(uiCode ? true : false);
1485      }
1486      else
1487      { 
1488        rpcSlice->setDeblockingFilterOverrideFlag(0);
1489      }
1490      if(rpcSlice->getDeblockingFilterOverrideFlag())
1491      {
1492        READ_FLAG ( uiCode, "slice_disable_deblocking_filter_flag" );   rpcSlice->setDeblockingFilterDisable(uiCode ? 1 : 0);
1493        if(!rpcSlice->getDeblockingFilterDisable())
1494        {
1495          READ_SVLC( iCode, "slice_beta_offset_div2" );                       rpcSlice->setDeblockingFilterBetaOffsetDiv2(iCode);
1496          assert(rpcSlice->getDeblockingFilterBetaOffsetDiv2() >= -6 &&
1497                 rpcSlice->getDeblockingFilterBetaOffsetDiv2() <=  6);
1498          READ_SVLC( iCode, "slice_tc_offset_div2" );                         rpcSlice->setDeblockingFilterTcOffsetDiv2(iCode);
1499          assert(rpcSlice->getDeblockingFilterTcOffsetDiv2() >= -6 &&
1500                 rpcSlice->getDeblockingFilterTcOffsetDiv2() <=  6);
1501        }
1502      }
1503      else
1504      {
1505        rpcSlice->setDeblockingFilterDisable   ( rpcSlice->getPPS()->getPicDisableDeblockingFilterFlag() );
1506        rpcSlice->setDeblockingFilterBetaOffsetDiv2( rpcSlice->getPPS()->getDeblockingFilterBetaOffsetDiv2() );
1507        rpcSlice->setDeblockingFilterTcOffsetDiv2  ( rpcSlice->getPPS()->getDeblockingFilterTcOffsetDiv2() );
1508      }
1509    }
1510    else
1511    { 
1512      rpcSlice->setDeblockingFilterDisable       ( false );
1513      rpcSlice->setDeblockingFilterBetaOffsetDiv2( 0 );
1514      rpcSlice->setDeblockingFilterTcOffsetDiv2  ( 0 );
1515    }
1516
1517    Bool isSAOEnabled = (!rpcSlice->getSPS()->getUseSAO())?(false):(rpcSlice->getSaoEnabledFlag()||rpcSlice->getSaoEnabledFlagChroma());
1518    Bool isDBFEnabled = (!rpcSlice->getDeblockingFilterDisable());
1519
1520    if(rpcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag() && ( isSAOEnabled || isDBFEnabled ))
1521    {
1522      READ_FLAG( uiCode, "slice_loop_filter_across_slices_enabled_flag");
1523    }
1524    else
1525    {
1526      uiCode = rpcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag()?1:0;
1527    }
1528    rpcSlice->setLFCrossSliceBoundaryFlag( (uiCode==1)?true:false);
1529
1530  }
1531 
1532    UInt *entryPointOffset          = NULL;
1533    UInt numEntryPointOffsets, offsetLenMinus1;
1534  if( pps->getTilesEnabledFlag() || pps->getEntropyCodingSyncEnabledFlag() )
1535  {
1536    READ_UVLC(numEntryPointOffsets, "num_entry_point_offsets"); rpcSlice->setNumEntryPointOffsets ( numEntryPointOffsets );
1537    if (numEntryPointOffsets>0)
1538    {
1539      READ_UVLC(offsetLenMinus1, "offset_len_minus1");
1540    }
1541    entryPointOffset = new UInt[numEntryPointOffsets];
1542    for (UInt idx=0; idx<numEntryPointOffsets; idx++)
1543    {
1544#if L0116_ENTRY_POINT
1545      READ_CODE(offsetLenMinus1+1, uiCode, "entry_point_offset_minus1");
1546      entryPointOffset[ idx ] = uiCode + 1;
1547#else
1548      READ_CODE(offsetLenMinus1+1, uiCode, "entry_point_offset");
1549      entryPointOffset[ idx ] = uiCode;
1550#endif
1551    }
1552  }
1553  else
1554  {
1555    rpcSlice->setNumEntryPointOffsets ( 0 );
1556  }
1557
1558  if(pps->getSliceHeaderExtensionPresentFlag())
1559  {
1560    READ_UVLC(uiCode,"slice_header_extension_length");
1561#if H_3D
1562    if( rpcSlice->getSPS()->hasCamParInSliceHeader() )
1563    {
1564      UInt uiViewIndex = rpcSlice->getViewIndex();
1565      for( UInt uiBaseIndex = 0; uiBaseIndex < uiViewIndex; uiBaseIndex++ )
1566      {
1567        READ_SVLC( iCode, "cp_scale" );                m_aaiTempScale [ uiBaseIndex ][ uiViewIndex ] = iCode;
1568        READ_SVLC( iCode, "cp_off" );                  m_aaiTempOffset[ uiBaseIndex ][ uiViewIndex ] = iCode;
1569        READ_SVLC( iCode, "cp_inv_scale_plus_scale" ); m_aaiTempScale [ uiViewIndex ][ uiBaseIndex ] = iCode - m_aaiTempScale [ uiBaseIndex ][ uiViewIndex ];
1570        READ_SVLC( iCode, "cp_inv_off_plus_off" );     m_aaiTempOffset[ uiViewIndex ][ uiBaseIndex ] = iCode - m_aaiTempOffset[ uiBaseIndex ][ uiViewIndex ];
1571      }
1572      rpcSlice->setCamparaSlice( m_aaiTempScale, m_aaiTempOffset );
1573    }
1574
1575    READ_FLAG(uiCode,"slice_segment_header_extension2_flag"); 
1576    if ( uiCode )
1577    {   
1578      READ_UVLC(uiCode,"slice_header_extension2_length");
1579      for(Int i=0; i<uiCode; i++)
1580      {
1581        UInt ignore;
1582        READ_CODE(8,ignore,"slice_header_extension2_data_byte");
1583      }
1584    }
1585  }
1586#else
1587    for(Int i=0; i<uiCode; i++)
1588    {
1589      UInt ignore;
1590      READ_CODE(8,ignore,"slice_header_extension_data_byte");
1591    }
1592  }
1593#endif
1594  m_pcBitstream->readByteAlignment();
1595
1596  if( pps->getTilesEnabledFlag() || pps->getEntropyCodingSyncEnabledFlag() )
1597  {
1598    Int endOfSliceHeaderLocation = m_pcBitstream->getByteLocation();
1599    Int  curEntryPointOffset     = 0;
1600    Int  prevEntryPointOffset    = 0;
1601    for (UInt idx=0; idx<numEntryPointOffsets; idx++)
1602    {
1603      curEntryPointOffset += entryPointOffset[ idx ];
1604
1605      Int emulationPreventionByteCount = 0;
1606      for ( UInt curByteIdx  = 0; curByteIdx<m_pcBitstream->numEmulationPreventionBytesRead(); curByteIdx++ )
1607      {
1608        if ( m_pcBitstream->getEmulationPreventionByteLocation( curByteIdx ) >= ( prevEntryPointOffset + endOfSliceHeaderLocation ) && 
1609             m_pcBitstream->getEmulationPreventionByteLocation( curByteIdx ) <  ( curEntryPointOffset  + endOfSliceHeaderLocation ) )
1610        {
1611          emulationPreventionByteCount++;
1612        }
1613      }
1614
1615      entryPointOffset[ idx ] -= emulationPreventionByteCount;
1616      prevEntryPointOffset = curEntryPointOffset;
1617    }
1618
1619    if ( pps->getTilesEnabledFlag() )
1620    {
1621      rpcSlice->setTileLocationCount( numEntryPointOffsets );
1622
1623      UInt prevPos = 0;
1624      for (Int idx=0; idx<rpcSlice->getTileLocationCount(); idx++)
1625      {
1626        rpcSlice->setTileLocation( idx, prevPos + entryPointOffset [ idx ] );
1627        prevPos += entryPointOffset[ idx ];
1628      }
1629    }
1630    else if ( pps->getEntropyCodingSyncEnabledFlag() )
1631    {
1632    Int numSubstreams = rpcSlice->getNumEntryPointOffsets()+1;
1633      rpcSlice->allocSubstreamSizes(numSubstreams);
1634      UInt *pSubstreamSizes       = rpcSlice->getSubstreamSizes();
1635      for (Int idx=0; idx<numSubstreams-1; idx++)
1636      {
1637        if ( idx < numEntryPointOffsets )
1638        {
1639          pSubstreamSizes[ idx ] = ( entryPointOffset[ idx ] << 3 ) ;
1640        }
1641        else
1642        {
1643          pSubstreamSizes[ idx ] = 0;
1644        }
1645      }
1646    }
1647
1648    if (entryPointOffset)
1649    {
1650      delete [] entryPointOffset;
1651    }
1652  }
1653
1654  return;
1655}
1656 
1657Void TDecCavlc::parsePTL( TComPTL *rpcPTL, Bool profilePresentFlag, Int maxNumSubLayersMinus1 )
1658{
1659  UInt uiCode;
1660  if(profilePresentFlag)
1661  {
1662    parseProfileTier(rpcPTL->getGeneralPTL());
1663  }
1664  READ_CODE( 8, uiCode, "general_level_idc" );    rpcPTL->getGeneralPTL()->setLevelIdc(uiCode);
1665
1666#if L0363_BYTE_ALIGN
1667  for (Int i = 0; i < maxNumSubLayersMinus1; i++)
1668  {
1669#if !H_MV
1670    if(profilePresentFlag)
1671    {
1672#endif
1673      READ_FLAG( uiCode, "sub_layer_profile_present_flag[i]" ); rpcPTL->setSubLayerProfilePresentFlag(i, uiCode);
1674#if H_MV
1675    rpcPTL->setSubLayerProfilePresentFlag( i, profilePresentFlag && rpcPTL->getSubLayerProfilePresentFlag(i) );
1676#else
1677    }
1678#endif
1679    READ_FLAG( uiCode, "sub_layer_level_present_flag[i]"   ); rpcPTL->setSubLayerLevelPresentFlag  (i, uiCode);
1680  }
1681 
1682  if (maxNumSubLayersMinus1 > 0)
1683  {
1684    for (Int i = maxNumSubLayersMinus1; i < 8; i++)
1685    {
1686      READ_CODE(2, uiCode, "reserved_zero_2bits");
1687      assert(uiCode == 0);
1688    }
1689  }
1690#endif
1691 
1692  for(Int i = 0; i < maxNumSubLayersMinus1; i++)
1693  {
1694#if !L0363_BYTE_ALIGN
1695    if(profilePresentFlag)
1696    {
1697      READ_FLAG( uiCode, "sub_layer_profile_present_flag[i]" ); rpcPTL->setSubLayerProfilePresentFlag(i, uiCode);
1698    }
1699    READ_FLAG( uiCode, "sub_layer_level_present_flag[i]"   ); rpcPTL->setSubLayerLevelPresentFlag  (i, uiCode);
1700#endif
1701    if( profilePresentFlag && rpcPTL->getSubLayerProfilePresentFlag(i) )
1702    {
1703      parseProfileTier(rpcPTL->getSubLayerPTL(i));
1704    }
1705    if(rpcPTL->getSubLayerLevelPresentFlag(i))
1706    {
1707      READ_CODE( 8, uiCode, "sub_layer_level_idc[i]" );   rpcPTL->getSubLayerPTL(i)->setLevelIdc(uiCode);
1708    }
1709  }
1710}
1711
1712Void TDecCavlc::parseProfileTier(ProfileTierLevel *ptl)
1713{
1714  UInt uiCode;
1715  READ_CODE(2 , uiCode, "XXX_profile_space[]");   ptl->setProfileSpace(uiCode);
1716  READ_FLAG(    uiCode, "XXX_tier_flag[]"    );   ptl->setTierFlag    (uiCode ? 1 : 0);
1717  READ_CODE(5 , uiCode, "XXX_profile_idc[]"  );   ptl->setProfileIdc  (uiCode);
1718  for(Int j = 0; j < 32; j++)
1719  {
1720    READ_FLAG(  uiCode, "XXX_profile_compatibility_flag[][j]");   ptl->setProfileCompatibilityFlag(j, uiCode ? 1 : 0);
1721  }
1722#if L0046_CONSTRAINT_FLAGS
1723  READ_FLAG(uiCode, "general_progressive_source_flag");
1724  ptl->setProgressiveSourceFlag(uiCode ? true : false);
1725
1726  READ_FLAG(uiCode, "general_interlaced_source_flag");
1727  ptl->setInterlacedSourceFlag(uiCode ? true : false);
1728 
1729  READ_FLAG(uiCode, "general_non_packed_constraint_flag");
1730  ptl->setNonPackedConstraintFlag(uiCode ? true : false);
1731 
1732  READ_FLAG(uiCode, "general_frame_only_constraint_flag");
1733  ptl->setFrameOnlyConstraintFlag(uiCode ? true : false);
1734 
1735  READ_CODE(16, uiCode, "XXX_reserved_zero_44bits[0..15]");
1736  READ_CODE(16, uiCode, "XXX_reserved_zero_44bits[16..31]");
1737  READ_CODE(12, uiCode, "XXX_reserved_zero_44bits[32..43]");
1738#elif L0363_MORE_BITS
1739  READ_CODE(16, uiCode, "XXX_reserved_zero_48bits[0..15]");
1740  READ_CODE(16, uiCode, "XXX_reserved_zero_48bits[16..31]");
1741  READ_CODE(16, uiCode, "XXX_reserved_zero_48bits[32..47]");
1742#else
1743  READ_CODE(16, uiCode, "XXX_reserved_zero_16bits[]");  assert( uiCode == 0 );
1744#endif
1745}
1746#if SIGNAL_BITRATE_PICRATE_IN_VPS
1747Void TDecCavlc::parseBitratePicRateInfo(TComBitRatePicRateInfo *info, Int tempLevelLow, Int tempLevelHigh)
1748{
1749  UInt uiCode;
1750  for(Int i = tempLevelLow; i <= tempLevelHigh; i++)
1751  {
1752    READ_FLAG( uiCode, "bit_rate_info_present_flag[i]" ); info->setBitRateInfoPresentFlag(i, uiCode ? true : false);
1753    READ_FLAG( uiCode, "pic_rate_info_present_flag[i]" ); info->setPicRateInfoPresentFlag(i, uiCode ? true : false);
1754    if(info->getBitRateInfoPresentFlag(i))
1755    {
1756      READ_CODE( 16, uiCode, "avg_bit_rate[i]" ); info->setAvgBitRate(i, uiCode);
1757      READ_CODE( 16, uiCode, "max_bit_rate[i]" ); info->setMaxBitRate(i, uiCode);
1758    }
1759    if(info->getPicRateInfoPresentFlag(i))
1760    {
1761      READ_CODE(  2, uiCode,  "constant_pic_rate_idc[i]" ); info->setConstantPicRateIdc(i, uiCode);
1762      READ_CODE( 16, uiCode,  "avg_pic_rate[i]"          ); info->setAvgPicRate(i, uiCode);
1763    }
1764  }
1765}
1766#endif 
1767Void TDecCavlc::parseTerminatingBit( UInt& ruiBit )
1768{
1769  ruiBit = false;
1770  Int iBitsLeft = m_pcBitstream->getNumBitsLeft();
1771  if(iBitsLeft <= 8)
1772  {
1773    UInt uiPeekValue = m_pcBitstream->peekBits(iBitsLeft);
1774    if (uiPeekValue == (1<<(iBitsLeft-1)))
1775    {
1776      ruiBit = true;
1777    }
1778  }
1779}
1780
1781Void TDecCavlc::parseSkipFlag( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1782{
1783  assert(0);
1784}
1785
1786Void TDecCavlc::parseCUTransquantBypassFlag( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1787{
1788  assert(0);
1789}
1790
1791Void TDecCavlc::parseMVPIdx( Int& /*riMVPIdx*/ )
1792{
1793  assert(0);
1794}
1795
1796Void TDecCavlc::parseSplitFlag     ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1797{
1798  assert(0);
1799}
1800
1801Void TDecCavlc::parsePartSize( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1802{
1803  assert(0);
1804}
1805
1806Void TDecCavlc::parsePredMode( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1807{
1808  assert(0);
1809}
1810
1811/** Parse I_PCM information.
1812* \param pcCU pointer to CU
1813* \param uiAbsPartIdx CU index
1814* \param uiDepth CU depth
1815* \returns Void
1816*
1817* If I_PCM flag indicates that the CU is I_PCM, parse its PCM alignment bits and codes. 
1818*/
1819Void TDecCavlc::parseIPCMInfo( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1820{
1821  assert(0);
1822}
1823
1824Void TDecCavlc::parseIntraDirLumaAng  ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1825{ 
1826  assert(0);
1827}
1828
1829Void TDecCavlc::parseIntraDirChroma( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1830{
1831  assert(0);
1832}
1833
1834Void TDecCavlc::parseInterDir( TComDataCU* /*pcCU*/, UInt& /*ruiInterDir*/, UInt /*uiAbsPartIdx*/ )
1835{
1836  assert(0);
1837}
1838
1839Void TDecCavlc::parseRefFrmIdx( TComDataCU* /*pcCU*/, Int& /*riRefFrmIdx*/, RefPicList /*eRefList*/ )
1840{
1841  assert(0);
1842}
1843
1844Void TDecCavlc::parseMvd( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiPartIdx*/, UInt /*uiDepth*/, RefPicList /*eRefList*/ )
1845{
1846  assert(0);
1847}
1848
1849Void TDecCavlc::parseDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1850{
1851  Int qp;
1852  Int  iDQp;
1853
1854  xReadSvlc( iDQp );
1855
1856  Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffsetY();
1857  qp = (((Int) pcCU->getRefQP( uiAbsPartIdx ) + iDQp + 52 + 2*qpBdOffsetY )%(52+ qpBdOffsetY)) -  qpBdOffsetY;
1858
1859  UInt uiAbsQpCUPartIdx = (uiAbsPartIdx>>((g_uiMaxCUDepth - pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())<<1))<<((g_uiMaxCUDepth - pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())<<1) ;
1860  UInt uiQpCUDepth =   min(uiDepth,pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()) ;
1861
1862  pcCU->setQPSubParts( qp, uiAbsQpCUPartIdx, uiQpCUDepth );
1863}
1864
1865Void TDecCavlc::parseCoeffNxN( TComDataCU* /*pcCU*/, TCoeff* /*pcCoef*/, UInt /*uiAbsPartIdx*/, UInt /*uiWidth*/, UInt /*uiHeight*/, UInt /*uiDepth*/, TextType /*eTType*/ )
1866{
1867  assert(0);
1868}
1869
1870Void TDecCavlc::parseTransformSubdivFlag( UInt& /*ruiSubdivFlag*/, UInt /*uiLog2TransformBlockSize*/ )
1871{
1872  assert(0);
1873}
1874
1875Void TDecCavlc::parseQtCbf( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, TextType /*eType*/, UInt /*uiTrDepth*/, UInt /*uiDepth*/ )
1876{
1877  assert(0);
1878}
1879
1880Void TDecCavlc::parseQtRootCbf( UInt /*uiAbsPartIdx*/, UInt& /*uiQtRootCbf*/ )
1881{
1882  assert(0);
1883}
1884
1885Void TDecCavlc::parseTransformSkipFlags (TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*width*/, UInt /*height*/, UInt /*uiDepth*/, TextType /*eTType*/)
1886{
1887  assert(0);
1888}
1889
1890Void TDecCavlc::parseMergeFlag ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/, UInt /*uiPUIdx*/ )
1891{
1892  assert(0);
1893}
1894
1895Void TDecCavlc::parseMergeIndex ( TComDataCU* /*pcCU*/, UInt& /*ruiMergeIndex*/ )
1896{
1897  assert(0);
1898}
1899
1900// ====================================================================================================================
1901// Protected member functions
1902// ====================================================================================================================
1903
1904/** parse explicit wp tables
1905* \param TComSlice* pcSlice
1906* \returns Void
1907*/
1908Void TDecCavlc::xParsePredWeightTable( TComSlice* pcSlice )
1909{
1910  wpScalingParam  *wp;
1911  Bool            bChroma     = true; // color always present in HEVC ?
1912  SliceType       eSliceType  = pcSlice->getSliceType();
1913  Int             iNbRef       = (eSliceType == B_SLICE ) ? (2) : (1);
1914  UInt            uiLog2WeightDenomLuma, uiLog2WeightDenomChroma;
1915  UInt            uiTotalSignalledWeightFlags = 0;
1916 
1917  Int iDeltaDenom;
1918  // decode delta_luma_log2_weight_denom :
1919  READ_UVLC( uiLog2WeightDenomLuma, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
1920  assert( uiLog2WeightDenomLuma <= 7 );
1921  if( bChroma ) 
1922  {
1923    READ_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );     // se(v): delta_chroma_log2_weight_denom
1924    assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)>=0);
1925    assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)<=7);
1926    uiLog2WeightDenomChroma = (UInt)(iDeltaDenom + uiLog2WeightDenomLuma);
1927  }
1928
1929  for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ ) 
1930  {
1931    RefPicList  eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 );
1932    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
1933    {
1934      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1935
1936      wp[0].uiLog2WeightDenom = uiLog2WeightDenomLuma;
1937      wp[1].uiLog2WeightDenom = uiLog2WeightDenomChroma;
1938      wp[2].uiLog2WeightDenom = uiLog2WeightDenomChroma;
1939
1940      UInt  uiCode;
1941      READ_FLAG( uiCode, "luma_weight_lX_flag" );           // u(1): luma_weight_l0_flag
1942      wp[0].bPresentFlag = ( uiCode == 1 );
1943      uiTotalSignalledWeightFlags += wp[0].bPresentFlag;
1944    }
1945    if ( bChroma ) 
1946    {
1947      UInt  uiCode;
1948      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
1949      {
1950        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1951        READ_FLAG( uiCode, "chroma_weight_lX_flag" );      // u(1): chroma_weight_l0_flag
1952        wp[1].bPresentFlag = ( uiCode == 1 );
1953        wp[2].bPresentFlag = ( uiCode == 1 );
1954        uiTotalSignalledWeightFlags += 2*wp[1].bPresentFlag;
1955      }
1956    }
1957    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
1958    {
1959      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1960      if ( wp[0].bPresentFlag ) 
1961      {
1962        Int iDeltaWeight;
1963        READ_SVLC( iDeltaWeight, "delta_luma_weight_lX" );  // se(v): delta_luma_weight_l0[i]
1964        assert( iDeltaWeight >= -128 );
1965        assert( iDeltaWeight <=  127 );
1966        wp[0].iWeight = (iDeltaWeight + (1<<wp[0].uiLog2WeightDenom));
1967        READ_SVLC( wp[0].iOffset, "luma_offset_lX" );       // se(v): luma_offset_l0[i]
1968        assert( wp[0].iOffset >= -128 );
1969        assert( wp[0].iOffset <=  127 );
1970      }
1971      else 
1972      {
1973        wp[0].iWeight = (1 << wp[0].uiLog2WeightDenom);
1974        wp[0].iOffset = 0;
1975      }
1976      if ( bChroma ) 
1977      {
1978        if ( wp[1].bPresentFlag ) 
1979        {
1980          for ( Int j=1 ; j<3 ; j++ ) 
1981          {
1982            Int iDeltaWeight;
1983            READ_SVLC( iDeltaWeight, "delta_chroma_weight_lX" );  // se(v): chroma_weight_l0[i][j]
1984            assert( iDeltaWeight >= -128 );
1985            assert( iDeltaWeight <=  127 );
1986            wp[j].iWeight = (iDeltaWeight + (1<<wp[1].uiLog2WeightDenom));
1987
1988            Int iDeltaChroma;
1989            READ_SVLC( iDeltaChroma, "delta_chroma_offset_lX" );  // se(v): delta_chroma_offset_l0[i][j]
1990            assert( iDeltaChroma >= -512 );
1991            assert( iDeltaChroma <=  511 );
1992            Int pred = ( 128 - ( ( 128*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) );
1993            wp[j].iOffset = Clip3(-128, 127, (iDeltaChroma + pred) );
1994          }
1995        }
1996        else 
1997        {
1998          for ( Int j=1 ; j<3 ; j++ ) 
1999          {
2000            wp[j].iWeight = (1 << wp[j].uiLog2WeightDenom);
2001            wp[j].iOffset = 0;
2002          }
2003        }
2004      }
2005    }
2006
2007    for ( Int iRefIdx=pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx<MAX_NUM_REF ; iRefIdx++ ) 
2008    {
2009      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
2010
2011      wp[0].bPresentFlag = false;
2012      wp[1].bPresentFlag = false;
2013      wp[2].bPresentFlag = false;
2014    }
2015  }
2016  assert(uiTotalSignalledWeightFlags<=24);
2017}
2018
2019/** decode quantization matrix
2020* \param scalingList quantization matrix information
2021*/
2022Void TDecCavlc::parseScalingList(TComScalingList* scalingList)
2023{
2024  UInt  code, sizeId, listId;
2025  Bool scalingListPredModeFlag;
2026  //for each size
2027  for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2028  {
2029    for(listId = 0; listId <  g_scalingListNum[sizeId]; listId++)
2030    {
2031      READ_FLAG( code, "scaling_list_pred_mode_flag");
2032      scalingListPredModeFlag = (code) ? true : false;
2033      if(!scalingListPredModeFlag) //Copy Mode
2034      {
2035        READ_UVLC( code, "scaling_list_pred_matrix_id_delta");
2036        scalingList->setRefMatrixId (sizeId,listId,(UInt)((Int)(listId)-(code)));
2037        if( sizeId > SCALING_LIST_8x8 )
2038        {
2039          scalingList->setScalingListDC(sizeId,listId,((listId == scalingList->getRefMatrixId (sizeId,listId))? 16 :scalingList->getScalingListDC(sizeId, scalingList->getRefMatrixId (sizeId,listId))));
2040        }
2041        scalingList->processRefMatrix( sizeId, listId, scalingList->getRefMatrixId (sizeId,listId));
2042
2043      }
2044      else //DPCM Mode
2045      {
2046        xDecodeScalingList(scalingList, sizeId, listId);
2047      }
2048    }
2049  }
2050
2051  return;
2052}
2053/** decode DPCM
2054* \param scalingList  quantization matrix information
2055* \param sizeId size index
2056* \param listId list index
2057*/
2058Void TDecCavlc::xDecodeScalingList(TComScalingList *scalingList, UInt sizeId, UInt listId)
2059{
2060  Int i,coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]);
2061  Int data;
2062  Int scalingListDcCoefMinus8 = 0;
2063  Int nextCoef = SCALING_LIST_START_VALUE;
2064  UInt* scan  = (sizeId == 0) ? g_auiSigLastScan [ SCAN_DIAG ] [ 1 ] :  g_sigLastScanCG32x32;
2065  Int *dst = scalingList->getScalingListAddress(sizeId, listId);
2066
2067  if( sizeId > SCALING_LIST_8x8 )
2068  {
2069    READ_SVLC( scalingListDcCoefMinus8, "scaling_list_dc_coef_minus8");
2070    scalingList->setScalingListDC(sizeId,listId,scalingListDcCoefMinus8 + 8);
2071    nextCoef = scalingList->getScalingListDC(sizeId,listId);
2072  }
2073
2074  for(i = 0; i < coefNum; i++)
2075  {
2076    READ_SVLC( data, "scaling_list_delta_coef");
2077    nextCoef = (nextCoef + data + 256 ) % 256;
2078    dst[scan[i]] = nextCoef;
2079  }
2080}
2081
2082Bool TDecCavlc::xMoreRbspData()
2083{ 
2084  Int bitsLeft = m_pcBitstream->getNumBitsLeft();
2085
2086  // if there are more than 8 bits, it cannot be rbsp_trailing_bits
2087  if (bitsLeft > 8)
2088  {
2089    return true;
2090  }
2091
2092  UChar lastByte = m_pcBitstream->peekBits(bitsLeft);
2093  Int cnt = bitsLeft;
2094
2095  // remove trailing bits equal to zero
2096  while ((cnt>0) && ((lastByte & 1) == 0))
2097  {
2098    lastByte >>= 1;
2099    cnt--;
2100  }
2101  // remove bit equal to one
2102  cnt--;
2103
2104  // we should not have a negative number of bits
2105  assert (cnt>=0);
2106
2107  // we have more data, if cnt is not zero
2108  return (cnt>0);
2109}
2110
2111//! \}
2112
Note: See TracBrowser for help on using the repository browser.