source: SHVCSoftware/branches/SHM-2.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp @ 216

Last change on this file since 216 was 216, checked in by sharp, 13 years ago

JCTVC-M0203 <hendry.hendry@…> and JCTVC-M0209 - Sachin Deshpande <sdeshpande@…>
Inter-layer prediction indication signaling and decoding

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