source: 3DVCSoftware/branches/HTM-DEV-0.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp @ 363

Last change on this file since 363 was 362, checked in by tech, 12 years ago

Update to HM-10.1.

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