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

Last change on this file since 479 was 479, checked in by tech, 11 years ago
  • changed IV-MERGE HLS to match Test Model 4 spec
  • incorporated iv-refpic list to TComSlice
  • removed TComDepthMapGenerator
  • Property svn:eol-style set to native
File size: 78.7 KB
Line 
1/* The copyright in this software is being made available under the BSD
2* License, included below. This software may be subject to other third party
3* and contributor rights, including patent rights, and no such rights are
4* granted under this license. 
5*
6* Copyright (c) 2010-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  }
762}
763
764Void TDecCavlc::parseVPS(TComVPS* pcVPS)
765{
766  UInt  uiCode;
767 
768  READ_CODE( 4,  uiCode,  "vps_video_parameter_set_id" );         pcVPS->setVPSId( uiCode );
769  READ_CODE( 2,  uiCode,  "vps_reserved_three_2bits" );           assert(uiCode == 3);
770#if H_MV
771  READ_CODE( 6,  uiCode,  "vps_max_layers_minus1" );              pcVPS->setMaxLayers( uiCode + 1 );
772#else
773  READ_CODE( 6,  uiCode,  "vps_reserved_zero_6bits" );            assert(uiCode == 0);
774#endif
775  READ_CODE( 3,  uiCode,  "vps_max_sub_layers_minus1" );          pcVPS->setMaxTLayers( uiCode + 1 );
776  READ_FLAG(     uiCode,  "vps_temporal_id_nesting_flag" );       pcVPS->setTemporalNestingFlag( uiCode ? true:false );
777  assert (pcVPS->getMaxTLayers()>1||pcVPS->getTemporalNestingFlag());
778#if H_MV
779  READ_CODE( 16, uiCode,  "vps_extension_offset" );               
780#else
781  READ_CODE( 16, uiCode,  "vps_reserved_ffff_16bits" );           assert(uiCode == 0xffff);
782#endif
783  parsePTL ( pcVPS->getPTL(), true, pcVPS->getMaxTLayers()-1);
784#if SIGNAL_BITRATE_PICRATE_IN_VPS
785  parseBitratePicRateInfo( pcVPS->getBitratePicrateInfo(), 0, pcVPS->getMaxTLayers() - 1);
786#endif
787  UInt subLayerOrderingInfoPresentFlag;
788  READ_FLAG(subLayerOrderingInfoPresentFlag, "vps_sub_layer_ordering_info_present_flag");
789  for(UInt i = 0; i <= pcVPS->getMaxTLayers()-1; i++)
790  {
791#if L0323_DPB
792    READ_UVLC( uiCode,  "vps_max_dec_pic_buffering_minus1[i]" );     pcVPS->setMaxDecPicBuffering( uiCode + 1, i );
793#else
794    READ_UVLC( uiCode,  "vps_max_dec_pic_buffering[i]" );     pcVPS->setMaxDecPicBuffering( uiCode, i );
795#endif
796    READ_UVLC( uiCode,  "vps_num_reorder_pics[i]" );          pcVPS->setNumReorderPics( uiCode, i );
797    READ_UVLC( uiCode,  "vps_max_latency_increase[i]" );      pcVPS->setMaxLatencyIncrease( uiCode, i );
798
799    if (!subLayerOrderingInfoPresentFlag)
800    {
801      for (i++; i <= pcVPS->getMaxTLayers()-1; i++)
802      {
803        pcVPS->setMaxDecPicBuffering(pcVPS->getMaxDecPicBuffering(0), i);
804        pcVPS->setNumReorderPics(pcVPS->getNumReorderPics(0), i);
805        pcVPS->setMaxLatencyIncrease(pcVPS->getMaxLatencyIncrease(0), i);
806      }
807      break;
808    }
809  }
810
811  assert( pcVPS->getNumHrdParameters() < MAX_VPS_OP_SETS_PLUS1 );
812#if H_MV
813  assert( pcVPS->getMaxNuhLayerId() < MAX_VPS_NUH_LAYER_ID_PLUS1 );
814  READ_CODE( 6, uiCode, "vps_max_nuh_layer_id" );   pcVPS->setMaxNuhLayerId( uiCode );
815#else
816  assert( pcVPS->getMaxNuhReservedZeroLayerId() < MAX_VPS_NUH_RESERVED_ZERO_LAYER_ID_PLUS1 );
817  READ_CODE( 6, uiCode, "vps_max_nuh_reserved_zero_layer_id" );   pcVPS->setMaxNuhReservedZeroLayerId( uiCode );
818#endif
819  READ_UVLC(    uiCode, "vps_max_op_sets_minus1" );               pcVPS->setMaxOpSets( uiCode + 1 );
820  for( UInt opsIdx = 1; opsIdx <= ( pcVPS->getMaxOpSets() - 1 ); opsIdx ++ )
821  {
822    // Operation point set
823#if H_MV
824    for( UInt i = 0; i <= pcVPS->getMaxNuhLayerId(); i ++ )
825#else
826    for( UInt i = 0; i <= pcVPS->getMaxNuhReservedZeroLayerId(); i ++ )
827#endif
828    {
829      READ_FLAG( uiCode, "layer_id_included_flag[opsIdx][i]" );     pcVPS->setLayerIdIncludedFlag( uiCode == 1 ? true : false, opsIdx, i );
830    }
831  }
832#if L0043_TIMING_INFO
833  TimingInfo *timingInfo = pcVPS->getTimingInfo();
834  READ_FLAG(       uiCode, "vps_timing_info_present_flag");         timingInfo->setTimingInfoPresentFlag      (uiCode ? true : false);
835  if(timingInfo->getTimingInfoPresentFlag())
836  {
837    READ_CODE( 32, uiCode, "vps_num_units_in_tick");                timingInfo->setNumUnitsInTick             (uiCode);
838    READ_CODE( 32, uiCode, "vps_time_scale");                       timingInfo->setTimeScale                  (uiCode);
839    READ_FLAG(     uiCode, "vps_poc_proportional_to_timing_flag");  timingInfo->setPocProportionalToTimingFlag(uiCode ? true : false);
840    if(timingInfo->getPocProportionalToTimingFlag())
841    {
842      READ_UVLC(   uiCode, "vps_num_ticks_poc_diff_one_minus1");    timingInfo->setNumTicksPocDiffOneMinus1   (uiCode);
843    }
844#endif
845    READ_UVLC( uiCode, "vps_num_hrd_parameters" );                  pcVPS->setNumHrdParameters( uiCode );
846
847    if( pcVPS->getNumHrdParameters() > 0 )
848    {
849      pcVPS->createHrdParamBuffer();
850    }
851    for( UInt i = 0; i < pcVPS->getNumHrdParameters(); i ++ )
852    {
853      READ_UVLC( uiCode, "hrd_op_set_idx" );                       pcVPS->setHrdOpSetIdx( uiCode, i );
854      if( i > 0 )
855      {
856        READ_FLAG( uiCode, "cprms_present_flag[i]" );              pcVPS->setCprmsPresentFlag( uiCode == 1 ? true : false, i );
857      }
858      parseHrdParameters(pcVPS->getHrdParameters(i), pcVPS->getCprmsPresentFlag( i ), pcVPS->getMaxTLayers() - 1);
859    }
860#if L0043_TIMING_INFO
861  }
862#endif
863  READ_FLAG( uiCode,  "vps_extension_flag" );
864  if (uiCode)
865  {
866#if H_MV
867    m_pcBitstream->readOutTrailingBits();
868
869    READ_FLAG( uiCode, "avc_base_layer_flag" );                     pcVPS->setAvcBaseLayerFlag( uiCode == 1 ? true : false );
870    READ_FLAG( uiCode, "splitting_flag" );                          pcVPS->setSplittingFlag( uiCode == 1 ? true : false );
871
872    // Parse scalability_mask[i]   
873    for( Int sIdx = 0; sIdx < MAX_NUM_SCALABILITY_TYPES; sIdx++ )
874    {
875      READ_FLAG( uiCode,  "scalability_mask[i]" );                  pcVPS->setScalabilityMask( sIdx, uiCode == 1 ? true : false );     
876    }
877
878    Int numScalabilityTypes = pcVPS->getNumScalabilityTypes(); 
879
880    // Parse dimension_id_len_minus1[j]   
881    for( Int sIdx = 0; sIdx < numScalabilityTypes; sIdx++ )
882    {
883        READ_CODE( 3, uiCode, "dimension_id_len_minus1[j]" );       pcVPS->setDimensionIdLen( sIdx, uiCode + 1 );
884    }
885
886    // vps_nuh_layer_id_present_flag
887    READ_FLAG( uiCode, "vps_nuh_layer_id_present_flag" );           pcVPS->setVpsNuhLayerIdPresentFlag( uiCode == 1 ? true : false );
888
889    // parse layer_id_in_nuh[i] and derive LayerIdInVps
890    // already updated to JCT3V-D0220
891    for( Int layer = 0; layer <= pcVPS->getMaxLayers() - 1; layer++ )
892    {
893      UInt layerIdInNuh; 
894      if ( pcVPS->getVpsNuhLayerIdPresentFlag() && ( layer != 0 ) )
895      {
896        READ_CODE( 6, uiCode, "layer_id_in_nuh[i]" );                layerIdInNuh = uiCode; 
897      }
898      else
899      {
900        layerIdInNuh = layer; 
901      }     
902
903      pcVPS->setLayerIdInNuh( layer, layerIdInNuh );
904      pcVPS->setLayerIdInVps( layerIdInNuh, layer ); 
905
906      // parse dimension_id[i][j]
907      for( Int sIdx = 0; sIdx < numScalabilityTypes; sIdx++ )
908      {
909          READ_CODE( pcVPS->getDimensionIdLen( sIdx ), uiCode, "dimension_id[i][j]" );  pcVPS->setDimensionId( layer, sIdx, uiCode );
910      }
911    }
912
913    for( Int layerSet = 1; layerSet <= pcVPS->getMaxOpSets() - 1; layerSet++ )
914    {
915      READ_FLAG(  uiCode, "vps_profile_present_flag[lsIdx]" );    pcVPS->setVpsProfilePresentFlag( layerSet, uiCode == 1 ? true : false );
916      if( pcVPS->getVpsProfilePresentFlag( layerSet ) == false )
917      {
918        READ_UVLC( uiCode, "profile_layer_set_ref_minus1[lsIdx]" ); pcVPS->setProfileLayerSetRefMinus1( layerSet, uiCode );
919      }
920
921      parsePTL ( pcVPS->getPTL( layerSet ), pcVPS->getVpsProfilePresentFlag( layerSet ), pcVPS->getMaxTLayers()-1);
922      if( pcVPS->getVpsProfilePresentFlag( layerSet ) == false )
923      {
924        TComPTL temp = *pcVPS->getPTL( layerSet );
925        *pcVPS->getPTL( layerSet ) = *pcVPS->getPTL( pcVPS->getProfileLayerSetRefMinus1( layerSet ) + 1 );
926        pcVPS->getPTL( layerSet )->copyLevelFrom( &temp );
927      }
928    }
929
930    READ_UVLC( uiCode, "num_output_layer_sets" );                  pcVPS->setNumOutputLayerSets( uiCode );
931   
932    for( Int layerSet = 0; layerSet < pcVPS->getNumOutputLayerSets(); layerSet++ )
933    {
934      READ_UVLC( uiCode, "output_layer_set_idx[i]" );              pcVPS->setOutputLayerSetIdx( layerSet, uiCode );
935      for( Int layer = 0; layer <= pcVPS->getMaxNuhLayerId(); layer++ )
936      {
937        if( pcVPS->getLayerIdIncludedFlag( pcVPS->getOutputLayerSetIdx( layerSet ), layer ) == true )
938        {
939          READ_FLAG( uiCode, "output_layer_flag" );                 pcVPS->setOutputLayerFlag( layerSet, layer, uiCode == 1 ? true : false );
940        }
941      }
942    }
943
944    for( Int i = 1; i <= pcVPS->getMaxLayers() - 1; i++ )
945    {
946      for( Int j = 0; j < i; j++ )
947      {
948        READ_FLAG( uiCode, "direct_dependency_flag[i][j]" );             pcVPS->setDirectDependencyFlag( i, j, uiCode );
949      }
950    }
951   
952    READ_FLAG( uiCode,  "vps_extension2_flag" );
953    if (uiCode)
954    {
955#if H_3D
956#if H_3D_IV_MERGE
957      for( Int layer = 0; layer <= pcVPS->getMaxLayers() - 1; layer++ )
958      {
959        if (layer != 0)
960        {
961          if ( !( pcVPS->getDepthId( layer ) == 1 ) )
962          {
963            READ_FLAG( uiCode, "ivMvPredFlag[i]"); pcVPS->setIvMvPredFlag( layer, uiCode == 1 ? true : false );
964          }         
965        }       
966      }
967#endif
968#else
969      while ( xMoreRbspData() )
970      {
971        READ_FLAG( uiCode, "vps_extension2_data_flag");
972      }
973#endif
974    }
975
976    pcVPS->checkVPSExtensionSyntax(); 
977
978    pcVPS->calcIvRefLayers(); 
979
980#else
981    while ( xMoreRbspData() )
982    {
983      READ_FLAG( uiCode, "vps_extension_data_flag");
984    }
985#endif   
986  }
987
988#if H_3D
989  pcVPS->initViewIndex(); 
990#endif
991
992  return;
993}
994
995Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager)
996{
997  UInt  uiCode;
998  Int   iCode;
999
1000#if ENC_DEC_TRACE
1001  xTraceSliceHeader(rpcSlice);
1002#endif
1003  TComPPS* pps = NULL;
1004  TComSPS* sps = NULL;
1005#if H_MV
1006  TComVPS* vps = NULL;
1007#endif
1008
1009  UInt firstSliceSegmentInPic;
1010  READ_FLAG( firstSliceSegmentInPic, "first_slice_segment_in_pic_flag" );
1011  if( rpcSlice->getRapPicFlag())
1012  { 
1013    READ_FLAG( uiCode, "no_output_of_prior_pics_flag" );  //ignored
1014  }
1015  READ_UVLC (    uiCode, "slice_pic_parameter_set_id" );  rpcSlice->setPPSId(uiCode);
1016  pps = parameterSetManager->getPrefetchedPPS(uiCode);
1017  //!KS: need to add error handling code here, if PPS is not available
1018  assert(pps!=0);
1019  sps = parameterSetManager->getPrefetchedSPS(pps->getSPSId());
1020  //!KS: need to add error handling code here, if SPS is not available
1021  assert(sps!=0);
1022#if H_MV
1023  vps = parameterSetManager->getPrefetchedVPS(sps->getVPSId());
1024  assert(vps!=0);
1025  rpcSlice->setVPS(vps);     
1026  rpcSlice->setViewId   ( vps->getViewId   ( rpcSlice->getLayerIdInVps() )      );
1027#if H_3D 
1028  rpcSlice->setViewIndex( vps->getViewIndex( rpcSlice->getLayerIdInVps() )      ); 
1029  rpcSlice->setIsDepth  ( vps->getDepthId  ( rpcSlice->getLayerIdInVps() ) == 1 );
1030#endif
1031#endif
1032  rpcSlice->setSPS(sps);
1033  rpcSlice->setPPS(pps);
1034  if( pps->getDependentSliceSegmentsEnabledFlag() && ( !firstSliceSegmentInPic ))
1035  {
1036    READ_FLAG( uiCode, "dependent_slice_segment_flag" );       rpcSlice->setDependentSliceSegmentFlag(uiCode ? true : false);
1037  }
1038  else
1039  {
1040    rpcSlice->setDependentSliceSegmentFlag(false);
1041  }
1042  Int numCTUs = ((sps->getPicWidthInLumaSamples()+sps->getMaxCUWidth()-1)/sps->getMaxCUWidth())*((sps->getPicHeightInLumaSamples()+sps->getMaxCUHeight()-1)/sps->getMaxCUHeight());
1043  Int maxParts = (1<<(sps->getMaxCUDepth()<<1));
1044  UInt sliceSegmentAddress = 0;
1045  Int bitsSliceSegmentAddress = 0;
1046  while(numCTUs>(1<<bitsSliceSegmentAddress))
1047  {
1048    bitsSliceSegmentAddress++;
1049  }
1050
1051  if(!firstSliceSegmentInPic)
1052  {
1053    READ_CODE( bitsSliceSegmentAddress, sliceSegmentAddress, "slice_segment_address" );
1054  }
1055  //set uiCode to equal slice start address (or dependent slice start address)
1056  Int startCuAddress = maxParts*sliceSegmentAddress;
1057  rpcSlice->setSliceSegmentCurStartCUAddr( startCuAddress );
1058  rpcSlice->setSliceSegmentCurEndCUAddr(numCTUs*maxParts);
1059
1060  if (rpcSlice->getDependentSliceSegmentFlag())
1061  {
1062    rpcSlice->setNextSlice          ( false );
1063    rpcSlice->setNextSliceSegment ( true  );
1064  }
1065  else
1066  {
1067    rpcSlice->setNextSlice          ( true  );
1068    rpcSlice->setNextSliceSegment ( false );
1069
1070    rpcSlice->setSliceCurStartCUAddr(startCuAddress);
1071    rpcSlice->setSliceCurEndCUAddr(numCTUs*maxParts);
1072  }
1073 
1074  if(!rpcSlice->getDependentSliceSegmentFlag())
1075  {
1076    for (Int i = 0; i < rpcSlice->getPPS()->getNumExtraSliceHeaderBits(); i++)
1077    {
1078      READ_FLAG(uiCode, "slice_reserved_undetermined_flag[]"); // ignored
1079    }
1080
1081    READ_UVLC (    uiCode, "slice_type" );            rpcSlice->setSliceType((SliceType)uiCode);
1082    if( pps->getOutputFlagPresentFlag() )
1083    {
1084      READ_FLAG( uiCode, "pic_output_flag" );    rpcSlice->setPicOutputFlag( uiCode ? true : false );
1085    }
1086    else
1087    {
1088      rpcSlice->setPicOutputFlag( true );
1089    }
1090    // in the first version chroma_format_idc is equal to one, thus colour_plane_id will not be present
1091    assert (sps->getChromaFormatIdc() == 1 );
1092    // if( separate_colour_plane_flag  ==  1 )
1093    //   colour_plane_id                                      u(2)
1094
1095    if( rpcSlice->getIdrPicFlag() )
1096    {
1097      rpcSlice->setPOC(0);
1098      TComReferencePictureSet* rps = rpcSlice->getLocalRPS();
1099      rps->setNumberOfNegativePictures(0);
1100      rps->setNumberOfPositivePictures(0);
1101      rps->setNumberOfLongtermPictures(0);
1102      rps->setNumberOfPictures(0);
1103      rpcSlice->setRPS(rps);
1104    }
1105    else
1106    {
1107      READ_CODE(sps->getBitsForPOC(), uiCode, "pic_order_cnt_lsb"); 
1108      Int iPOClsb = uiCode;
1109      Int iPrevPOC = rpcSlice->getPrevPOC();
1110      Int iMaxPOClsb = 1<< sps->getBitsForPOC();
1111      Int iPrevPOClsb = iPrevPOC%iMaxPOClsb;
1112      Int iPrevPOCmsb = iPrevPOC-iPrevPOClsb;
1113      Int iPOCmsb;
1114      if( ( iPOClsb  <  iPrevPOClsb ) && ( ( iPrevPOClsb - iPOClsb )  >=  ( iMaxPOClsb / 2 ) ) )
1115      {
1116        iPOCmsb = iPrevPOCmsb + iMaxPOClsb;
1117      }
1118      else if( (iPOClsb  >  iPrevPOClsb )  && ( (iPOClsb - iPrevPOClsb )  >  ( iMaxPOClsb / 2 ) ) ) 
1119      {
1120        iPOCmsb = iPrevPOCmsb - iMaxPOClsb;
1121      }
1122      else
1123      {
1124        iPOCmsb = iPrevPOCmsb;
1125      }
1126      if ( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
1127        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
1128        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP )
1129      {
1130        // For BLA picture types, POCmsb is set to 0.
1131        iPOCmsb = 0;
1132      }
1133      rpcSlice->setPOC              (iPOCmsb+iPOClsb);
1134
1135      TComReferencePictureSet* rps;
1136      rps = rpcSlice->getLocalRPS();
1137      rpcSlice->setRPS(rps);
1138      READ_FLAG( uiCode, "short_term_ref_pic_set_sps_flag" );
1139      if(uiCode == 0) // use short-term reference picture set explicitly signalled in slice header
1140      {
1141        parseShortTermRefPicSet(sps,rps, sps->getRPSList()->getNumberOfReferencePictureSets());
1142      }
1143      else // use reference to short-term reference picture set in PPS
1144      {
1145        Int numBits = 0;
1146        while ((1 << numBits) < rpcSlice->getSPS()->getRPSList()->getNumberOfReferencePictureSets())
1147        {
1148          numBits++;
1149        }
1150        if (numBits > 0)
1151        {
1152          READ_CODE( numBits, uiCode, "short_term_ref_pic_set_idx");
1153        }
1154        else
1155        {
1156          uiCode = 0;
1157        }
1158        memcpy(rps,sps->getRPSList()->getReferencePictureSet(uiCode),sizeof(TComReferencePictureSet));
1159      }
1160      if(sps->getLongTermRefsPresent())
1161      {
1162        Int offset = rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures();
1163        UInt numOfLtrp = 0;
1164        UInt numLtrpInSPS = 0;
1165        if (rpcSlice->getSPS()->getNumLongTermRefPicSPS() > 0)
1166        {
1167          READ_UVLC( uiCode, "num_long_term_sps");
1168          numLtrpInSPS = uiCode;
1169          numOfLtrp += numLtrpInSPS;
1170          rps->setNumberOfLongtermPictures(numOfLtrp);
1171        }
1172        Int bitsForLtrpInSPS = 0;
1173        while (rpcSlice->getSPS()->getNumLongTermRefPicSPS() > (1 << bitsForLtrpInSPS))
1174        {
1175          bitsForLtrpInSPS++;
1176        }
1177        READ_UVLC( uiCode, "num_long_term_pics");             rps->setNumberOfLongtermPictures(uiCode);
1178        numOfLtrp += uiCode;
1179        rps->setNumberOfLongtermPictures(numOfLtrp);
1180        Int maxPicOrderCntLSB = 1 << rpcSlice->getSPS()->getBitsForPOC();
1181        Int prevDeltaMSB = 0, deltaPocMSBCycleLT = 0;;
1182        for(Int j=offset+rps->getNumberOfLongtermPictures()-1, k = 0; k < numOfLtrp; j--, k++)
1183        {
1184          Int pocLsbLt;
1185          if (k < numLtrpInSPS)
1186          {
1187            uiCode = 0;
1188            if (bitsForLtrpInSPS > 0)
1189            {
1190              READ_CODE(bitsForLtrpInSPS, uiCode, "lt_idx_sps[i]");
1191            }
1192            Int usedByCurrFromSPS=rpcSlice->getSPS()->getUsedByCurrPicLtSPSFlag(uiCode);
1193
1194            pocLsbLt = rpcSlice->getSPS()->getLtRefPicPocLsbSps(uiCode);
1195            rps->setUsed(j,usedByCurrFromSPS);
1196          }
1197          else
1198          {
1199            READ_CODE(rpcSlice->getSPS()->getBitsForPOC(), uiCode, "poc_lsb_lt"); pocLsbLt= uiCode;
1200            READ_FLAG( uiCode, "used_by_curr_pic_lt_flag");     rps->setUsed(j,uiCode);
1201          }
1202          READ_FLAG(uiCode,"delta_poc_msb_present_flag");
1203          Bool mSBPresentFlag = uiCode ? true : false;
1204          if(mSBPresentFlag)                 
1205          {
1206            READ_UVLC( uiCode, "delta_poc_msb_cycle_lt[i]" );
1207            Bool deltaFlag = false;
1208            //            First LTRP                               || First LTRP from SH
1209            if( (j == offset+rps->getNumberOfLongtermPictures()-1) || (j == offset+(numOfLtrp-numLtrpInSPS)-1) )
1210            {
1211              deltaFlag = true;
1212            }
1213            if(deltaFlag)
1214            {
1215              deltaPocMSBCycleLT = uiCode;
1216            }
1217            else
1218            {
1219              deltaPocMSBCycleLT = uiCode + prevDeltaMSB;             
1220            }
1221
1222            Int pocLTCurr = rpcSlice->getPOC() - deltaPocMSBCycleLT * maxPicOrderCntLSB
1223                                        - iPOClsb + pocLsbLt;
1224            rps->setPOC     (j, pocLTCurr); 
1225            rps->setDeltaPOC(j, - rpcSlice->getPOC() + pocLTCurr);
1226            rps->setCheckLTMSBPresent(j,true); 
1227          }
1228          else
1229          {
1230            rps->setPOC     (j, pocLsbLt);
1231            rps->setDeltaPOC(j, - rpcSlice->getPOC() + pocLsbLt);
1232            rps->setCheckLTMSBPresent(j,false); 
1233          }
1234          prevDeltaMSB = deltaPocMSBCycleLT;
1235        }
1236        offset += rps->getNumberOfLongtermPictures();
1237        rps->setNumberOfPictures(offset);       
1238      } 
1239      if ( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
1240        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
1241        || rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP )
1242      {
1243        // In the case of BLA picture types, rps data is read from slice header but ignored
1244        rps = rpcSlice->getLocalRPS();
1245        rps->setNumberOfNegativePictures(0);
1246        rps->setNumberOfPositivePictures(0);
1247        rps->setNumberOfLongtermPictures(0);
1248        rps->setNumberOfPictures(0);
1249        rpcSlice->setRPS(rps);
1250      }
1251      if (rpcSlice->getSPS()->getTMVPFlagsPresent())
1252      {
1253        READ_FLAG( uiCode, "slice_temporal_mvp_enable_flag" );
1254        rpcSlice->setEnableTMVPFlag( uiCode == 1 ? true : false ); 
1255      }
1256      else
1257      {
1258        rpcSlice->setEnableTMVPFlag(false);
1259      }
1260    }
1261    if(sps->getUseSAO())
1262    {
1263      READ_FLAG(uiCode, "slice_sao_luma_flag");  rpcSlice->setSaoEnabledFlag((Bool)uiCode);
1264      READ_FLAG(uiCode, "slice_sao_chroma_flag");  rpcSlice->setSaoEnabledFlagChroma((Bool)uiCode);
1265    }
1266
1267    if (rpcSlice->getIdrPicFlag())
1268    {
1269      rpcSlice->setEnableTMVPFlag(false);
1270    }
1271    if (!rpcSlice->isIntra())
1272    {
1273
1274      READ_FLAG( uiCode, "num_ref_idx_active_override_flag");
1275      if (uiCode)
1276      {
1277        READ_UVLC (uiCode, "num_ref_idx_l0_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_0, uiCode + 1 );
1278        if (rpcSlice->isInterB())
1279        {
1280          READ_UVLC (uiCode, "num_ref_idx_l1_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_1, uiCode + 1 );
1281        }
1282        else
1283        {
1284          rpcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
1285        }
1286      }
1287      else
1288      {
1289        rpcSlice->setNumRefIdx(REF_PIC_LIST_0, rpcSlice->getPPS()->getNumRefIdxL0DefaultActive());
1290        if (rpcSlice->isInterB())
1291        {
1292          rpcSlice->setNumRefIdx(REF_PIC_LIST_1, rpcSlice->getPPS()->getNumRefIdxL1DefaultActive());
1293        }
1294        else
1295        {
1296          rpcSlice->setNumRefIdx(REF_PIC_LIST_1,0);
1297        }
1298      }
1299    }
1300    // }
1301    TComRefPicListModification* refPicListModification = rpcSlice->getRefPicListModification();
1302    if(!rpcSlice->isIntra())
1303    {
1304      if( !rpcSlice->getPPS()->getListsModificationPresentFlag() || rpcSlice->getNumRpsCurrTempList() <= 1 )
1305      {
1306        refPicListModification->setRefPicListModificationFlagL0( 0 );
1307      }
1308      else
1309      {
1310        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l0" ); refPicListModification->setRefPicListModificationFlagL0( uiCode ? 1 : 0 );
1311      }
1312
1313      if(refPicListModification->getRefPicListModificationFlagL0())
1314      { 
1315        uiCode = 0;
1316        Int i = 0;
1317        Int numRpsCurrTempList0 = rpcSlice->getNumRpsCurrTempList();
1318        if ( numRpsCurrTempList0 > 1 )
1319        {
1320          Int length = 1;
1321          numRpsCurrTempList0 --;
1322          while ( numRpsCurrTempList0 >>= 1) 
1323          {
1324            length ++;
1325          }
1326          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
1327          {
1328            READ_CODE( length, uiCode, "list_entry_l0" );
1329            refPicListModification->setRefPicSetIdxL0(i, uiCode );
1330          }
1331        }
1332        else
1333        {
1334          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
1335          {
1336            refPicListModification->setRefPicSetIdxL0(i, 0 );
1337          }
1338        }
1339      }
1340    }
1341    else
1342    {
1343      refPicListModification->setRefPicListModificationFlagL0(0);
1344    }
1345    if(rpcSlice->isInterB())
1346    {
1347      if( !rpcSlice->getPPS()->getListsModificationPresentFlag() || rpcSlice->getNumRpsCurrTempList() <= 1 )
1348      {
1349        refPicListModification->setRefPicListModificationFlagL1( 0 );
1350      }
1351      else
1352      {
1353        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l1" ); refPicListModification->setRefPicListModificationFlagL1( uiCode ? 1 : 0 );
1354      }
1355      if(refPicListModification->getRefPicListModificationFlagL1())
1356      {
1357        uiCode = 0;
1358        Int i = 0;
1359        Int numRpsCurrTempList1 = rpcSlice->getNumRpsCurrTempList();
1360        if ( numRpsCurrTempList1 > 1 )
1361        {
1362          Int length = 1;
1363          numRpsCurrTempList1 --;
1364          while ( numRpsCurrTempList1 >>= 1) 
1365          {
1366            length ++;
1367          }
1368          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
1369          {
1370            READ_CODE( length, uiCode, "list_entry_l1" );
1371            refPicListModification->setRefPicSetIdxL1(i, uiCode );
1372          }
1373        }
1374        else
1375        {
1376          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
1377          {
1378            refPicListModification->setRefPicSetIdxL1(i, 0 );
1379          }
1380        }
1381      }
1382    } 
1383    else
1384    {
1385      refPicListModification->setRefPicListModificationFlagL1(0);
1386    }
1387    if (rpcSlice->isInterB())
1388    {
1389      READ_FLAG( uiCode, "mvd_l1_zero_flag" );       rpcSlice->setMvdL1ZeroFlag( (uiCode ? true : false) );
1390    }
1391
1392    rpcSlice->setCabacInitFlag( false ); // default
1393    if(pps->getCabacInitPresentFlag() && !rpcSlice->isIntra())
1394    {
1395      READ_FLAG(uiCode, "cabac_init_flag");
1396      rpcSlice->setCabacInitFlag( uiCode ? true : false );
1397    }
1398
1399    if ( rpcSlice->getEnableTMVPFlag() )
1400    {
1401      if ( rpcSlice->getSliceType() == B_SLICE )
1402      {
1403        READ_FLAG( uiCode, "collocated_from_l0_flag" );
1404        rpcSlice->setColFromL0Flag(uiCode);
1405      }
1406      else
1407      {
1408        rpcSlice->setColFromL0Flag( 1 );
1409      }
1410
1411      if ( rpcSlice->getSliceType() != I_SLICE &&
1412          ((rpcSlice->getColFromL0Flag() == 1 && rpcSlice->getNumRefIdx(REF_PIC_LIST_0) > 1)||
1413           (rpcSlice->getColFromL0Flag() == 0 && rpcSlice->getNumRefIdx(REF_PIC_LIST_1) > 1)))
1414      {
1415        READ_UVLC( uiCode, "collocated_ref_idx" );
1416        rpcSlice->setColRefIdx(uiCode);
1417      }
1418      else
1419      {
1420        rpcSlice->setColRefIdx(0);
1421      }
1422    }
1423    if ( (pps->getUseWP() && rpcSlice->getSliceType()==P_SLICE) || (pps->getWPBiPred() && rpcSlice->getSliceType()==B_SLICE) )
1424    {
1425      xParsePredWeightTable(rpcSlice);
1426      rpcSlice->initWpScaling();
1427    }
1428    if (!rpcSlice->isIntra())
1429    {
1430      READ_UVLC( uiCode, "five_minus_max_num_merge_cand");
1431#if H_3D_IV_MERGE
1432      Bool ivMvPredFlag = rpcSlice->getVPS()->getIvMvPredFlag( rpcSlice->getLayerIdInVps() ) ;
1433      rpcSlice->setMaxNumMergeCand(( ivMvPredFlag ? MRG_MAX_NUM_CANDS_MEM : MRG_MAX_NUM_CANDS) - uiCode);
1434#else
1435      rpcSlice->setMaxNumMergeCand(MRG_MAX_NUM_CANDS - uiCode);
1436#endif
1437    }
1438
1439    READ_SVLC( iCode, "slice_qp_delta" );
1440    rpcSlice->setSliceQp (26 + pps->getPicInitQPMinus26() + iCode);
1441
1442    assert( rpcSlice->getSliceQp() >= -sps->getQpBDOffsetY() );
1443    assert( rpcSlice->getSliceQp() <=  51 );
1444
1445    if (rpcSlice->getPPS()->getSliceChromaQpFlag())
1446    {
1447      READ_SVLC( iCode, "slice_qp_delta_cb" );
1448      rpcSlice->setSliceQpDeltaCb( iCode );
1449      assert( rpcSlice->getSliceQpDeltaCb() >= -12 );
1450      assert( rpcSlice->getSliceQpDeltaCb() <=  12 );
1451      assert( (rpcSlice->getPPS()->getChromaCbQpOffset() + rpcSlice->getSliceQpDeltaCb()) >= -12 );
1452      assert( (rpcSlice->getPPS()->getChromaCbQpOffset() + rpcSlice->getSliceQpDeltaCb()) <=  12 );
1453
1454      READ_SVLC( iCode, "slice_qp_delta_cr" );
1455      rpcSlice->setSliceQpDeltaCr( iCode );
1456      assert( rpcSlice->getSliceQpDeltaCr() >= -12 );
1457      assert( rpcSlice->getSliceQpDeltaCr() <=  12 );
1458      assert( (rpcSlice->getPPS()->getChromaCrQpOffset() + rpcSlice->getSliceQpDeltaCr()) >= -12 );
1459      assert( (rpcSlice->getPPS()->getChromaCrQpOffset() + rpcSlice->getSliceQpDeltaCr()) <=  12 );
1460    }
1461
1462    if (rpcSlice->getPPS()->getDeblockingFilterControlPresentFlag())
1463    {
1464      if(rpcSlice->getPPS()->getDeblockingFilterOverrideEnabledFlag())
1465      {
1466        READ_FLAG ( uiCode, "deblocking_filter_override_flag" );        rpcSlice->setDeblockingFilterOverrideFlag(uiCode ? true : false);
1467      }
1468      else
1469      { 
1470        rpcSlice->setDeblockingFilterOverrideFlag(0);
1471      }
1472      if(rpcSlice->getDeblockingFilterOverrideFlag())
1473      {
1474        READ_FLAG ( uiCode, "slice_disable_deblocking_filter_flag" );   rpcSlice->setDeblockingFilterDisable(uiCode ? 1 : 0);
1475        if(!rpcSlice->getDeblockingFilterDisable())
1476        {
1477          READ_SVLC( iCode, "slice_beta_offset_div2" );                       rpcSlice->setDeblockingFilterBetaOffsetDiv2(iCode);
1478          assert(rpcSlice->getDeblockingFilterBetaOffsetDiv2() >= -6 &&
1479                 rpcSlice->getDeblockingFilterBetaOffsetDiv2() <=  6);
1480          READ_SVLC( iCode, "slice_tc_offset_div2" );                         rpcSlice->setDeblockingFilterTcOffsetDiv2(iCode);
1481          assert(rpcSlice->getDeblockingFilterTcOffsetDiv2() >= -6 &&
1482                 rpcSlice->getDeblockingFilterTcOffsetDiv2() <=  6);
1483        }
1484      }
1485      else
1486      {
1487        rpcSlice->setDeblockingFilterDisable   ( rpcSlice->getPPS()->getPicDisableDeblockingFilterFlag() );
1488        rpcSlice->setDeblockingFilterBetaOffsetDiv2( rpcSlice->getPPS()->getDeblockingFilterBetaOffsetDiv2() );
1489        rpcSlice->setDeblockingFilterTcOffsetDiv2  ( rpcSlice->getPPS()->getDeblockingFilterTcOffsetDiv2() );
1490      }
1491    }
1492    else
1493    { 
1494      rpcSlice->setDeblockingFilterDisable       ( false );
1495      rpcSlice->setDeblockingFilterBetaOffsetDiv2( 0 );
1496      rpcSlice->setDeblockingFilterTcOffsetDiv2  ( 0 );
1497    }
1498
1499    Bool isSAOEnabled = (!rpcSlice->getSPS()->getUseSAO())?(false):(rpcSlice->getSaoEnabledFlag()||rpcSlice->getSaoEnabledFlagChroma());
1500    Bool isDBFEnabled = (!rpcSlice->getDeblockingFilterDisable());
1501
1502    if(rpcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag() && ( isSAOEnabled || isDBFEnabled ))
1503    {
1504      READ_FLAG( uiCode, "slice_loop_filter_across_slices_enabled_flag");
1505    }
1506    else
1507    {
1508      uiCode = rpcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag()?1:0;
1509    }
1510    rpcSlice->setLFCrossSliceBoundaryFlag( (uiCode==1)?true:false);
1511
1512  }
1513 
1514    UInt *entryPointOffset          = NULL;
1515    UInt numEntryPointOffsets, offsetLenMinus1;
1516  if( pps->getTilesEnabledFlag() || pps->getEntropyCodingSyncEnabledFlag() )
1517  {
1518    READ_UVLC(numEntryPointOffsets, "num_entry_point_offsets"); rpcSlice->setNumEntryPointOffsets ( numEntryPointOffsets );
1519    if (numEntryPointOffsets>0)
1520    {
1521      READ_UVLC(offsetLenMinus1, "offset_len_minus1");
1522    }
1523    entryPointOffset = new UInt[numEntryPointOffsets];
1524    for (UInt idx=0; idx<numEntryPointOffsets; idx++)
1525    {
1526#if L0116_ENTRY_POINT
1527      READ_CODE(offsetLenMinus1+1, uiCode, "entry_point_offset_minus1");
1528      entryPointOffset[ idx ] = uiCode + 1;
1529#else
1530      READ_CODE(offsetLenMinus1+1, uiCode, "entry_point_offset");
1531      entryPointOffset[ idx ] = uiCode;
1532#endif
1533    }
1534  }
1535  else
1536  {
1537    rpcSlice->setNumEntryPointOffsets ( 0 );
1538  }
1539
1540  if(pps->getSliceHeaderExtensionPresentFlag())
1541  {
1542    READ_UVLC(uiCode,"slice_header_extension_length");
1543#if H_3D
1544    if( rpcSlice->getSPS()->hasCamParInSliceHeader() )
1545    {
1546      UInt uiViewIndex = rpcSlice->getViewIndex();
1547      for( UInt uiBaseIndex = 0; uiBaseIndex < uiViewIndex; uiBaseIndex++ )
1548      {
1549        READ_SVLC( iCode, "cp_scale" );                m_aaiTempScale [ uiBaseIndex ][ uiViewIndex ] = iCode;
1550        READ_SVLC( iCode, "cp_off" );                  m_aaiTempOffset[ uiBaseIndex ][ uiViewIndex ] = iCode;
1551        READ_SVLC( iCode, "cp_inv_scale_plus_scale" ); m_aaiTempScale [ uiViewIndex ][ uiBaseIndex ] = iCode - m_aaiTempScale [ uiBaseIndex ][ uiViewIndex ];
1552        READ_SVLC( iCode, "cp_inv_off_plus_off" );     m_aaiTempOffset[ uiViewIndex ][ uiBaseIndex ] = iCode - m_aaiTempOffset[ uiBaseIndex ][ uiViewIndex ];
1553      }
1554      rpcSlice->setCamparaSlice( m_aaiTempScale, m_aaiTempOffset );
1555    }
1556
1557    READ_FLAG(uiCode,"slice_segment_header_extension2_flag"); 
1558    if ( uiCode )
1559    {   
1560      READ_UVLC(uiCode,"slice_header_extension2_length");
1561      for(Int i=0; i<uiCode; i++)
1562      {
1563        UInt ignore;
1564        READ_CODE(8,ignore,"slice_header_extension2_data_byte");
1565      }
1566    }
1567  }
1568#else
1569    for(Int i=0; i<uiCode; i++)
1570    {
1571      UInt ignore;
1572      READ_CODE(8,ignore,"slice_header_extension_data_byte");
1573    }
1574  }
1575#endif
1576  m_pcBitstream->readByteAlignment();
1577
1578  if( pps->getTilesEnabledFlag() || pps->getEntropyCodingSyncEnabledFlag() )
1579  {
1580    Int endOfSliceHeaderLocation = m_pcBitstream->getByteLocation();
1581    Int  curEntryPointOffset     = 0;
1582    Int  prevEntryPointOffset    = 0;
1583    for (UInt idx=0; idx<numEntryPointOffsets; idx++)
1584    {
1585      curEntryPointOffset += entryPointOffset[ idx ];
1586
1587      Int emulationPreventionByteCount = 0;
1588      for ( UInt curByteIdx  = 0; curByteIdx<m_pcBitstream->numEmulationPreventionBytesRead(); curByteIdx++ )
1589      {
1590        if ( m_pcBitstream->getEmulationPreventionByteLocation( curByteIdx ) >= ( prevEntryPointOffset + endOfSliceHeaderLocation ) && 
1591             m_pcBitstream->getEmulationPreventionByteLocation( curByteIdx ) <  ( curEntryPointOffset  + endOfSliceHeaderLocation ) )
1592        {
1593          emulationPreventionByteCount++;
1594        }
1595      }
1596
1597      entryPointOffset[ idx ] -= emulationPreventionByteCount;
1598      prevEntryPointOffset = curEntryPointOffset;
1599    }
1600
1601    if ( pps->getTilesEnabledFlag() )
1602    {
1603      rpcSlice->setTileLocationCount( numEntryPointOffsets );
1604
1605      UInt prevPos = 0;
1606      for (Int idx=0; idx<rpcSlice->getTileLocationCount(); idx++)
1607      {
1608        rpcSlice->setTileLocation( idx, prevPos + entryPointOffset [ idx ] );
1609        prevPos += entryPointOffset[ idx ];
1610      }
1611    }
1612    else if ( pps->getEntropyCodingSyncEnabledFlag() )
1613    {
1614    Int numSubstreams = rpcSlice->getNumEntryPointOffsets()+1;
1615      rpcSlice->allocSubstreamSizes(numSubstreams);
1616      UInt *pSubstreamSizes       = rpcSlice->getSubstreamSizes();
1617      for (Int idx=0; idx<numSubstreams-1; idx++)
1618      {
1619        if ( idx < numEntryPointOffsets )
1620        {
1621          pSubstreamSizes[ idx ] = ( entryPointOffset[ idx ] << 3 ) ;
1622        }
1623        else
1624        {
1625          pSubstreamSizes[ idx ] = 0;
1626        }
1627      }
1628    }
1629
1630    if (entryPointOffset)
1631    {
1632      delete [] entryPointOffset;
1633    }
1634  }
1635
1636  return;
1637}
1638 
1639Void TDecCavlc::parsePTL( TComPTL *rpcPTL, Bool profilePresentFlag, Int maxNumSubLayersMinus1 )
1640{
1641  UInt uiCode;
1642  if(profilePresentFlag)
1643  {
1644    parseProfileTier(rpcPTL->getGeneralPTL());
1645  }
1646  READ_CODE( 8, uiCode, "general_level_idc" );    rpcPTL->getGeneralPTL()->setLevelIdc(uiCode);
1647
1648#if L0363_BYTE_ALIGN
1649  for (Int i = 0; i < maxNumSubLayersMinus1; i++)
1650  {
1651#if !H_MV
1652    if(profilePresentFlag)
1653    {
1654#endif
1655      READ_FLAG( uiCode, "sub_layer_profile_present_flag[i]" ); rpcPTL->setSubLayerProfilePresentFlag(i, uiCode);
1656#if H_MV
1657    rpcPTL->setSubLayerProfilePresentFlag( i, profilePresentFlag && rpcPTL->getSubLayerProfilePresentFlag(i) );
1658#else
1659    }
1660#endif
1661    READ_FLAG( uiCode, "sub_layer_level_present_flag[i]"   ); rpcPTL->setSubLayerLevelPresentFlag  (i, uiCode);
1662  }
1663 
1664  if (maxNumSubLayersMinus1 > 0)
1665  {
1666    for (Int i = maxNumSubLayersMinus1; i < 8; i++)
1667    {
1668      READ_CODE(2, uiCode, "reserved_zero_2bits");
1669      assert(uiCode == 0);
1670    }
1671  }
1672#endif
1673 
1674  for(Int i = 0; i < maxNumSubLayersMinus1; i++)
1675  {
1676#if !L0363_BYTE_ALIGN
1677    if(profilePresentFlag)
1678    {
1679      READ_FLAG( uiCode, "sub_layer_profile_present_flag[i]" ); rpcPTL->setSubLayerProfilePresentFlag(i, uiCode);
1680    }
1681    READ_FLAG( uiCode, "sub_layer_level_present_flag[i]"   ); rpcPTL->setSubLayerLevelPresentFlag  (i, uiCode);
1682#endif
1683    if( profilePresentFlag && rpcPTL->getSubLayerProfilePresentFlag(i) )
1684    {
1685      parseProfileTier(rpcPTL->getSubLayerPTL(i));
1686    }
1687    if(rpcPTL->getSubLayerLevelPresentFlag(i))
1688    {
1689      READ_CODE( 8, uiCode, "sub_layer_level_idc[i]" );   rpcPTL->getSubLayerPTL(i)->setLevelIdc(uiCode);
1690    }
1691  }
1692}
1693
1694Void TDecCavlc::parseProfileTier(ProfileTierLevel *ptl)
1695{
1696  UInt uiCode;
1697  READ_CODE(2 , uiCode, "XXX_profile_space[]");   ptl->setProfileSpace(uiCode);
1698  READ_FLAG(    uiCode, "XXX_tier_flag[]"    );   ptl->setTierFlag    (uiCode ? 1 : 0);
1699  READ_CODE(5 , uiCode, "XXX_profile_idc[]"  );   ptl->setProfileIdc  (uiCode);
1700  for(Int j = 0; j < 32; j++)
1701  {
1702    READ_FLAG(  uiCode, "XXX_profile_compatibility_flag[][j]");   ptl->setProfileCompatibilityFlag(j, uiCode ? 1 : 0);
1703  }
1704#if L0046_CONSTRAINT_FLAGS
1705  READ_FLAG(uiCode, "general_progressive_source_flag");
1706  ptl->setProgressiveSourceFlag(uiCode ? true : false);
1707
1708  READ_FLAG(uiCode, "general_interlaced_source_flag");
1709  ptl->setInterlacedSourceFlag(uiCode ? true : false);
1710 
1711  READ_FLAG(uiCode, "general_non_packed_constraint_flag");
1712  ptl->setNonPackedConstraintFlag(uiCode ? true : false);
1713 
1714  READ_FLAG(uiCode, "general_frame_only_constraint_flag");
1715  ptl->setFrameOnlyConstraintFlag(uiCode ? true : false);
1716 
1717  READ_CODE(16, uiCode, "XXX_reserved_zero_44bits[0..15]");
1718  READ_CODE(16, uiCode, "XXX_reserved_zero_44bits[16..31]");
1719  READ_CODE(12, uiCode, "XXX_reserved_zero_44bits[32..43]");
1720#elif L0363_MORE_BITS
1721  READ_CODE(16, uiCode, "XXX_reserved_zero_48bits[0..15]");
1722  READ_CODE(16, uiCode, "XXX_reserved_zero_48bits[16..31]");
1723  READ_CODE(16, uiCode, "XXX_reserved_zero_48bits[32..47]");
1724#else
1725  READ_CODE(16, uiCode, "XXX_reserved_zero_16bits[]");  assert( uiCode == 0 );
1726#endif
1727}
1728#if SIGNAL_BITRATE_PICRATE_IN_VPS
1729Void TDecCavlc::parseBitratePicRateInfo(TComBitRatePicRateInfo *info, Int tempLevelLow, Int tempLevelHigh)
1730{
1731  UInt uiCode;
1732  for(Int i = tempLevelLow; i <= tempLevelHigh; i++)
1733  {
1734    READ_FLAG( uiCode, "bit_rate_info_present_flag[i]" ); info->setBitRateInfoPresentFlag(i, uiCode ? true : false);
1735    READ_FLAG( uiCode, "pic_rate_info_present_flag[i]" ); info->setPicRateInfoPresentFlag(i, uiCode ? true : false);
1736    if(info->getBitRateInfoPresentFlag(i))
1737    {
1738      READ_CODE( 16, uiCode, "avg_bit_rate[i]" ); info->setAvgBitRate(i, uiCode);
1739      READ_CODE( 16, uiCode, "max_bit_rate[i]" ); info->setMaxBitRate(i, uiCode);
1740    }
1741    if(info->getPicRateInfoPresentFlag(i))
1742    {
1743      READ_CODE(  2, uiCode,  "constant_pic_rate_idc[i]" ); info->setConstantPicRateIdc(i, uiCode);
1744      READ_CODE( 16, uiCode,  "avg_pic_rate[i]"          ); info->setAvgPicRate(i, uiCode);
1745    }
1746  }
1747}
1748#endif 
1749Void TDecCavlc::parseTerminatingBit( UInt& ruiBit )
1750{
1751  ruiBit = false;
1752  Int iBitsLeft = m_pcBitstream->getNumBitsLeft();
1753  if(iBitsLeft <= 8)
1754  {
1755    UInt uiPeekValue = m_pcBitstream->peekBits(iBitsLeft);
1756    if (uiPeekValue == (1<<(iBitsLeft-1)))
1757    {
1758      ruiBit = true;
1759    }
1760  }
1761}
1762
1763Void TDecCavlc::parseSkipFlag( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1764{
1765  assert(0);
1766}
1767
1768Void TDecCavlc::parseCUTransquantBypassFlag( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1769{
1770  assert(0);
1771}
1772
1773Void TDecCavlc::parseMVPIdx( Int& /*riMVPIdx*/ )
1774{
1775  assert(0);
1776}
1777
1778Void TDecCavlc::parseSplitFlag     ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1779{
1780  assert(0);
1781}
1782
1783Void TDecCavlc::parsePartSize( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1784{
1785  assert(0);
1786}
1787
1788Void TDecCavlc::parsePredMode( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1789{
1790  assert(0);
1791}
1792
1793/** Parse I_PCM information.
1794* \param pcCU pointer to CU
1795* \param uiAbsPartIdx CU index
1796* \param uiDepth CU depth
1797* \returns Void
1798*
1799* If I_PCM flag indicates that the CU is I_PCM, parse its PCM alignment bits and codes. 
1800*/
1801Void TDecCavlc::parseIPCMInfo( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1802{
1803  assert(0);
1804}
1805
1806Void TDecCavlc::parseIntraDirLumaAng  ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1807{ 
1808  assert(0);
1809}
1810
1811Void TDecCavlc::parseIntraDirChroma( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ )
1812{
1813  assert(0);
1814}
1815
1816Void TDecCavlc::parseInterDir( TComDataCU* /*pcCU*/, UInt& /*ruiInterDir*/, UInt /*uiAbsPartIdx*/ )
1817{
1818  assert(0);
1819}
1820
1821Void TDecCavlc::parseRefFrmIdx( TComDataCU* /*pcCU*/, Int& /*riRefFrmIdx*/, RefPicList /*eRefList*/ )
1822{
1823  assert(0);
1824}
1825
1826Void TDecCavlc::parseMvd( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiPartIdx*/, UInt /*uiDepth*/, RefPicList /*eRefList*/ )
1827{
1828  assert(0);
1829}
1830
1831Void TDecCavlc::parseDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1832{
1833  Int qp;
1834  Int  iDQp;
1835
1836  xReadSvlc( iDQp );
1837
1838  Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffsetY();
1839  qp = (((Int) pcCU->getRefQP( uiAbsPartIdx ) + iDQp + 52 + 2*qpBdOffsetY )%(52+ qpBdOffsetY)) -  qpBdOffsetY;
1840
1841  UInt uiAbsQpCUPartIdx = (uiAbsPartIdx>>((g_uiMaxCUDepth - pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())<<1))<<((g_uiMaxCUDepth - pcCU->getSlice()->getPPS()->getMaxCuDQPDepth())<<1) ;
1842  UInt uiQpCUDepth =   min(uiDepth,pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()) ;
1843
1844  pcCU->setQPSubParts( qp, uiAbsQpCUPartIdx, uiQpCUDepth );
1845}
1846
1847Void TDecCavlc::parseCoeffNxN( TComDataCU* /*pcCU*/, TCoeff* /*pcCoef*/, UInt /*uiAbsPartIdx*/, UInt /*uiWidth*/, UInt /*uiHeight*/, UInt /*uiDepth*/, TextType /*eTType*/ )
1848{
1849  assert(0);
1850}
1851
1852Void TDecCavlc::parseTransformSubdivFlag( UInt& /*ruiSubdivFlag*/, UInt /*uiLog2TransformBlockSize*/ )
1853{
1854  assert(0);
1855}
1856
1857Void TDecCavlc::parseQtCbf( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, TextType /*eType*/, UInt /*uiTrDepth*/, UInt /*uiDepth*/ )
1858{
1859  assert(0);
1860}
1861
1862Void TDecCavlc::parseQtRootCbf( UInt /*uiAbsPartIdx*/, UInt& /*uiQtRootCbf*/ )
1863{
1864  assert(0);
1865}
1866
1867Void TDecCavlc::parseTransformSkipFlags (TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*width*/, UInt /*height*/, UInt /*uiDepth*/, TextType /*eTType*/)
1868{
1869  assert(0);
1870}
1871
1872Void TDecCavlc::parseMergeFlag ( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/, UInt /*uiPUIdx*/ )
1873{
1874  assert(0);
1875}
1876
1877Void TDecCavlc::parseMergeIndex ( TComDataCU* /*pcCU*/, UInt& /*ruiMergeIndex*/ )
1878{
1879  assert(0);
1880}
1881
1882// ====================================================================================================================
1883// Protected member functions
1884// ====================================================================================================================
1885
1886/** parse explicit wp tables
1887* \param TComSlice* pcSlice
1888* \returns Void
1889*/
1890Void TDecCavlc::xParsePredWeightTable( TComSlice* pcSlice )
1891{
1892  wpScalingParam  *wp;
1893  Bool            bChroma     = true; // color always present in HEVC ?
1894  SliceType       eSliceType  = pcSlice->getSliceType();
1895  Int             iNbRef       = (eSliceType == B_SLICE ) ? (2) : (1);
1896  UInt            uiLog2WeightDenomLuma, uiLog2WeightDenomChroma;
1897  UInt            uiTotalSignalledWeightFlags = 0;
1898 
1899  Int iDeltaDenom;
1900  // decode delta_luma_log2_weight_denom :
1901  READ_UVLC( uiLog2WeightDenomLuma, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
1902  assert( uiLog2WeightDenomLuma <= 7 );
1903  if( bChroma ) 
1904  {
1905    READ_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );     // se(v): delta_chroma_log2_weight_denom
1906    assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)>=0);
1907    assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)<=7);
1908    uiLog2WeightDenomChroma = (UInt)(iDeltaDenom + uiLog2WeightDenomLuma);
1909  }
1910
1911  for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ ) 
1912  {
1913    RefPicList  eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 );
1914    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
1915    {
1916      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1917
1918      wp[0].uiLog2WeightDenom = uiLog2WeightDenomLuma;
1919      wp[1].uiLog2WeightDenom = uiLog2WeightDenomChroma;
1920      wp[2].uiLog2WeightDenom = uiLog2WeightDenomChroma;
1921
1922      UInt  uiCode;
1923      READ_FLAG( uiCode, "luma_weight_lX_flag" );           // u(1): luma_weight_l0_flag
1924      wp[0].bPresentFlag = ( uiCode == 1 );
1925      uiTotalSignalledWeightFlags += wp[0].bPresentFlag;
1926    }
1927    if ( bChroma ) 
1928    {
1929      UInt  uiCode;
1930      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
1931      {
1932        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1933        READ_FLAG( uiCode, "chroma_weight_lX_flag" );      // u(1): chroma_weight_l0_flag
1934        wp[1].bPresentFlag = ( uiCode == 1 );
1935        wp[2].bPresentFlag = ( uiCode == 1 );
1936        uiTotalSignalledWeightFlags += 2*wp[1].bPresentFlag;
1937      }
1938    }
1939    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
1940    {
1941      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1942      if ( wp[0].bPresentFlag ) 
1943      {
1944        Int iDeltaWeight;
1945        READ_SVLC( iDeltaWeight, "delta_luma_weight_lX" );  // se(v): delta_luma_weight_l0[i]
1946        assert( iDeltaWeight >= -128 );
1947        assert( iDeltaWeight <=  127 );
1948        wp[0].iWeight = (iDeltaWeight + (1<<wp[0].uiLog2WeightDenom));
1949        READ_SVLC( wp[0].iOffset, "luma_offset_lX" );       // se(v): luma_offset_l0[i]
1950        assert( wp[0].iOffset >= -128 );
1951        assert( wp[0].iOffset <=  127 );
1952      }
1953      else 
1954      {
1955        wp[0].iWeight = (1 << wp[0].uiLog2WeightDenom);
1956        wp[0].iOffset = 0;
1957      }
1958      if ( bChroma ) 
1959      {
1960        if ( wp[1].bPresentFlag ) 
1961        {
1962          for ( Int j=1 ; j<3 ; j++ ) 
1963          {
1964            Int iDeltaWeight;
1965            READ_SVLC( iDeltaWeight, "delta_chroma_weight_lX" );  // se(v): chroma_weight_l0[i][j]
1966            assert( iDeltaWeight >= -128 );
1967            assert( iDeltaWeight <=  127 );
1968            wp[j].iWeight = (iDeltaWeight + (1<<wp[1].uiLog2WeightDenom));
1969
1970            Int iDeltaChroma;
1971            READ_SVLC( iDeltaChroma, "delta_chroma_offset_lX" );  // se(v): delta_chroma_offset_l0[i][j]
1972            assert( iDeltaChroma >= -512 );
1973            assert( iDeltaChroma <=  511 );
1974            Int pred = ( 128 - ( ( 128*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) );
1975            wp[j].iOffset = Clip3(-128, 127, (iDeltaChroma + pred) );
1976          }
1977        }
1978        else 
1979        {
1980          for ( Int j=1 ; j<3 ; j++ ) 
1981          {
1982            wp[j].iWeight = (1 << wp[j].uiLog2WeightDenom);
1983            wp[j].iOffset = 0;
1984          }
1985        }
1986      }
1987    }
1988
1989    for ( Int iRefIdx=pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx<MAX_NUM_REF ; iRefIdx++ ) 
1990    {
1991      pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1992
1993      wp[0].bPresentFlag = false;
1994      wp[1].bPresentFlag = false;
1995      wp[2].bPresentFlag = false;
1996    }
1997  }
1998  assert(uiTotalSignalledWeightFlags<=24);
1999}
2000
2001/** decode quantization matrix
2002* \param scalingList quantization matrix information
2003*/
2004Void TDecCavlc::parseScalingList(TComScalingList* scalingList)
2005{
2006  UInt  code, sizeId, listId;
2007  Bool scalingListPredModeFlag;
2008  //for each size
2009  for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2010  {
2011    for(listId = 0; listId <  g_scalingListNum[sizeId]; listId++)
2012    {
2013      READ_FLAG( code, "scaling_list_pred_mode_flag");
2014      scalingListPredModeFlag = (code) ? true : false;
2015      if(!scalingListPredModeFlag) //Copy Mode
2016      {
2017        READ_UVLC( code, "scaling_list_pred_matrix_id_delta");
2018        scalingList->setRefMatrixId (sizeId,listId,(UInt)((Int)(listId)-(code)));
2019        if( sizeId > SCALING_LIST_8x8 )
2020        {
2021          scalingList->setScalingListDC(sizeId,listId,((listId == scalingList->getRefMatrixId (sizeId,listId))? 16 :scalingList->getScalingListDC(sizeId, scalingList->getRefMatrixId (sizeId,listId))));
2022        }
2023        scalingList->processRefMatrix( sizeId, listId, scalingList->getRefMatrixId (sizeId,listId));
2024
2025      }
2026      else //DPCM Mode
2027      {
2028        xDecodeScalingList(scalingList, sizeId, listId);
2029      }
2030    }
2031  }
2032
2033  return;
2034}
2035/** decode DPCM
2036* \param scalingList  quantization matrix information
2037* \param sizeId size index
2038* \param listId list index
2039*/
2040Void TDecCavlc::xDecodeScalingList(TComScalingList *scalingList, UInt sizeId, UInt listId)
2041{
2042  Int i,coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]);
2043  Int data;
2044  Int scalingListDcCoefMinus8 = 0;
2045  Int nextCoef = SCALING_LIST_START_VALUE;
2046  UInt* scan  = (sizeId == 0) ? g_auiSigLastScan [ SCAN_DIAG ] [ 1 ] :  g_sigLastScanCG32x32;
2047  Int *dst = scalingList->getScalingListAddress(sizeId, listId);
2048
2049  if( sizeId > SCALING_LIST_8x8 )
2050  {
2051    READ_SVLC( scalingListDcCoefMinus8, "scaling_list_dc_coef_minus8");
2052    scalingList->setScalingListDC(sizeId,listId,scalingListDcCoefMinus8 + 8);
2053    nextCoef = scalingList->getScalingListDC(sizeId,listId);
2054  }
2055
2056  for(i = 0; i < coefNum; i++)
2057  {
2058    READ_SVLC( data, "scaling_list_delta_coef");
2059    nextCoef = (nextCoef + data + 256 ) % 256;
2060    dst[scan[i]] = nextCoef;
2061  }
2062}
2063
2064Bool TDecCavlc::xMoreRbspData()
2065{ 
2066  Int bitsLeft = m_pcBitstream->getNumBitsLeft();
2067
2068  // if there are more than 8 bits, it cannot be rbsp_trailing_bits
2069  if (bitsLeft > 8)
2070  {
2071    return true;
2072  }
2073
2074  UChar lastByte = m_pcBitstream->peekBits(bitsLeft);
2075  Int cnt = bitsLeft;
2076
2077  // remove trailing bits equal to zero
2078  while ((cnt>0) && ((lastByte & 1) == 0))
2079  {
2080    lastByte >>= 1;
2081    cnt--;
2082  }
2083  // remove bit equal to one
2084  cnt--;
2085
2086  // we should not have a negative number of bits
2087  assert (cnt>=0);
2088
2089  // we have more data, if cnt is not zero
2090  return (cnt>0);
2091}
2092
2093//! \}
2094
Note: See TracBrowser for help on using the repository browser.