source: SHVCSoftware/branches/SHM-3.1-dev/source/Lib/TLibCommon/TComSlice.cpp @ 385

Last change on this file since 385 was 385, checked in by qualcomm, 11 years ago

Signal bit rate and picture rate information in VPS VUI. (MACRO: VPS_VUI_BITRATE_PICRATE)

From: Adarsh K. Ramasubramonian <aramasub@…>

  • Property svn:eol-style set to native
File size: 82.1 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     TComSlice.cpp
35    \brief    slice header and SPS class
36*/
37
38#include "CommonDef.h"
39#include "TComSlice.h"
40#include "TComPic.h"
41#include "TLibEncoder/TEncSbac.h"
42#include "TLibDecoder/TDecSbac.h"
43
44//! \ingroup TLibCommon
45//! \{
46
47#if SVC_EXTENSION
48  ParameterSetMap<TComVPS> ParameterSetManager::m_vpsMap(MAX_NUM_VPS);
49  Int ParameterSetManager::m_activeVPSId = -1;
50#endif
51
52TComSlice::TComSlice()
53: m_iPPSId                        ( -1 )
54, m_iPOC                          ( 0 )
55, m_iLastIDR                      ( 0 )
56, m_eNalUnitType                  ( NAL_UNIT_CODED_SLICE_IDR_W_RADL )
57, m_eSliceType                    ( I_SLICE )
58, m_iSliceQp                      ( 0 )
59, m_dependentSliceSegmentFlag            ( false )
60#if ADAPTIVE_QP_SELECTION
61, m_iSliceQpBase                  ( 0 )
62#endif
63, m_deblockingFilterDisable        ( false )
64, m_deblockingFilterOverrideFlag   ( false )
65, m_deblockingFilterBetaOffsetDiv2 ( 0 )
66, m_deblockingFilterTcOffsetDiv2   ( 0 )
67, m_bCheckLDC                     ( false )
68, m_iSliceQpDelta                 ( 0 )
69, m_iSliceQpDeltaCb               ( 0 )
70, m_iSliceQpDeltaCr               ( 0 )
71, m_iDepth                        ( 0 )
72, m_bRefenced                     ( false )
73#if SH_DISCARDABLE_FLAG
74, m_bDiscardableFlag              ( false )
75#endif
76, m_pcSPS                         ( NULL )
77, m_pcPPS                         ( NULL )
78, m_pcPic                         ( NULL )
79, m_colFromL0Flag                 ( 1 )
80, m_colRefIdx                     ( 0 )
81#if SAO_CHROMA_LAMBDA
82, m_dLambdaLuma( 0.0 )
83, m_dLambdaChroma( 0.0 )
84#else
85, m_dLambda                       ( 0.0 )
86#endif
87, m_uiTLayer                      ( 0 )
88#if SVC_EXTENSION
89, m_layerId                     ( 0 )
90#endif
91, m_bTLayerSwitchingFlag          ( false )
92, m_sliceMode                   ( 0 )
93, m_sliceArgument               ( 0 )
94, m_sliceCurStartCUAddr         ( 0 )
95, m_sliceCurEndCUAddr           ( 0 )
96, m_sliceIdx                    ( 0 )
97, m_sliceSegmentMode            ( 0 )
98, m_sliceSegmentArgument        ( 0 )
99, m_sliceSegmentCurStartCUAddr  ( 0 )
100, m_sliceSegmentCurEndCUAddr    ( 0 )
101, m_nextSlice                    ( false )
102, m_nextSliceSegment             ( false )
103, m_sliceBits                   ( 0 )
104, m_sliceSegmentBits         ( 0 )
105, m_bFinalized                    ( false )
106, m_uiTileOffstForMultES          ( 0 )
107, m_puiSubstreamSizes             ( NULL )
108, m_cabacInitFlag                 ( false )
109, m_bLMvdL1Zero                   ( false )
110, m_numEntryPointOffsets          ( 0 )
111, m_temporalLayerNonReferenceFlag ( false )
112, m_enableTMVPFlag                ( true )
113{
114  m_aiNumRefIdx[0] = m_aiNumRefIdx[1] = 0;
115
116#if SVC_EXTENSION
117  memset( m_pcBaseColPic, 0, sizeof( m_pcBaseColPic ) );
118#if JCTVC_M0458_INTERLAYER_RPS_SIG
119  m_activeNumILRRefIdx        = 0; 
120  m_interLayerPredEnabledFlag = 0;
121  ::memset( m_interLayerPredLayerIdc, 0, sizeof(m_interLayerPredLayerIdc) );
122#else
123  m_numILRRefIdx = 0;
124#endif
125#if M0457_COL_PICTURE_SIGNALING && !REMOVE_COL_PICTURE_SIGNALING
126  m_altColIndicationFlag = false;
127  m_colRefLayerIdx       = 0;
128#endif
129#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
130  m_numSamplePredRefLayers       = 0;
131  m_interLayerSamplePredOnlyFlag = false;
132#endif
133#endif
134
135  initEqualRef();
136 
137  for ( Int idx = 0; idx < MAX_NUM_REF; idx++ )
138  {
139    m_list1IdxToList0Idx[idx] = -1;
140  }
141  for(Int iNumCount = 0; iNumCount < MAX_NUM_REF; iNumCount++)
142  {
143    m_apcRefPicList [0][iNumCount] = NULL;
144    m_apcRefPicList [1][iNumCount] = NULL;
145    m_aiRefPOCList  [0][iNumCount] = 0;
146    m_aiRefPOCList  [1][iNumCount] = 0;
147  }
148  resetWpScaling();
149  initWpAcDcParam();
150  m_saoEnabledFlag = false;
151}
152
153TComSlice::~TComSlice()
154{
155  delete[] m_puiSubstreamSizes;
156  m_puiSubstreamSizes = NULL;
157}
158
159
160#if SVC_EXTENSION
161Void TComSlice::initSlice( UInt layerId )
162#else
163Void TComSlice::initSlice()
164#endif
165{
166#if SVC_EXTENSION
167  m_layerId = layerId;
168#if JCTVC_M0458_INTERLAYER_RPS_SIG
169  m_activeNumILRRefIdx        = 0;
170  m_interLayerPredEnabledFlag = 0;
171#else
172  m_numILRRefIdx              = 0;
173#endif
174#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
175  m_numSamplePredRefLayers       = 0;
176  m_interLayerSamplePredOnlyFlag = false;
177#endif
178#endif
179  m_aiNumRefIdx[0]      = 0;
180  m_aiNumRefIdx[1]      = 0;
181  m_colFromL0Flag = 1;
182 
183  m_colRefIdx = 0;
184  initEqualRef();
185  m_bCheckLDC = false;
186  m_iSliceQpDeltaCb = 0;
187  m_iSliceQpDeltaCr = 0;
188
189  m_maxNumMergeCand = MRG_MAX_NUM_CANDS;
190
191  m_bFinalized=false;
192
193  m_tileByteLocation.clear();
194  m_cabacInitFlag        = false;
195  m_numEntryPointOffsets = 0;
196  m_enableTMVPFlag = true;
197}
198
199Bool TComSlice::getRapPicFlag()
200{
201  return getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL
202      || getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP
203      || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP
204      || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
205      || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
206      || getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA;
207}
208
209/**
210 - allocate table to contain substream sizes to be written to the slice header.
211 .
212 \param uiNumSubstreams Number of substreams -- the allocation will be this value - 1.
213 */
214Void  TComSlice::allocSubstreamSizes(UInt uiNumSubstreams)
215{
216  delete[] m_puiSubstreamSizes;
217  m_puiSubstreamSizes = new UInt[uiNumSubstreams > 0 ? uiNumSubstreams-1 : 0];
218}
219
220Void  TComSlice::sortPicList(TComList<TComPic*>& rcListPic)
221{
222  TComPic*    pcPicExtract;
223  TComPic*    pcPicInsert;
224 
225  TComList<TComPic*>::iterator    iterPicExtract;
226  TComList<TComPic*>::iterator    iterPicExtract_1;
227  TComList<TComPic*>::iterator    iterPicInsert;
228 
229  for (Int i = 1; i < (Int)(rcListPic.size()); i++)
230  {
231    iterPicExtract = rcListPic.begin();
232    for (Int j = 0; j < i; j++) iterPicExtract++;
233    pcPicExtract = *(iterPicExtract);
234    pcPicExtract->setCurrSliceIdx(0);
235   
236    iterPicInsert = rcListPic.begin();
237    while (iterPicInsert != iterPicExtract)
238    {
239      pcPicInsert = *(iterPicInsert);
240      pcPicInsert->setCurrSliceIdx(0);
241      if (pcPicInsert->getPOC() >= pcPicExtract->getPOC())
242      {
243        break;
244      }
245     
246      iterPicInsert++;
247    }
248   
249    iterPicExtract_1 = iterPicExtract;    iterPicExtract_1++;
250   
251    //  swap iterPicExtract and iterPicInsert, iterPicExtract = curr. / iterPicInsert = insertion position
252    rcListPic.insert (iterPicInsert, iterPicExtract, iterPicExtract_1);
253    rcListPic.erase  (iterPicExtract);
254  }
255}
256
257TComPic* TComSlice::xGetRefPic (TComList<TComPic*>& rcListPic,
258                                Int                 poc)
259{
260  TComList<TComPic*>::iterator  iterPic = rcListPic.begin(); 
261  TComPic*                      pcPic = *(iterPic);
262  while ( iterPic != rcListPic.end() )
263  {
264    if(pcPic->getPOC() == poc)
265    {
266      break;
267    }
268    iterPic++;
269    pcPic = *(iterPic);
270  }
271  return  pcPic;
272}
273
274
275TComPic* TComSlice::xGetLongTermRefPic(TComList<TComPic*>& rcListPic, Int poc, Bool pocHasMsb)
276{
277  TComList<TComPic*>::iterator  iterPic = rcListPic.begin(); 
278  TComPic*                      pcPic = *(iterPic);
279  TComPic*                      pcStPic = pcPic;
280 
281  Int pocCycle = 1 << getSPS()->getBitsForPOC();
282  if (!pocHasMsb)
283  {
284    poc = poc % pocCycle;
285  }
286 
287  while ( iterPic != rcListPic.end() )
288  {
289    pcPic = *(iterPic);
290    if (pcPic && pcPic->getPOC()!=this->getPOC() && pcPic->getSlice( 0 )->isReferenced())
291    {
292      Int picPoc = pcPic->getPOC();
293      if (!pocHasMsb)
294      {
295        picPoc = picPoc % pocCycle;
296      }
297     
298      if (poc == picPoc)
299      {
300       if (pcPic->getIsLongTerm())
301      {
302        return pcPic;
303      }
304      else
305      {
306        pcStPic = pcPic;
307      }
308      break;
309    }
310    }
311
312    iterPic++;
313  }
314 
315  return  pcStPic;
316}
317
318Void TComSlice::setRefPOCList()
319{
320  for (Int iDir = 0; iDir < 2; iDir++)
321  {
322    for (Int iNumRefIdx = 0; iNumRefIdx < m_aiNumRefIdx[iDir]; iNumRefIdx++)
323    {
324      m_aiRefPOCList[iDir][iNumRefIdx] = m_apcRefPicList[iDir][iNumRefIdx]->getPOC();
325    }
326  }
327
328}
329
330Void TComSlice::setList1IdxToList0Idx()
331{
332  Int idxL0, idxL1;
333  for ( idxL1 = 0; idxL1 < getNumRefIdx( REF_PIC_LIST_1 ); idxL1++ )
334  {
335    m_list1IdxToList0Idx[idxL1] = -1;
336    for ( idxL0 = 0; idxL0 < getNumRefIdx( REF_PIC_LIST_0 ); idxL0++ )
337    {
338      if ( m_apcRefPicList[REF_PIC_LIST_0][idxL0]->getPOC() == m_apcRefPicList[REF_PIC_LIST_1][idxL1]->getPOC() )
339      {
340        m_list1IdxToList0Idx[idxL1] = idxL0;
341        break;
342      }
343    }
344  }
345}
346
347#if FIX1071
348#if SVC_EXTENSION
349Void TComSlice::setRefPicList( TComList<TComPic*>& rcListPic, Bool checkNumPocTotalCurr, TComPic** ilpPic)
350#else
351Void TComSlice::setRefPicList( TComList<TComPic*>& rcListPic, Bool checkNumPocTotalCurr )
352#endif
353#else
354Void TComSlice::setRefPicList( TComList<TComPic*>& rcListPic )
355#endif
356{
357#if FIX1071
358  if (!checkNumPocTotalCurr)
359#endif
360  {
361    if (m_eSliceType == I_SLICE)
362    {
363      ::memset( m_apcRefPicList, 0, sizeof (m_apcRefPicList));
364      ::memset( m_aiNumRefIdx,   0, sizeof ( m_aiNumRefIdx ));
365     
366      return;
367    }
368 
369    m_aiNumRefIdx[0] = getNumRefIdx(REF_PIC_LIST_0);
370    m_aiNumRefIdx[1] = getNumRefIdx(REF_PIC_LIST_1);
371  }
372
373  TComPic*  pcRefPic= NULL;
374  TComPic*  RefPicSetStCurr0[16];
375  TComPic*  RefPicSetStCurr1[16];
376  TComPic*  RefPicSetLtCurr[16];
377  UInt NumPocStCurr0 = 0;
378  UInt NumPocStCurr1 = 0;
379  UInt NumPocLtCurr = 0;
380  Int i;
381
382#if SVC_EXTENSION
383  if( m_layerId == 0 || ( m_layerId > 0 && ( m_activeNumILRRefIdx == 0 || !((getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP) && (getNalUnitType() <= NAL_UNIT_CODED_SLICE_CRA)) ) ) )
384  {
385#endif
386  for(i=0; i < m_pcRPS->getNumberOfNegativePictures(); i++)
387  {
388    if(m_pcRPS->getUsed(i))
389    {
390      pcRefPic = xGetRefPic(rcListPic, getPOC()+m_pcRPS->getDeltaPOC(i));
391      pcRefPic->setIsLongTerm(0);
392      pcRefPic->getPicYuvRec()->extendPicBorder();
393      RefPicSetStCurr0[NumPocStCurr0] = pcRefPic;
394#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
395      if( !m_interLayerSamplePredOnlyFlag || pcRefPic->getLayerId() < getLayerId()) 
396#endif
397      NumPocStCurr0++;
398      pcRefPic->setCheckLTMSBPresent(false); 
399    }
400  }
401 
402  for(; i < m_pcRPS->getNumberOfNegativePictures()+m_pcRPS->getNumberOfPositivePictures(); i++)
403  {
404    if(m_pcRPS->getUsed(i))
405    {
406      pcRefPic = xGetRefPic(rcListPic, getPOC()+m_pcRPS->getDeltaPOC(i));
407      pcRefPic->setIsLongTerm(0);
408      pcRefPic->getPicYuvRec()->extendPicBorder();
409      RefPicSetStCurr1[NumPocStCurr1] = pcRefPic;
410#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
411      if( !m_interLayerSamplePredOnlyFlag || pcRefPic->getLayerId() < getLayerId()) 
412#endif
413      NumPocStCurr1++;
414      pcRefPic->setCheckLTMSBPresent(false); 
415    }
416  }
417 
418  for(i = m_pcRPS->getNumberOfNegativePictures()+m_pcRPS->getNumberOfPositivePictures()+m_pcRPS->getNumberOfLongtermPictures()-1; i > m_pcRPS->getNumberOfNegativePictures()+m_pcRPS->getNumberOfPositivePictures()-1 ; i--)
419  {
420    if(m_pcRPS->getUsed(i))
421    {
422      pcRefPic = xGetLongTermRefPic(rcListPic, m_pcRPS->getPOC(i), m_pcRPS->getCheckLTMSBPresent(i));
423      pcRefPic->setIsLongTerm(1);
424      pcRefPic->getPicYuvRec()->extendPicBorder();
425      RefPicSetLtCurr[NumPocLtCurr] = pcRefPic;
426#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
427      if( !m_interLayerSamplePredOnlyFlag || pcRefPic->getLayerId() < getLayerId()) 
428#endif
429      NumPocLtCurr++;
430    }
431    if(pcRefPic==NULL) 
432    {
433      pcRefPic = xGetLongTermRefPic(rcListPic, m_pcRPS->getPOC(i), m_pcRPS->getCheckLTMSBPresent(i));
434    }
435    pcRefPic->setCheckLTMSBPresent(m_pcRPS->getCheckLTMSBPresent(i)); 
436  }
437#if SVC_EXTENSION
438  }
439#endif
440
441#if SVC_EXTENSION
442  for( i = 0; i < m_activeNumILRRefIdx; i++ )
443  {
444    UInt refLayerIdc = m_interLayerPredLayerIdc[i];
445    //inter-layer reference picture
446
447#if ILR_RESTR
448    Int maxSubLayerForILPPlus1 = ( m_layerId > 0 && m_activeNumILRRefIdx > 0)? m_pcVPS->getMaxSublayerForIlpPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId()) : 0;
449    if( m_layerId > 0 && m_activeNumILRRefIdx > 0 && ( ( (Int)(ilpPic[refLayerIdc]->getSlice(0)->getTLayer())<=  maxSubLayerForILPPlus1-1) || (maxSubLayerForILPPlus1==0 && ilpPic[refLayerIdc]->getSlice(0)->getRapPicFlag()) )  ) 
450#else //#if ILR_RESTR
451    if( m_layerId > 0 && m_activeNumILRRefIdx > 0 )
452#endif //#if ILR_RESTR
453    {
454#if REF_IDX_MFM
455#if M0457_COL_PICTURE_SIGNALING
456      if(!(m_eNalUnitType >= NAL_UNIT_CODED_SLICE_BLA_W_LP && m_eNalUnitType <= NAL_UNIT_CODED_SLICE_CRA) && getMFMEnabledFlag())
457#else
458      if(!(m_eNalUnitType >= NAL_UNIT_CODED_SLICE_BLA_W_LP && m_eNalUnitType <= NAL_UNIT_CODED_SLICE_CRA) && m_pcSPS->getMFMEnabledFlag())
459#endif
460      { 
461        ilpPic[refLayerIdc]->copyUpsampledMvField( refLayerIdc, m_pcBaseColPic[refLayerIdc] );
462      }
463      else
464      {
465        ilpPic[refLayerIdc]->initUpsampledMvField();
466      }
467#endif
468      ilpPic[refLayerIdc]->setIsLongTerm(1);
469    }
470  }
471#endif
472  // ref_pic_list_init
473  TComPic*  rpsCurrList0[MAX_NUM_REF+1];
474  TComPic*  rpsCurrList1[MAX_NUM_REF+1];
475#if SVC_EXTENSION
476#if ILR_RESTR
477  Int numInterLayerRPSPics = 0;
478#if M0040_ADAPTIVE_RESOLUTION_CHANGE
479  if( m_layerId > 0 && m_activeNumILRRefIdx > 0 )
480#else
481  if( m_layerId > 0 )
482#endif
483  {
484    for( i=0; i < m_pcVPS->getNumDirectRefLayers( m_layerId ); i++ )
485    {
486      Int maxSubLayerForILPPlus1 = getVPS()->getMaxSublayerForIlpPlus1(ilpPic[i]->getSlice(0)->getLayerId());
487      if( ((Int)(ilpPic[i]->getSlice(0)->getTLayer())<= maxSubLayerForILPPlus1-1) || (maxSubLayerForILPPlus1==0 && ilpPic[i]->getSlice(0)->getRapPicFlag() ) )
488      {
489        numInterLayerRPSPics++;
490      }
491    }
492#if JCTVC_M0458_INTERLAYER_RPS_SIG
493    if (numInterLayerRPSPics < m_activeNumILRRefIdx)
494    {
495      m_activeNumILRRefIdx = numInterLayerRPSPics;
496    }
497#if MAX_ONE_RESAMPLING_DIRECT_LAYERS
498    if( m_pcVPS->getScalabilityMask(1) )
499    {
500      Int numResampler = 0;
501      const Window &scalEL = getSPS()->getScaledRefLayerWindow(m_interLayerPredLayerIdc[i]);
502      Int scalingOffset = ((scalEL.getWindowLeftOffset()   == 0 ) && 
503                           (scalEL.getWindowRightOffset()  == 0 ) && 
504                           (scalEL.getWindowTopOffset()    == 0 ) && 
505                           (scalEL.getWindowBottomOffset() == 0 ) 
506                          );
507
508      for( i=0; i < m_activeNumILRRefIdx; i++ )
509      {
510        UInt refLayerIdc = m_interLayerPredLayerIdc[i];
511        if(!( g_posScalingFactor[refLayerIdc][0] == 65536 && g_posScalingFactor[refLayerIdc][1] == 65536 ) && (scalingOffset)) // ratio 1x
512        {
513          numResampler++;
514        }
515      }
516
517      //Bitstream constraint for SHVC: The picture resampling process as specified in subclause G.8.1.4.1 shall not be invoked more than once for decoding of each particular picture.
518      assert(numResampler <= 1);
519    }
520#endif
521#else
522    if (numInterLayerRPSPics < m_numILRRefIdx)
523    {
524      m_numILRRefIdx = numInterLayerRPSPics;
525    }
526#endif
527  }
528#endif
529#if JCTVC_M0458_INTERLAYER_RPS_SIG
530  Int numPocTotalCurr = NumPocStCurr0 + NumPocStCurr1 + NumPocLtCurr + m_activeNumILRRefIdx;
531#else
532  Int numPocTotalCurr = NumPocStCurr0 + NumPocStCurr1 + NumPocLtCurr + m_numILRRefIdx;
533#endif
534#else
535  Int numPocTotalCurr = NumPocStCurr0 + NumPocStCurr1 + NumPocLtCurr;
536#endif
537#if FIX1071
538  if (checkNumPocTotalCurr)
539  {
540    // The variable NumPocTotalCurr is derived as specified in subclause 7.4.7.2. It is a requirement of bitstream conformance that the following applies to the value of NumPocTotalCurr:
541#if ILP_RAP    // inter-layer prediction is allowed for BLA, CRA pictures of nuh_layer_id>0
542    // – If the current picture is a BLA or CRA picture with nuh_layer_id equal to 0, the value of NumPocTotalCurr shall be equal to 0.
543    // – Otherwise, when the current picture contains a P or B slice, the value of NumPocTotalCurr shall not be equal to 0.
544    if (getRapPicFlag() && getLayerId()==0)
545#else
546    // – If the current picture is a BLA or CRA picture, the value of NumPocTotalCurr shall be equal to 0.
547    // – Otherwise, when the current picture contains a P or B slice, the value of NumPocTotalCurr shall not be equal to 0.
548    if (getRapPicFlag())
549#endif
550    {
551      assert(numPocTotalCurr == 0);
552    }
553
554    if (m_eSliceType == I_SLICE)
555  {
556      ::memset( m_apcRefPicList, 0, sizeof (m_apcRefPicList));
557      ::memset( m_aiNumRefIdx,   0, sizeof ( m_aiNumRefIdx ));
558     
559      return;
560    }
561   
562    assert(numPocTotalCurr > 0);
563   
564    m_aiNumRefIdx[0] = getNumRefIdx(REF_PIC_LIST_0);
565    m_aiNumRefIdx[1] = getNumRefIdx(REF_PIC_LIST_1);
566  }
567#endif
568
569#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
570    if( m_interLayerSamplePredOnlyFlag && getLayerId() ) 
571    {
572      m_aiNumRefIdx[0] = m_aiNumRefIdx[0] > m_activeNumILRRefIdx ? m_activeNumILRRefIdx : m_aiNumRefIdx[0];
573      m_aiNumRefIdx[1] = m_aiNumRefIdx[1] > m_activeNumILRRefIdx ? m_activeNumILRRefIdx : m_aiNumRefIdx[1];
574    }
575#endif
576 
577    Int cIdx = 0;
578    for ( i=0; i<NumPocStCurr0; i++, cIdx++)
579    {
580      rpsCurrList0[cIdx] = RefPicSetStCurr0[i];
581    }
582#if SVC_EXTENSION
583#if RPL_INIT_N0316_N0082
584    if( m_layerId > 0 )
585    {
586#if JCTVC_M0458_INTERLAYER_RPS_SIG
587      for( i = 0; i < m_activeNumILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)     
588#else
589      for( i = 0; i < m_numILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)
590#endif
591      {
592        Int refLayerIdc = m_interLayerPredLayerIdc[i];
593#if ILR_RESTR
594        Int maxSubLayerForILPPlus1 = getVPS()->getMaxSublayerForIlpPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId());
595        if( ((Int)(ilpPic[refLayerIdc]->getSlice(0)->getTLayer())<=maxSubLayerForILPPlus1-1) || (maxSubLayerForILPPlus1==0 && ilpPic[refLayerIdc]->getSlice(0)->getRapPicFlag()) )
596#endif
597          rpsCurrList0[cIdx] = ilpPic[refLayerIdc];
598      }
599    }
600#endif
601#endif
602    for ( i=0; i<NumPocStCurr1; i++, cIdx++)
603    {
604      rpsCurrList0[cIdx] = RefPicSetStCurr1[i];
605    }
606    for ( i=0; i<NumPocLtCurr;  i++, cIdx++)
607    {
608      rpsCurrList0[cIdx] = RefPicSetLtCurr[i];
609    }   
610#if !RPL_INIT_N0316_N0082
611#if SVC_EXTENSION
612    if( m_layerId > 0 )
613    {
614#if JCTVC_M0458_INTERLAYER_RPS_SIG
615      for( i = 0; i < m_activeNumILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)     
616#else
617      for( i = 0; i < m_numILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)
618#endif
619      {
620        Int refLayerIdc = m_interLayerPredLayerIdc[i];
621#if ILR_RESTR
622         Int maxSubLayerForILPPlus1 = getVPS()->getMaxSublayerForIlpPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId());
623        if( ((Int)(ilpPic[refLayerIdc]->getSlice(0)->getTLayer())<=maxSubLayerForILPPlus1-1) || (maxSubLayerForILPPlus1==0 && ilpPic[refLayerIdc]->getSlice(0)->getRapPicFlag()) )
624#endif
625        rpsCurrList0[cIdx] = ilpPic[refLayerIdc];
626      }
627    }
628#endif
629#endif
630  assert(cIdx == numPocTotalCurr);
631
632  if (m_eSliceType==B_SLICE)
633  {
634    cIdx = 0;
635    for ( i=0; i<NumPocStCurr1; i++, cIdx++)
636    {
637      rpsCurrList1[cIdx] = RefPicSetStCurr1[i];
638    }
639    for ( i=0; i<NumPocStCurr0; i++, cIdx++)
640    {
641      rpsCurrList1[cIdx] = RefPicSetStCurr0[i];
642    }
643    for ( i=0; i<NumPocLtCurr;  i++, cIdx++)
644    {
645      rpsCurrList1[cIdx] = RefPicSetLtCurr[i];
646    }   
647
648#if SVC_EXTENSION
649    if( m_layerId > 0 )
650    {
651#if JCTVC_M0458_INTERLAYER_RPS_SIG
652      for( i = 0; i < m_activeNumILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)
653#else
654      for( i = 0; i < m_numILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)
655#endif
656      {
657        Int refLayerIdc = m_interLayerPredLayerIdc[i];
658#if ILR_RESTR
659        Int maxSubLayerForILPPlus1 = getVPS()->getMaxSublayerForIlpPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId());
660        if( ((Int)(ilpPic[refLayerIdc]->getSlice(0)->getTLayer())<=maxSubLayerForILPPlus1-1) || (maxSubLayerForILPPlus1==0 && ilpPic[refLayerIdc]->getSlice(0)->getRapPicFlag()) )
661#endif
662        rpsCurrList1[cIdx] = ilpPic[refLayerIdc];
663      }
664    }
665#endif
666
667    assert(cIdx == numPocTotalCurr);
668  }
669
670  ::memset(m_bIsUsedAsLongTerm, 0, sizeof(m_bIsUsedAsLongTerm));
671
672  for (Int rIdx = 0; rIdx < m_aiNumRefIdx[0]; rIdx ++)
673  {
674    cIdx = m_RefPicListModification.getRefPicListModificationFlagL0() ? m_RefPicListModification.getRefPicSetIdxL0(rIdx) : rIdx % numPocTotalCurr;
675    assert(cIdx >= 0 && cIdx < numPocTotalCurr);
676    m_apcRefPicList[0][rIdx] = rpsCurrList0[ cIdx ];
677#if RPL_INIT_N0316_N0082
678    m_bIsUsedAsLongTerm[0][rIdx] = ( cIdx >= NumPocStCurr0 && cIdx < NumPocStCurr0 + m_activeNumILRRefIdx ) || ( cIdx >= NumPocStCurr0 + NumPocStCurr1 + m_activeNumILRRefIdx );
679#else
680    m_bIsUsedAsLongTerm[0][rIdx] = ( cIdx >= NumPocStCurr0 + NumPocStCurr1 );
681#endif
682  }
683  if ( m_eSliceType != B_SLICE )
684  {
685    m_aiNumRefIdx[1] = 0;
686    ::memset( m_apcRefPicList[1], 0, sizeof(m_apcRefPicList[1]));
687  }
688  else
689  {
690    for (Int rIdx = 0; rIdx < m_aiNumRefIdx[1]; rIdx ++)
691    {
692      cIdx = m_RefPicListModification.getRefPicListModificationFlagL1() ? m_RefPicListModification.getRefPicSetIdxL1(rIdx) : rIdx % numPocTotalCurr;
693      assert(cIdx >= 0 && cIdx < numPocTotalCurr);
694      m_apcRefPicList[1][rIdx] = rpsCurrList1[ cIdx ];
695      m_bIsUsedAsLongTerm[1][rIdx] = ( cIdx >= NumPocStCurr0 + NumPocStCurr1 );
696    }
697  }
698}
699
700#if SVC_EXTENSION
701Void TComSlice::setRefPicListModificationSvc()
702{
703  if( !m_pcPPS->getListsModificationPresentFlag()) 
704  {
705    return;
706  }
707
708  if(m_eNalUnitType >= NAL_UNIT_CODED_SLICE_BLA_W_LP && m_eNalUnitType <= NAL_UNIT_CODED_SLICE_CRA)
709  {
710    return;
711  }
712
713  TComRefPicListModification* refPicListModification = &m_RefPicListModification;
714  Int numberOfRpsCurrTempList = this->getNumRpsCurrTempList();  // total number of ref pics in listTemp0 including inter-layer ref pics
715#if RPL_INIT_N0316_N0082
716  Int numberOfPocBeforeCurr = this->getNumNegativeRpsCurrTempList();  // number of negative temporal ref pics
717#endif
718
719  assert(m_aiNumRefIdx[REF_PIC_LIST_0] > 1);
720  assert(m_aiNumRefIdx[REF_PIC_LIST_1] > 1);
721
722  //set L0 inter-layer reference picture modification
723#if RPL_INIT_N0316_N0082
724  Bool hasModification = (m_aiNumRefIdx[REF_PIC_LIST_0] == (numberOfPocBeforeCurr + m_activeNumILRRefIdx)) ? false : true;
725#else
726  Bool hasModification = (m_aiNumRefIdx[REF_PIC_LIST_0] == numberOfRpsCurrTempList) ? false : true;
727#endif
728#if FINAL_RPL_CHANGE_N0082
729  hasModification = false; //modification is not necessary
730#endif
731  refPicListModification->setRefPicListModificationFlagL0(hasModification);
732  if(hasModification)
733  { 
734    for(Int i = 0; i < min(m_aiNumRefIdx[REF_PIC_LIST_0], numberOfRpsCurrTempList); i++)
735    {
736      refPicListModification->setRefPicSetIdxL0(i, i);
737    }
738    if(m_aiNumRefIdx[REF_PIC_LIST_0] > numberOfRpsCurrTempList)
739    {
740        // repeat last ref pic when the number of active ref idx are more than RPS entries
741      for (Int i = numberOfRpsCurrTempList; i < m_aiNumRefIdx[REF_PIC_LIST_0]; i ++)
742      {
743        refPicListModification->setRefPicSetIdxL0(i, numberOfRpsCurrTempList - 1);
744      }
745    }
746    else
747    {
748#if JCTVC_M0458_INTERLAYER_RPS_SIG
749      for(Int i = m_activeNumILRRefIdx; i > 0; i-- )
750#else
751      for(Int i = m_numILRRefIdx; i > 0; i-- )
752#endif
753      {
754#if RPL_INIT_N0316_N0082
755        if((numberOfPocBeforeCurr) >= m_aiNumRefIdx[REF_PIC_LIST_0])
756        {
757          refPicListModification->setRefPicSetIdxL0(m_aiNumRefIdx[REF_PIC_LIST_0] - i, numberOfPocBeforeCurr);
758        }
759        else
760        {
761          refPicListModification->setRefPicSetIdxL0(m_aiNumRefIdx[REF_PIC_LIST_0] - i, numberOfPocBeforeCurr);
762          for (Int j = numberOfPocBeforeCurr; j < (m_aiNumRefIdx[REF_PIC_LIST_0] - i); j++)
763          {
764            refPicListModification->setRefPicSetIdxL0(j, j + m_activeNumILRRefIdx);
765          }
766        }
767#else
768        refPicListModification->setRefPicSetIdxL0(m_aiNumRefIdx[REF_PIC_LIST_0] - i, numberOfRpsCurrTempList - i);
769#endif
770      }
771    }
772  }
773
774  //set L1 inter-layer reference picture modification
775  hasModification = (m_aiNumRefIdx[REF_PIC_LIST_1] == numberOfRpsCurrTempList) ? false : true;
776  refPicListModification->setRefPicListModificationFlagL1(hasModification);
777  if(hasModification)
778  { 
779    for(Int i = 0; i < min(m_aiNumRefIdx[REF_PIC_LIST_1], numberOfRpsCurrTempList); i++)
780    {
781      refPicListModification->setRefPicSetIdxL1(i, i);
782    }
783    if(m_aiNumRefIdx[REF_PIC_LIST_1] > numberOfRpsCurrTempList)
784    {
785      for (Int i = numberOfRpsCurrTempList; i < m_aiNumRefIdx[REF_PIC_LIST_1]; i ++)
786      {
787        // repeat last ref pic when the number of active ref idx are more than RPS entries
788        refPicListModification->setRefPicSetIdxL1(i, numberOfRpsCurrTempList - 1); 
789      }
790    }
791    else
792    {
793#if JCTVC_M0458_INTERLAYER_RPS_SIG
794      for(Int i = m_activeNumILRRefIdx; i > 0; i-- )
795#else
796      for(Int i = m_numILRRefIdx; i > 0; i-- )
797#endif
798      {
799        refPicListModification->setRefPicSetIdxL1(m_aiNumRefIdx[REF_PIC_LIST_1] - i, numberOfRpsCurrTempList - i);
800      }
801    }
802  }
803  return;
804}
805#endif
806#if RPL_INIT_N0316_N0082
807Int TComSlice::getNumNegativeRpsCurrTempList()
808{
809  if( m_eSliceType == I_SLICE ) 
810  {
811    return 0;
812  }
813
814  Int numPocBeforeCurr = 0;
815  for( UInt i = 0; i < m_pcRPS->getNumberOfNegativePictures(); i++ )
816  {
817    if(m_pcRPS->getUsed(i))
818    {
819      numPocBeforeCurr++;
820    }
821  }
822
823  return numPocBeforeCurr;
824}
825#endif
826Int TComSlice::getNumRpsCurrTempList()
827{
828  Int numRpsCurrTempList = 0;
829
830#if SVC_EXTENSION
831  if( m_eSliceType == I_SLICE || ( m_pcSPS->getLayerId() && 
832    (m_eNalUnitType >= NAL_UNIT_CODED_SLICE_BLA_W_LP) &&
833    (m_eNalUnitType <= NAL_UNIT_CODED_SLICE_CRA) ) )
834#else
835  if (m_eSliceType == I_SLICE) 
836#endif
837  {
838#if SVC_EXTENSION
839#if JCTVC_M0458_INTERLAYER_RPS_SIG
840    return m_activeNumILRRefIdx;
841#else
842    return getNumILRRefIdx();
843#endif
844#else
845    return 0;
846#endif
847  }
848  for(UInt i=0; i < m_pcRPS->getNumberOfNegativePictures()+ m_pcRPS->getNumberOfPositivePictures() + m_pcRPS->getNumberOfLongtermPictures(); i++)
849  {
850    if(m_pcRPS->getUsed(i))
851    {
852      numRpsCurrTempList++;
853    }
854  }
855#if SVC_EXTENSION
856  if( m_layerId > 0 )
857  {
858#if JCTVC_M0458_INTERLAYER_RPS_SIG
859    numRpsCurrTempList += m_activeNumILRRefIdx;
860#else
861    numRpsCurrTempList += getNumILRRefIdx();
862#endif
863  }
864#endif
865
866  return numRpsCurrTempList;
867}
868
869Void TComSlice::initEqualRef()
870{
871  for (Int iDir = 0; iDir < 2; iDir++)
872  {
873    for (Int iRefIdx1 = 0; iRefIdx1 < MAX_NUM_REF; iRefIdx1++)
874    {
875      for (Int iRefIdx2 = iRefIdx1; iRefIdx2 < MAX_NUM_REF; iRefIdx2++)
876      {
877        m_abEqualRef[iDir][iRefIdx1][iRefIdx2] = m_abEqualRef[iDir][iRefIdx2][iRefIdx1] = (iRefIdx1 == iRefIdx2? true : false);
878      }
879    }
880  }
881}
882
883Void TComSlice::checkColRefIdx(UInt curSliceIdx, TComPic* pic)
884{
885  Int i;
886  TComSlice* curSlice = pic->getSlice(curSliceIdx);
887  Int currColRefPOC =  curSlice->getRefPOC( RefPicList(1-curSlice->getColFromL0Flag()), curSlice->getColRefIdx());
888  TComSlice* preSlice;
889  Int preColRefPOC;
890  for(i=curSliceIdx-1; i>=0; i--)
891  {
892    preSlice = pic->getSlice(i);
893    if(preSlice->getSliceType() != I_SLICE)
894    {
895      preColRefPOC  = preSlice->getRefPOC( RefPicList(1-preSlice->getColFromL0Flag()), preSlice->getColRefIdx());
896      if(currColRefPOC != preColRefPOC)
897      {
898        printf("Collocated_ref_idx shall always be the same for all slices of a coded picture!\n");
899        exit(EXIT_FAILURE);
900      }
901      else
902      {
903        break;
904      }
905    }
906  }
907}
908
909Void TComSlice::checkCRA(TComReferencePictureSet *pReferencePictureSet, Int& pocCRA, Bool& prevRAPisBLA, TComList<TComPic *>& rcListPic)
910{
911  for(Int i = 0; i < pReferencePictureSet->getNumberOfNegativePictures()+pReferencePictureSet->getNumberOfPositivePictures(); i++)
912  {
913    if(pocCRA < MAX_UINT && getPOC() > pocCRA)
914    {
915      assert(getPOC()+pReferencePictureSet->getDeltaPOC(i) >= pocCRA);
916    }
917  }
918  for(Int i = pReferencePictureSet->getNumberOfNegativePictures()+pReferencePictureSet->getNumberOfPositivePictures(); i < pReferencePictureSet->getNumberOfPictures(); i++)
919  {
920    if(pocCRA < MAX_UINT && getPOC() > pocCRA)
921    {
922      if (!pReferencePictureSet->getCheckLTMSBPresent(i))
923      {
924        assert(xGetLongTermRefPic(rcListPic, pReferencePictureSet->getPOC(i), false)->getPOC() >= pocCRA);
925      }
926      else
927      {
928      assert(pReferencePictureSet->getPOC(i) >= pocCRA);
929    }
930  }
931  }
932  if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL || getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP ) // IDR picture found
933  {
934    pocCRA = getPOC();
935    prevRAPisBLA = false;
936  }
937  else if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA ) // CRA picture found
938  {
939    pocCRA = getPOC();
940    prevRAPisBLA = false;
941  }
942  else if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
943         || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
944         || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP ) // BLA picture found
945  {
946    pocCRA = getPOC();
947    prevRAPisBLA = true;
948  }
949}
950
951/** Function for marking the reference pictures when an IDR/CRA/CRANT/BLA/BLANT is encountered.
952 * \param pocCRA POC of the CRA/CRANT/BLA/BLANT picture
953 * \param bRefreshPending flag indicating if a deferred decoding refresh is pending
954 * \param rcListPic reference to the reference picture list
955 * This function marks the reference pictures as "unused for reference" in the following conditions.
956 * If the nal_unit_type is IDR/BLA/BLANT, all pictures in the reference picture list 
957 * are marked as "unused for reference"
958 *    If the nal_unit_type is BLA/BLANT, set the pocCRA to the temporal reference of the current picture.
959 * Otherwise
960 *    If the bRefreshPending flag is true (a deferred decoding refresh is pending) and the current
961 *    temporal reference is greater than the temporal reference of the latest CRA/CRANT/BLA/BLANT picture (pocCRA),
962 *    mark all reference pictures except the latest CRA/CRANT/BLA/BLANT picture as "unused for reference" and set
963 *    the bRefreshPending flag to false.
964 *    If the nal_unit_type is CRA/CRANT, set the bRefreshPending flag to true and pocCRA to the temporal
965 *    reference of the current picture.
966 * Note that the current picture is already placed in the reference list and its marking is not changed.
967 * If the current picture has a nal_ref_idc that is not 0, it will remain marked as "used for reference".
968 */
969Void TComSlice::decodingRefreshMarking(Int& pocCRA, Bool& bRefreshPending, TComList<TComPic*>& rcListPic)
970{
971  TComPic*                 rpcPic;
972  Int pocCurr = getPOC(); 
973
974  if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
975    || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
976    || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP
977    || getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL
978    || getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP )  // IDR or BLA picture
979  {
980    // mark all pictures as not used for reference
981    TComList<TComPic*>::iterator        iterPic       = rcListPic.begin();
982    while (iterPic != rcListPic.end())
983    {
984      rpcPic = *(iterPic);
985      rpcPic->setCurrSliceIdx(0);
986      if (rpcPic->getPOC() != pocCurr) rpcPic->getSlice(0)->setReferenced(false);
987      iterPic++;
988    }
989    if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
990      || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
991      || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP )
992    {
993      pocCRA = pocCurr;
994    }
995  }
996  else // CRA or No DR
997  {
998    if (bRefreshPending==true && pocCurr > pocCRA) // CRA reference marking pending
999    {
1000      TComList<TComPic*>::iterator        iterPic       = rcListPic.begin();
1001      while (iterPic != rcListPic.end())
1002      {
1003        rpcPic = *(iterPic);
1004        if (rpcPic->getPOC() != pocCurr && rpcPic->getPOC() != pocCRA)
1005        {
1006          rpcPic->getSlice(0)->setReferenced(false);
1007        }
1008        iterPic++;
1009      }
1010      bRefreshPending = false; 
1011    }
1012    if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA ) // CRA picture found
1013    {
1014      bRefreshPending = true; 
1015      pocCRA = pocCurr;
1016    }
1017  }
1018}
1019
1020Void TComSlice::copySliceInfo(TComSlice *pSrc)
1021{
1022  assert( pSrc != NULL );
1023
1024  Int i, j, k;
1025
1026  m_iPOC                 = pSrc->m_iPOC;
1027  m_eNalUnitType         = pSrc->m_eNalUnitType;
1028  m_eSliceType           = pSrc->m_eSliceType;
1029  m_iSliceQp             = pSrc->m_iSliceQp;
1030#if ADAPTIVE_QP_SELECTION
1031  m_iSliceQpBase         = pSrc->m_iSliceQpBase;
1032#endif
1033  m_deblockingFilterDisable   = pSrc->m_deblockingFilterDisable;
1034  m_deblockingFilterOverrideFlag = pSrc->m_deblockingFilterOverrideFlag;
1035  m_deblockingFilterBetaOffsetDiv2 = pSrc->m_deblockingFilterBetaOffsetDiv2;
1036  m_deblockingFilterTcOffsetDiv2 = pSrc->m_deblockingFilterTcOffsetDiv2;
1037 
1038  for (i = 0; i < 2; i++)
1039  {
1040    m_aiNumRefIdx[i]     = pSrc->m_aiNumRefIdx[i];
1041  }
1042
1043  for (i = 0; i < MAX_NUM_REF; i++)
1044  {
1045    m_list1IdxToList0Idx[i] = pSrc->m_list1IdxToList0Idx[i];
1046  } 
1047  m_bCheckLDC             = pSrc->m_bCheckLDC;
1048  m_iSliceQpDelta        = pSrc->m_iSliceQpDelta;
1049  m_iSliceQpDeltaCb      = pSrc->m_iSliceQpDeltaCb;
1050  m_iSliceQpDeltaCr      = pSrc->m_iSliceQpDeltaCr;
1051  for (i = 0; i < 2; i++)
1052  {
1053    for (j = 0; j < MAX_NUM_REF; j++)
1054    {
1055      m_apcRefPicList[i][j]  = pSrc->m_apcRefPicList[i][j];
1056      m_aiRefPOCList[i][j]   = pSrc->m_aiRefPOCList[i][j];
1057    }
1058  }
1059  for (i = 0; i < 2; i++)
1060  {
1061    for (j = 0; j < MAX_NUM_REF + 1; j++)
1062    {
1063      m_bIsUsedAsLongTerm[i][j] = pSrc->m_bIsUsedAsLongTerm[i][j];
1064    }
1065  }
1066  m_iDepth               = pSrc->m_iDepth;
1067
1068  // referenced slice
1069  m_bRefenced            = pSrc->m_bRefenced;
1070
1071  // access channel
1072#if SVC_EXTENSION
1073  m_pcVPS                = pSrc->m_pcVPS;
1074#if JCTVC_M0458_INTERLAYER_RPS_SIG
1075  m_activeNumILRRefIdx         = pSrc->m_activeNumILRRefIdx;
1076  m_interLayerPredEnabledFlag  = pSrc->m_interLayerPredEnabledFlag;
1077  memcpy( m_interLayerPredLayerIdc, pSrc->m_interLayerPredLayerIdc, sizeof( m_interLayerPredLayerIdc ) );
1078#endif
1079#endif
1080  m_pcSPS                = pSrc->m_pcSPS;
1081  m_pcPPS                = pSrc->m_pcPPS;
1082  m_pcRPS                = pSrc->m_pcRPS;
1083  m_iLastIDR             = pSrc->m_iLastIDR;
1084
1085  m_pcPic                = pSrc->m_pcPic;
1086
1087  m_colFromL0Flag        = pSrc->m_colFromL0Flag;
1088  m_colRefIdx            = pSrc->m_colRefIdx;
1089#if SAO_CHROMA_LAMBDA
1090  m_dLambdaLuma          = pSrc->m_dLambdaLuma;
1091  m_dLambdaChroma        = pSrc->m_dLambdaChroma;
1092#else
1093  m_dLambda              = pSrc->m_dLambda;
1094#endif
1095  for (i = 0; i < 2; i++)
1096  {
1097    for (j = 0; j < MAX_NUM_REF; j++)
1098    {
1099      for (k =0; k < MAX_NUM_REF; k++)
1100      {
1101        m_abEqualRef[i][j][k] = pSrc->m_abEqualRef[i][j][k];
1102      }
1103    }
1104  }
1105
1106  m_uiTLayer                      = pSrc->m_uiTLayer;
1107  m_bTLayerSwitchingFlag          = pSrc->m_bTLayerSwitchingFlag;
1108
1109  m_sliceMode                   = pSrc->m_sliceMode;
1110  m_sliceArgument               = pSrc->m_sliceArgument;
1111  m_sliceCurStartCUAddr         = pSrc->m_sliceCurStartCUAddr;
1112  m_sliceCurEndCUAddr           = pSrc->m_sliceCurEndCUAddr;
1113  m_sliceIdx                    = pSrc->m_sliceIdx;
1114  m_sliceSegmentMode            = pSrc->m_sliceSegmentMode;
1115  m_sliceSegmentArgument        = pSrc->m_sliceSegmentArgument; 
1116  m_sliceSegmentCurStartCUAddr  = pSrc->m_sliceSegmentCurStartCUAddr;
1117  m_sliceSegmentCurEndCUAddr    = pSrc->m_sliceSegmentCurEndCUAddr;
1118  m_nextSlice                    = pSrc->m_nextSlice;
1119  m_nextSliceSegment             = pSrc->m_nextSliceSegment;
1120  for ( Int e=0 ; e<2 ; e++ )
1121  {
1122    for ( Int n=0 ; n<MAX_NUM_REF ; n++ )
1123    {
1124      memcpy(m_weightPredTable[e][n], pSrc->m_weightPredTable[e][n], sizeof(wpScalingParam)*3 );
1125    }
1126  }
1127  m_saoEnabledFlag = pSrc->m_saoEnabledFlag; 
1128  m_saoEnabledFlagChroma = pSrc->m_saoEnabledFlagChroma;
1129  m_cabacInitFlag                = pSrc->m_cabacInitFlag;
1130  m_numEntryPointOffsets  = pSrc->m_numEntryPointOffsets;
1131
1132  m_bLMvdL1Zero = pSrc->m_bLMvdL1Zero;
1133  m_LFCrossSliceBoundaryFlag = pSrc->m_LFCrossSliceBoundaryFlag;
1134  m_enableTMVPFlag                = pSrc->m_enableTMVPFlag;
1135  m_maxNumMergeCand               = pSrc->m_maxNumMergeCand;
1136}
1137
1138Int TComSlice::m_prevPOC = 0;
1139
1140/** Function for setting the slice's temporal layer ID and corresponding temporal_layer_switching_point_flag.
1141 * \param uiTLayer Temporal layer ID of the current slice
1142 * The decoder calls this function to set temporal_layer_switching_point_flag for each temporal layer based on
1143 * the SPS's temporal_id_nesting_flag and the parsed PPS.  Then, current slice's temporal layer ID and
1144 * temporal_layer_switching_point_flag is set accordingly.
1145 */
1146Void TComSlice::setTLayerInfo( UInt uiTLayer )
1147{
1148  m_uiTLayer = uiTLayer;
1149}
1150
1151/** Function for checking if this is a switching-point
1152*/
1153Bool TComSlice::isTemporalLayerSwitchingPoint( TComList<TComPic*>& rcListPic )
1154{
1155  TComPic* rpcPic;
1156  // loop through all pictures in the reference picture buffer
1157  TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1158  while ( iterPic != rcListPic.end())
1159  {
1160    rpcPic = *(iterPic++);
1161    if(rpcPic->getSlice(0)->isReferenced() && rpcPic->getPOC() != getPOC())
1162    {
1163      if(rpcPic->getTLayer() >= getTLayer())
1164      {
1165        return false;
1166      }
1167    }
1168  }
1169  return true;
1170}
1171
1172/** Function for checking if this is a STSA candidate
1173 */
1174Bool TComSlice::isStepwiseTemporalLayerSwitchingPointCandidate( TComList<TComPic*>& rcListPic )
1175{
1176    TComPic* rpcPic;
1177   
1178    TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1179    while ( iterPic != rcListPic.end())
1180    {
1181        rpcPic = *(iterPic++);
1182        if(rpcPic->getSlice(0)->isReferenced() &&  (rpcPic->getUsedByCurr()==true) && rpcPic->getPOC() != getPOC())
1183        {
1184            if(rpcPic->getTLayer() >= getTLayer())
1185            {
1186                return false;
1187            }
1188        }
1189    }
1190    return true;
1191}
1192
1193/** Function for applying picture marking based on the Reference Picture Set in pReferencePictureSet.
1194*/
1195Void TComSlice::applyReferencePictureSet( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet)
1196{
1197  TComPic* rpcPic;
1198  Int i, isReference;
1199
1200  // loop through all pictures in the reference picture buffer
1201  TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1202  while ( iterPic != rcListPic.end())
1203  {
1204    rpcPic = *(iterPic++);
1205
1206    if(!rpcPic->getSlice( 0 )->isReferenced())
1207    {
1208      continue;
1209    }
1210
1211    isReference = 0;
1212    // loop through all pictures in the Reference Picture Set
1213    // to see if the picture should be kept as reference picture
1214    for(i=0;i<pReferencePictureSet->getNumberOfPositivePictures()+pReferencePictureSet->getNumberOfNegativePictures();i++)
1215    {
1216      if(!rpcPic->getIsLongTerm() && rpcPic->getPicSym()->getSlice(0)->getPOC() == this->getPOC() + pReferencePictureSet->getDeltaPOC(i))
1217      {
1218        isReference = 1;
1219        rpcPic->setUsedByCurr(pReferencePictureSet->getUsed(i));
1220        rpcPic->setIsLongTerm(0);
1221      }
1222    }
1223    for(;i<pReferencePictureSet->getNumberOfPictures();i++)
1224    {
1225      if(pReferencePictureSet->getCheckLTMSBPresent(i)==true)
1226      {
1227        if(rpcPic->getIsLongTerm() && (rpcPic->getPicSym()->getSlice(0)->getPOC()) == pReferencePictureSet->getPOC(i))
1228        {
1229          isReference = 1;
1230          rpcPic->setUsedByCurr(pReferencePictureSet->getUsed(i));
1231        }
1232      }
1233      else 
1234      {
1235        if(rpcPic->getIsLongTerm() && (rpcPic->getPicSym()->getSlice(0)->getPOC()%(1<<rpcPic->getPicSym()->getSlice(0)->getSPS()->getBitsForPOC())) == pReferencePictureSet->getPOC(i)%(1<<rpcPic->getPicSym()->getSlice(0)->getSPS()->getBitsForPOC()))
1236        {
1237          isReference = 1;
1238          rpcPic->setUsedByCurr(pReferencePictureSet->getUsed(i));
1239        }
1240      }
1241
1242    }
1243    // mark the picture as "unused for reference" if it is not in
1244    // the Reference Picture Set
1245    if(rpcPic->getPicSym()->getSlice(0)->getPOC() != this->getPOC() && isReference == 0)   
1246    {           
1247      rpcPic->getSlice( 0 )->setReferenced( false );   
1248      rpcPic->setUsedByCurr(0);
1249      rpcPic->setIsLongTerm(0);
1250    }
1251    //check that pictures of higher temporal layers are not used
1252    assert(rpcPic->getSlice( 0 )->isReferenced()==0||rpcPic->getUsedByCurr()==0||rpcPic->getTLayer()<=this->getTLayer());
1253    //check that pictures of higher or equal temporal layer are not in the RPS if the current picture is a TSA picture
1254    if(this->getNalUnitType() == NAL_UNIT_CODED_SLICE_TLA_R || this->getNalUnitType() == NAL_UNIT_CODED_SLICE_TSA_N)
1255    {
1256      assert(rpcPic->getSlice( 0 )->isReferenced()==0||rpcPic->getTLayer()<this->getTLayer());
1257    }
1258    //check that pictures marked as temporal layer non-reference pictures are not used for reference
1259    if(rpcPic->getPicSym()->getSlice(0)->getPOC() != this->getPOC() && rpcPic->getTLayer()==this->getTLayer())
1260    {
1261      assert(rpcPic->getSlice( 0 )->isReferenced()==0||rpcPic->getUsedByCurr()==0||rpcPic->getSlice( 0 )->getTemporalLayerNonReferenceFlag()==false);
1262    }
1263  }
1264}
1265
1266/** Function for applying picture marking based on the Reference Picture Set in pReferencePictureSet.
1267*/
1268Int TComSlice::checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool printErrors, Int pocRandomAccess)
1269{
1270  TComPic* rpcPic;
1271  Int i, isAvailable;
1272  Int atLeastOneLost = 0;
1273  Int atLeastOneRemoved = 0;
1274  Int iPocLost = 0;
1275
1276  // loop through all long-term pictures in the Reference Picture Set
1277  // to see if the picture should be kept as reference picture
1278  for(i=pReferencePictureSet->getNumberOfNegativePictures()+pReferencePictureSet->getNumberOfPositivePictures();i<pReferencePictureSet->getNumberOfPictures();i++)
1279  {
1280    isAvailable = 0;
1281    // loop through all pictures in the reference picture buffer
1282    TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1283    while ( iterPic != rcListPic.end())
1284    {
1285      rpcPic = *(iterPic++);
1286      if(pReferencePictureSet->getCheckLTMSBPresent(i)==true)
1287      {
1288        if(rpcPic->getIsLongTerm() && (rpcPic->getPicSym()->getSlice(0)->getPOC()) == pReferencePictureSet->getPOC(i) && rpcPic->getSlice(0)->isReferenced())
1289        {
1290          isAvailable = 1;
1291        }
1292      }
1293      else 
1294      {
1295        if(rpcPic->getIsLongTerm() && (rpcPic->getPicSym()->getSlice(0)->getPOC()%(1<<rpcPic->getPicSym()->getSlice(0)->getSPS()->getBitsForPOC())) == pReferencePictureSet->getPOC(i)%(1<<rpcPic->getPicSym()->getSlice(0)->getSPS()->getBitsForPOC()) && rpcPic->getSlice(0)->isReferenced())
1296        {
1297          isAvailable = 1;
1298        }
1299      }
1300    }
1301    // if there was no such long-term check the short terms
1302    if(!isAvailable)
1303    {
1304      iterPic = rcListPic.begin();
1305      while ( iterPic != rcListPic.end())
1306      {
1307        rpcPic = *(iterPic++);
1308
1309        Int pocCycle = 1 << rpcPic->getPicSym()->getSlice(0)->getSPS()->getBitsForPOC();
1310        Int curPoc = rpcPic->getPicSym()->getSlice(0)->getPOC();
1311        Int refPoc = pReferencePictureSet->getPOC(i);
1312        if (!pReferencePictureSet->getCheckLTMSBPresent(i))
1313        {
1314          curPoc = curPoc % pocCycle;
1315          refPoc = refPoc % pocCycle;
1316        }
1317       
1318        if (rpcPic->getSlice(0)->isReferenced() && curPoc == refPoc)
1319        {
1320          isAvailable = 1;
1321          rpcPic->setIsLongTerm(1);
1322          break;
1323        }
1324      }
1325    }
1326    // report that a picture is lost if it is in the Reference Picture Set
1327    // but not available as reference picture
1328    if(isAvailable == 0)   
1329    {           
1330      if (this->getPOC() + pReferencePictureSet->getDeltaPOC(i) >= pocRandomAccess)
1331      {
1332        if(!pReferencePictureSet->getUsed(i) )
1333        {
1334          if(printErrors)
1335          {
1336            printf("\nLong-term reference picture with POC = %3d seems to have been removed or not correctly decoded.", this->getPOC() + pReferencePictureSet->getDeltaPOC(i));
1337          }
1338          atLeastOneRemoved = 1;
1339        }
1340        else
1341        {
1342          if(printErrors)
1343          {
1344            printf("\nLong-term reference picture with POC = %3d is lost or not correctly decoded!", this->getPOC() + pReferencePictureSet->getDeltaPOC(i));
1345          }
1346          atLeastOneLost = 1;
1347          iPocLost=this->getPOC() + pReferencePictureSet->getDeltaPOC(i);
1348        }
1349      }
1350    }
1351  } 
1352  // loop through all short-term pictures in the Reference Picture Set
1353  // to see if the picture should be kept as reference picture
1354  for(i=0;i<pReferencePictureSet->getNumberOfNegativePictures()+pReferencePictureSet->getNumberOfPositivePictures();i++)
1355  {
1356    isAvailable = 0;
1357    // loop through all pictures in the reference picture buffer
1358    TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1359    while ( iterPic != rcListPic.end())
1360    {
1361      rpcPic = *(iterPic++);
1362
1363      if(!rpcPic->getIsLongTerm() && rpcPic->getPicSym()->getSlice(0)->getPOC() == this->getPOC() + pReferencePictureSet->getDeltaPOC(i) && rpcPic->getSlice(0)->isReferenced())
1364      {
1365        isAvailable = 1;
1366      }
1367    }
1368    // report that a picture is lost if it is in the Reference Picture Set
1369    // but not available as reference picture
1370    if(isAvailable == 0)   
1371    {           
1372      if (this->getPOC() + pReferencePictureSet->getDeltaPOC(i) >= pocRandomAccess)
1373      {
1374        if(!pReferencePictureSet->getUsed(i) )
1375        {
1376          if(printErrors)
1377          {
1378            printf("\nShort-term reference picture with POC = %3d seems to have been removed or not correctly decoded.", this->getPOC() + pReferencePictureSet->getDeltaPOC(i));
1379          }
1380          atLeastOneRemoved = 1;
1381        }
1382        else
1383        {
1384          if(printErrors)
1385          {
1386            printf("\nShort-term reference picture with POC = %3d is lost or not correctly decoded!", this->getPOC() + pReferencePictureSet->getDeltaPOC(i));
1387          }
1388          atLeastOneLost = 1;
1389          iPocLost=this->getPOC() + pReferencePictureSet->getDeltaPOC(i);
1390        }
1391      }
1392    }
1393  }   
1394  if(atLeastOneLost)
1395  {
1396    return iPocLost+1;
1397  }
1398  if(atLeastOneRemoved)
1399  {
1400    return -2;
1401  }
1402  else
1403  {
1404    return 0;
1405  }
1406}
1407
1408/** Function for constructing an explicit Reference Picture Set out of the available pictures in a referenced Reference Picture Set
1409*/
1410#if FIX1071
1411Void TComSlice::createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool isRAP)
1412#else
1413Void TComSlice::createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet)
1414#endif
1415{
1416  TComPic* rpcPic;
1417  Int i, j;
1418  Int k = 0;
1419  Int nrOfNegativePictures = 0;
1420  Int nrOfPositivePictures = 0;
1421  TComReferencePictureSet* pcRPS = this->getLocalRPS();
1422
1423  // loop through all pictures in the Reference Picture Set
1424  for(i=0;i<pReferencePictureSet->getNumberOfPictures();i++)
1425  {
1426    j = 0;
1427    // loop through all pictures in the reference picture buffer
1428    TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1429    while ( iterPic != rcListPic.end())
1430    {
1431      j++;
1432      rpcPic = *(iterPic++);
1433
1434      if(rpcPic->getPicSym()->getSlice(0)->getPOC() == this->getPOC() + pReferencePictureSet->getDeltaPOC(i) && rpcPic->getSlice(0)->isReferenced())
1435      {
1436        // This picture exists as a reference picture
1437        // and should be added to the explicit Reference Picture Set
1438        pcRPS->setDeltaPOC(k, pReferencePictureSet->getDeltaPOC(i));
1439#if FIX1071
1440        pcRPS->setUsed(k, pReferencePictureSet->getUsed(i) && (!isRAP));
1441#else
1442        pcRPS->setUsed(k, pReferencePictureSet->getUsed(i));
1443#endif
1444        if(pcRPS->getDeltaPOC(k) < 0)
1445        {
1446          nrOfNegativePictures++;
1447        }
1448        else
1449        {
1450          nrOfPositivePictures++;
1451        }
1452        k++;
1453      }
1454    }
1455  }
1456  pcRPS->setNumberOfNegativePictures(nrOfNegativePictures);
1457  pcRPS->setNumberOfPositivePictures(nrOfPositivePictures);
1458  pcRPS->setNumberOfPictures(nrOfNegativePictures+nrOfPositivePictures);
1459  // This is a simplistic inter rps example. A smarter encoder will look for a better reference RPS to do the
1460  // inter RPS prediction with.  Here we just use the reference used by pReferencePictureSet.
1461  // If pReferencePictureSet is not inter_RPS_predicted, then inter_RPS_prediction is for the current RPS also disabled.
1462  if (!pReferencePictureSet->getInterRPSPrediction())
1463  {
1464    pcRPS->setInterRPSPrediction(false);
1465    pcRPS->setNumRefIdc(0);
1466  }
1467  else
1468  {
1469    Int rIdx =  this->getRPSidx() - pReferencePictureSet->getDeltaRIdxMinus1() - 1;
1470    Int deltaRPS = pReferencePictureSet->getDeltaRPS();
1471    TComReferencePictureSet* pcRefRPS = this->getSPS()->getRPSList()->getReferencePictureSet(rIdx);
1472    Int iRefPics = pcRefRPS->getNumberOfPictures();
1473    Int iNewIdc=0;
1474    for(i=0; i<= iRefPics; i++) 
1475    {
1476      Int deltaPOC = ((i != iRefPics)? pcRefRPS->getDeltaPOC(i) : 0);  // check if the reference abs POC is >= 0
1477      Int iRefIdc = 0;
1478      for (j=0; j < pcRPS->getNumberOfPictures(); j++) // loop through the  pictures in the new RPS
1479      {
1480        if ( (deltaPOC + deltaRPS) == pcRPS->getDeltaPOC(j))
1481        {
1482          if (pcRPS->getUsed(j))
1483          {
1484            iRefIdc = 1;
1485          }
1486          else
1487          {
1488            iRefIdc = 2;
1489          }
1490        }
1491      }
1492      pcRPS->setRefIdc(i, iRefIdc);
1493      iNewIdc++;
1494    }
1495    pcRPS->setInterRPSPrediction(true);
1496    pcRPS->setNumRefIdc(iNewIdc);
1497    pcRPS->setDeltaRPS(deltaRPS); 
1498    pcRPS->setDeltaRIdxMinus1(pReferencePictureSet->getDeltaRIdxMinus1() + this->getSPS()->getRPSList()->getNumberOfReferencePictureSets() - this->getRPSidx());
1499  }
1500
1501  this->setRPS(pcRPS);
1502  this->setRPSidx(-1);
1503}
1504
1505/** get AC and DC values for weighted pred
1506 * \param *wp
1507 * \returns Void
1508 */
1509Void  TComSlice::getWpAcDcParam(wpACDCParam *&wp)
1510{
1511  wp = m_weightACDCParam;
1512}
1513
1514/** init AC and DC values for weighted pred
1515 * \returns Void
1516 */
1517Void  TComSlice::initWpAcDcParam()
1518{
1519  for(Int iComp = 0; iComp < 3; iComp++ )
1520  {
1521    m_weightACDCParam[iComp].iAC = 0;
1522    m_weightACDCParam[iComp].iDC = 0;
1523  }
1524}
1525
1526/** get WP tables for weighted pred
1527 * \param RefPicList
1528 * \param iRefIdx
1529 * \param *&wpScalingParam
1530 * \returns Void
1531 */
1532Void  TComSlice::getWpScaling( RefPicList e, Int iRefIdx, wpScalingParam *&wp )
1533{
1534  wp = m_weightPredTable[e][iRefIdx];
1535}
1536
1537/** reset Default WP tables settings : no weight.
1538 * \param wpScalingParam
1539 * \returns Void
1540 */
1541Void  TComSlice::resetWpScaling()
1542{
1543  for ( Int e=0 ; e<2 ; e++ )
1544  {
1545    for ( Int i=0 ; i<MAX_NUM_REF ; i++ )
1546    {
1547      for ( Int yuv=0 ; yuv<3 ; yuv++ )
1548      {
1549        wpScalingParam  *pwp = &(m_weightPredTable[e][i][yuv]);
1550        pwp->bPresentFlag      = false;
1551        pwp->uiLog2WeightDenom = 0;
1552        pwp->uiLog2WeightDenom = 0;
1553        pwp->iWeight           = 1;
1554        pwp->iOffset           = 0;
1555      }
1556    }
1557  }
1558}
1559
1560/** init WP table
1561 * \returns Void
1562 */
1563Void  TComSlice::initWpScaling()
1564{
1565  for ( Int e=0 ; e<2 ; e++ )
1566  {
1567    for ( Int i=0 ; i<MAX_NUM_REF ; i++ )
1568    {
1569      for ( Int yuv=0 ; yuv<3 ; yuv++ )
1570      {
1571        wpScalingParam  *pwp = &(m_weightPredTable[e][i][yuv]);
1572        if ( !pwp->bPresentFlag ) 
1573        {
1574          // Inferring values not present :
1575          pwp->iWeight = (1 << pwp->uiLog2WeightDenom);
1576          pwp->iOffset = 0;
1577        }
1578
1579        pwp->w      = pwp->iWeight;
1580        Int bitDepth = yuv ? g_bitDepthC : g_bitDepthY;
1581        pwp->o      = pwp->iOffset << (bitDepth-8);
1582        pwp->shift  = pwp->uiLog2WeightDenom;
1583        pwp->round  = (pwp->uiLog2WeightDenom>=1) ? (1 << (pwp->uiLog2WeightDenom-1)) : (0);
1584      }
1585    }
1586  }
1587}
1588
1589// ------------------------------------------------------------------------------------------------
1590// Video parameter set (VPS)
1591// ------------------------------------------------------------------------------------------------
1592TComVPS::TComVPS()
1593: m_VPSId                     (  0)
1594, m_uiMaxTLayers              (  1)
1595, m_uiMaxLayers               (  1)
1596, m_bTemporalIdNestingFlag    (false)
1597, m_numHrdParameters          (  0)
1598#if !VPS_RENAME
1599, m_maxNuhReservedZeroLayerId (  0)
1600#endif
1601, m_hrdParameters             (NULL)
1602, m_hrdOpSetIdx               (NULL)
1603, m_cprmsPresentFlag          (NULL)
1604#if VPS_RENAME
1605, m_maxLayerId                (0)
1606, m_numLayerSets              (0)
1607#endif
1608#if VPS_EXTN_OP_LAYER_SETS
1609, m_numOutputLayerSets        (0) 
1610#endif
1611#if VPS_PROFILE_OUTPUT_LAYERS
1612, m_numProfileTierLevel       (0)
1613, m_moreOutputLayerSetsThanDefaultFlag (false)
1614, m_numAddOutputLayerSets     (0)
1615, m_defaultOneTargetOutputLayerFlag    (false)
1616#endif
1617#if VPS_VUI_BITRATE_PICRATE
1618, m_bitRatePresentVpsFlag     (false)
1619, m_picRatePresentVpsFlag     (false)
1620#endif
1621{
1622  for( Int i = 0; i < MAX_TLAYER; i++)
1623  {
1624    m_numReorderPics[i] = 0;
1625    m_uiMaxDecPicBuffering[i] = 1; 
1626    m_uiMaxLatencyIncrease[i] = 0;
1627  }
1628#if VPS_EXTN_MASK_AND_DIM_INFO
1629  m_avcBaseLayerFlag = false;
1630  m_splittingFlag = false;
1631  ::memset(m_scalabilityMask, 0, sizeof(m_scalabilityMask));
1632  ::memset(m_dimensionIdLen, 0, sizeof(m_dimensionIdLen));
1633  m_nuhLayerIdPresentFlag = false;
1634  ::memset(m_layerIdInNuh, 0, sizeof(m_layerIdInNuh));
1635  ::memset(m_dimensionId, 0, sizeof(m_dimensionId));
1636
1637  m_numScalabilityTypes = 0;
1638  ::memset(m_layerIdInVps, 0, sizeof(m_layerIdInVps));
1639#endif
1640#if VPS_EXTN_PROFILE_INFO
1641  ::memset(m_profilePresentFlag, 0, sizeof(m_profilePresentFlag));
1642  ::memset(m_profileLayerSetRef, 0, sizeof(m_profileLayerSetRef));
1643#endif
1644#if VPS_EXTN_OP_LAYER_SETS
1645  ::memset(m_layerIdIncludedFlag, 0, sizeof(m_layerIdIncludedFlag));
1646  // Consider dynamic allocation for outputLayerSetIdx and outputLayerFlag
1647  ::memset(m_outputLayerSetIdx, 0, sizeof(m_outputLayerSetIdx));
1648  ::memset(m_outputLayerFlag, 0, sizeof(m_outputLayerFlag));
1649#endif
1650#if VPS_EXTN_DIRECT_REF_LAYERS
1651  ::memset(m_directDependencyFlag, 0, sizeof(m_directDependencyFlag));
1652  ::memset(m_numDirectRefLayers,   0, sizeof(m_numDirectRefLayers  ));
1653  ::memset(m_refLayerId,           0, sizeof(m_refLayerId          ));
1654#if M0457_PREDICTION_INDICATIONS
1655  m_directDepTypeLen = 2;
1656  ::memset(m_directDependencyType, 0, sizeof(m_directDependencyType));
1657#endif
1658#endif
1659#if DERIVE_LAYER_ID_LIST_VARIABLES
1660  ::memset(m_layerSetLayerIdList,  0, sizeof(m_layerSetLayerIdList));
1661  ::memset(m_numLayerInIdList,     0, sizeof(m_numLayerInIdList   )); 
1662#endif
1663#if VPS_PROFILE_OUTPUT_LAYERS
1664  ::memset(m_profileLevelTierIdx,  0, sizeof(m_profileLevelTierIdx));
1665#endif
1666#if JCTVC_M0458_INTERLAYER_RPS_SIG
1667  m_maxOneActiveRefLayerFlag = true;
1668#endif
1669#if JCTVC_M0203_INTERLAYER_PRED_IDC
1670#if N0120_MAX_TID_REF_PRESENT_FLAG
1671  m_maxTidIlRefPicsPlus1PresentFlag = true;
1672#endif
1673  for( Int i = 0; i < MAX_VPS_LAYER_ID_PLUS1 - 1; i++)
1674  {
1675    m_maxSublayerForIlpPlus1[i] = m_uiMaxTLayers + 1;
1676  }
1677#endif
1678#if N0160_TILE_BOUNDARY_ALIGNED_FLAG
1679   ::memset(m_tileBoundariesAlignedFlag,  0, sizeof(m_tileBoundariesAlignedFlag));
1680#endif
1681#if N0160_VUI_EXT_ILP_REF
1682   m_numIlpRestrictedRefLayers = false;
1683   ::memset(m_minSpatialSegmentOffsetPlus1,  0, sizeof(m_minSpatialSegmentOffsetPlus1));
1684   ::memset(m_ctuBasedOffsetEnabledFlag,     0, sizeof(m_ctuBasedOffsetEnabledFlag));
1685   ::memset(m_minHorizontalCtuOffsetPlus1,   0, sizeof(m_minHorizontalCtuOffsetPlus1));
1686#endif
1687#if VPS_VUI_BITRATE_PICRATE 
1688  ::memset(m_bitRatePresentFlag, 0, sizeof(m_bitRatePresentFlag));
1689  ::memset(m_picRatePresentFlag, 0, sizeof(m_picRatePresentFlag));
1690  ::memset(m_avgBitRate        , 0, sizeof(m_avgBitRate)        );
1691  ::memset(m_maxBitRate        , 0, sizeof(m_maxBitRate)        );
1692  ::memset(m_constPicRateIdc   , 0, sizeof(m_constPicRateIdc)   );
1693  ::memset(m_avgPicRate        , 0, sizeof(m_avgPicRate)        );
1694#endif
1695}
1696
1697TComVPS::~TComVPS()
1698{
1699  if( m_hrdParameters    != NULL )     delete[] m_hrdParameters;
1700  if( m_hrdOpSetIdx      != NULL )     delete[] m_hrdOpSetIdx;
1701  if( m_cprmsPresentFlag != NULL )     delete[] m_cprmsPresentFlag;
1702}
1703#if DERIVE_LAYER_ID_LIST_VARIABLES
1704Void TComVPS::deriveLayerIdListVariables()
1705{
1706  // For layer 0
1707  setNumLayersInIdList(0, 1);
1708  setLayerSetLayerIdList(0, 0, 0);
1709
1710  // For other layers
1711  Int i, m, n;
1712  for( i = 1; i <= getNumLayerSets() - 1; i++ )
1713  {
1714    n = 0;
1715    for( m = 0; m <= this->getMaxLayerId(); m++)
1716    {
1717      if(this->getLayerIdIncludedFlag(i, m))
1718      {
1719        setLayerSetLayerIdList(i, n, m);
1720        n++;
1721      }
1722    }
1723    setNumLayersInIdList(i, n);
1724  }
1725}
1726#endif
1727// ------------------------------------------------------------------------------------------------
1728// Sequence parameter set (SPS)
1729// ------------------------------------------------------------------------------------------------
1730
1731TComSPS::TComSPS()
1732: m_SPSId                     (  0)
1733, m_VPSId                     (  0)
1734, m_chromaFormatIdc           (CHROMA_420)
1735, m_uiMaxTLayers              (  1)
1736// Structure
1737, m_picWidthInLumaSamples     (352)
1738, m_picHeightInLumaSamples    (288)
1739, m_log2MinCodingBlockSize    (  0)
1740, m_log2DiffMaxMinCodingBlockSize (0)
1741, m_uiMaxCUWidth              ( 32)
1742, m_uiMaxCUHeight             ( 32)
1743, m_uiMaxCUDepth              (  3)
1744, m_bLongTermRefsPresent      (false)
1745, m_uiQuadtreeTULog2MaxSize   (  0)
1746, m_uiQuadtreeTULog2MinSize   (  0)
1747, m_uiQuadtreeTUMaxDepthInter (  0)
1748, m_uiQuadtreeTUMaxDepthIntra (  0)
1749// Tool list
1750, m_usePCM                   (false)
1751, m_pcmLog2MaxSize            (  5)
1752, m_uiPCMLog2MinSize          (  7)
1753, m_bitDepthY                 (  8)
1754, m_bitDepthC                 (  8)
1755, m_qpBDOffsetY               (  0)
1756, m_qpBDOffsetC               (  0)
1757, m_useLossless               (false)
1758, m_uiPCMBitDepthLuma         (  8)
1759, m_uiPCMBitDepthChroma       (  8)
1760, m_bPCMFilterDisableFlag     (false)
1761, m_uiBitsForPOC              (  8)
1762, m_numLongTermRefPicSPS    (  0) 
1763, m_uiMaxTrSize               ( 32)
1764, m_bUseSAO                   (false) 
1765, m_bTemporalIdNestingFlag    (false)
1766, m_scalingListEnabledFlag    (false)
1767, m_useStrongIntraSmoothing   (false)
1768, m_vuiParametersPresentFlag  (false)
1769, m_vuiParameters             ()
1770#if M0463_VUI_EXT_ILP_REF
1771, m_interViewMvVertConstraintFlag (false)
1772, m_numIlpRestrictedRefLayers ( 0 )
1773#endif
1774#if SVC_EXTENSION
1775, m_layerId(0)
1776#endif
1777#if SCALED_REF_LAYER_OFFSETS
1778, m_numScaledRefLayerOffsets  (0)
1779#endif
1780{
1781  for ( Int i = 0; i < MAX_TLAYER; i++ )
1782  {
1783    m_uiMaxLatencyIncrease[i] = 0;
1784    m_uiMaxDecPicBuffering[i] = 1;
1785    m_numReorderPics[i]       = 0;
1786  }
1787  m_scalingList = new TComScalingList;
1788  ::memset(m_ltRefPicPocLsbSps, 0, sizeof(m_ltRefPicPocLsbSps));
1789  ::memset(m_usedByCurrPicLtSPSFlag, 0, sizeof(m_usedByCurrPicLtSPSFlag));
1790#if M0463_VUI_EXT_ILP_REF
1791  for (Int i = 0; i < MAX_LAYERS; i++ )
1792  {
1793    m_minSpatialSegmentOffsetPlus1[ i ] = 0;
1794    m_ctuBasedOffsetEnabledFlag   [ i ] = false;
1795    m_minHorizontalCtuOffsetPlus1 [ i ] = 0;
1796  }
1797#endif
1798}
1799
1800TComSPS::~TComSPS()
1801{
1802  delete m_scalingList;
1803  m_RPSList.destroy();
1804}
1805
1806Void  TComSPS::createRPSList( Int numRPS )
1807{ 
1808  m_RPSList.destroy();
1809  m_RPSList.create(numRPS);
1810}
1811
1812Void TComSPS::setHrdParameters( UInt frameRate, UInt numDU, UInt bitRate, Bool randomAccess )
1813{
1814  if( !getVuiParametersPresentFlag() )
1815  {
1816    return;
1817  }
1818
1819  TComVUI *vui = getVuiParameters();
1820  TComHRD *hrd = vui->getHrdParameters();
1821
1822  TimingInfo *timingInfo = vui->getTimingInfo();
1823#if TIMING_INFO_NONZERO_LAYERID_SPS
1824  if( getLayerId() > 0 )
1825  {
1826    timingInfo->setTimingInfoPresentFlag( false );
1827  }
1828  else
1829  {
1830#endif
1831    timingInfo->setTimingInfoPresentFlag( true );
1832    switch( frameRate )
1833    {
1834    case 24:
1835      timingInfo->setNumUnitsInTick( 1125000 );    timingInfo->setTimeScale    ( 27000000 );
1836      break;
1837    case 25:
1838      timingInfo->setNumUnitsInTick( 1080000 );    timingInfo->setTimeScale    ( 27000000 );
1839      break;
1840    case 30:
1841      timingInfo->setNumUnitsInTick( 900900 );     timingInfo->setTimeScale    ( 27000000 );
1842      break;
1843    case 50:
1844      timingInfo->setNumUnitsInTick( 540000 );     timingInfo->setTimeScale    ( 27000000 );
1845      break;
1846    case 60:
1847      timingInfo->setNumUnitsInTick( 450450 );     timingInfo->setTimeScale    ( 27000000 );
1848      break;
1849    default:
1850      timingInfo->setNumUnitsInTick( 1001 );       timingInfo->setTimeScale    ( 60000 );
1851      break;
1852    }
1853
1854    Bool rateCnt = ( bitRate > 0 );
1855    hrd->setNalHrdParametersPresentFlag( rateCnt );
1856    hrd->setVclHrdParametersPresentFlag( rateCnt );
1857
1858    hrd->setSubPicCpbParamsPresentFlag( ( numDU > 1 ) );
1859
1860    if( hrd->getSubPicCpbParamsPresentFlag() )
1861    {
1862      hrd->setTickDivisorMinus2( 100 - 2 );                          //
1863      hrd->setDuCpbRemovalDelayLengthMinus1( 7 );                    // 8-bit precision ( plus 1 for last DU in AU )
1864      hrd->setSubPicCpbParamsInPicTimingSEIFlag( true );
1865      hrd->setDpbOutputDelayDuLengthMinus1( 5 + 7 );                 // With sub-clock tick factor of 100, at least 7 bits to have the same value as AU dpb delay
1866    }
1867    else
1868    {
1869      hrd->setSubPicCpbParamsInPicTimingSEIFlag( false ); 
1870    }
1871
1872    hrd->setBitRateScale( 4 );                                       // in units of 2~( 6 + 4 ) = 1,024 bps
1873    hrd->setCpbSizeScale( 6 );                                       // in units of 2~( 4 + 4 ) = 1,024 bit
1874    hrd->setDuCpbSizeScale( 6 );                                       // in units of 2~( 4 + 4 ) = 1,024 bit
1875 
1876    hrd->setInitialCpbRemovalDelayLengthMinus1(15);                  // assuming 0.5 sec, log2( 90,000 * 0.5 ) = 16-bit
1877    if( randomAccess )
1878    {
1879      hrd->setCpbRemovalDelayLengthMinus1(5);                        // 32 = 2^5 (plus 1)
1880      hrd->setDpbOutputDelayLengthMinus1 (5);                        // 32 + 3 = 2^6
1881    }
1882    else
1883    {
1884      hrd->setCpbRemovalDelayLengthMinus1(9);                        // max. 2^10
1885      hrd->setDpbOutputDelayLengthMinus1 (9);                        // max. 2^10
1886    }
1887
1888  /*
1889     Note: only the case of "vps_max_temporal_layers_minus1 = 0" is supported.
1890  */
1891    Int i, j;
1892    UInt birateValue, cpbSizeValue;
1893    UInt ducpbSizeValue;
1894    UInt duBitRateValue = 0;
1895
1896    for( i = 0; i < MAX_TLAYER; i ++ )
1897    {
1898      hrd->setFixedPicRateFlag( i, 1 );
1899      hrd->setPicDurationInTcMinus1( i, 0 );
1900      hrd->setLowDelayHrdFlag( i, 0 );
1901      hrd->setCpbCntMinus1( i, 0 );
1902
1903      birateValue  = bitRate;
1904      cpbSizeValue = bitRate;                                     // 1 second
1905      ducpbSizeValue = bitRate/numDU;
1906      duBitRateValue = bitRate;
1907      for( j = 0; j < ( hrd->getCpbCntMinus1( i ) + 1 ); j ++ )
1908      {
1909        hrd->setBitRateValueMinus1( i, j, 0, ( birateValue  - 1 ) );
1910        hrd->setCpbSizeValueMinus1( i, j, 0, ( cpbSizeValue - 1 ) );
1911        hrd->setDuCpbSizeValueMinus1( i, j, 0, ( ducpbSizeValue - 1 ) );
1912        hrd->setCbrFlag( i, j, 0, ( j == 0 ) );
1913
1914        hrd->setBitRateValueMinus1( i, j, 1, ( birateValue  - 1) );
1915        hrd->setCpbSizeValueMinus1( i, j, 1, ( cpbSizeValue - 1 ) );
1916        hrd->setDuCpbSizeValueMinus1( i, j, 1, ( ducpbSizeValue - 1 ) );
1917        hrd->setDuBitRateValueMinus1( i, j, 1, ( duBitRateValue - 1 ) );
1918        hrd->setCbrFlag( i, j, 1, ( j == 0 ) );
1919      }
1920    }
1921#if TIMING_INFO_NONZERO_LAYERID_SPS
1922  }
1923#endif
1924}
1925const Int TComSPS::m_winUnitX[]={1,2,2,1};
1926const Int TComSPS::m_winUnitY[]={1,2,1,1};
1927
1928TComPPS::TComPPS()
1929: m_PPSId                       (0)
1930, m_SPSId                       (0)
1931, m_picInitQPMinus26            (0)
1932, m_useDQP                      (false)
1933, m_bConstrainedIntraPred       (false)
1934, m_bSliceChromaQpFlag          (false)
1935, m_pcSPS                       (NULL)
1936, m_uiMaxCuDQPDepth             (0)
1937, m_uiMinCuDQPSize              (0)
1938, m_chromaCbQpOffset            (0)
1939, m_chromaCrQpOffset            (0)
1940, m_numRefIdxL0DefaultActive    (1)
1941, m_numRefIdxL1DefaultActive    (1)
1942, m_TransquantBypassEnableFlag  (false)
1943, m_useTransformSkip             (false)
1944, m_dependentSliceSegmentsEnabledFlag    (false)
1945, m_tilesEnabledFlag               (false)
1946, m_entropyCodingSyncEnabledFlag   (false)
1947, m_loopFilterAcrossTilesEnabledFlag  (true)
1948, m_uniformSpacingFlag           (0)
1949, m_iNumColumnsMinus1            (0)
1950, m_puiColumnWidth               (NULL)
1951, m_iNumRowsMinus1               (0)
1952, m_puiRowHeight                 (NULL)
1953, m_iNumSubstreams             (1)
1954, m_signHideFlag(0)
1955, m_cabacInitPresentFlag        (false)
1956, m_encCABACTableIdx            (I_SLICE)
1957, m_sliceHeaderExtensionPresentFlag    (false)
1958, m_loopFilterAcrossSlicesEnabledFlag (false)
1959, m_listsModificationPresentFlag(  0)
1960, m_numExtraSliceHeaderBits(0)
1961{
1962  m_scalingList = new TComScalingList;
1963}
1964
1965TComPPS::~TComPPS()
1966{
1967  if( m_iNumColumnsMinus1 > 0 && m_uniformSpacingFlag == 0 )
1968  {
1969    if (m_puiColumnWidth) delete [] m_puiColumnWidth; 
1970    m_puiColumnWidth = NULL;
1971  }
1972  if( m_iNumRowsMinus1 > 0 && m_uniformSpacingFlag == 0 )
1973  {
1974    if (m_puiRowHeight) delete [] m_puiRowHeight;
1975    m_puiRowHeight = NULL;
1976  }
1977  delete m_scalingList;
1978}
1979
1980TComReferencePictureSet::TComReferencePictureSet()
1981: m_numberOfPictures (0)
1982, m_numberOfNegativePictures (0)
1983, m_numberOfPositivePictures (0)
1984, m_numberOfLongtermPictures (0)
1985, m_interRPSPrediction (0) 
1986, m_deltaRIdxMinus1 (0)   
1987, m_deltaRPS (0) 
1988, m_numRefIdc (0) 
1989{
1990  ::memset( m_deltaPOC, 0, sizeof(m_deltaPOC) );
1991  ::memset( m_POC, 0, sizeof(m_POC) );
1992  ::memset( m_used, 0, sizeof(m_used) );
1993  ::memset( m_refIdc, 0, sizeof(m_refIdc) );
1994}
1995
1996TComReferencePictureSet::~TComReferencePictureSet()
1997{
1998}
1999
2000Void TComReferencePictureSet::setUsed(Int bufferNum, Bool used)
2001{
2002  m_used[bufferNum] = used;
2003}
2004
2005Void TComReferencePictureSet::setDeltaPOC(Int bufferNum, Int deltaPOC)
2006{
2007  m_deltaPOC[bufferNum] = deltaPOC;
2008}
2009
2010Void TComReferencePictureSet::setNumberOfPictures(Int numberOfPictures)
2011{
2012  m_numberOfPictures = numberOfPictures;
2013}
2014
2015Int TComReferencePictureSet::getUsed(Int bufferNum)
2016{
2017  return m_used[bufferNum];
2018}
2019
2020Int TComReferencePictureSet::getDeltaPOC(Int bufferNum)
2021{
2022  return m_deltaPOC[bufferNum];
2023}
2024
2025Int TComReferencePictureSet::getNumberOfPictures()
2026{
2027  return m_numberOfPictures;
2028}
2029
2030Int TComReferencePictureSet::getPOC(Int bufferNum)
2031{
2032  return m_POC[bufferNum];
2033}
2034
2035Void TComReferencePictureSet::setPOC(Int bufferNum, Int POC)
2036{
2037  m_POC[bufferNum] = POC;
2038}
2039
2040Bool TComReferencePictureSet::getCheckLTMSBPresent(Int bufferNum)
2041{
2042  return m_bCheckLTMSB[bufferNum];
2043}
2044
2045Void TComReferencePictureSet::setCheckLTMSBPresent(Int bufferNum, Bool b)
2046{
2047  m_bCheckLTMSB[bufferNum] = b;
2048}
2049
2050/** set the reference idc value at uiBufferNum entry to the value of iRefIdc
2051 * \param uiBufferNum
2052 * \param iRefIdc
2053 * \returns Void
2054 */
2055Void TComReferencePictureSet::setRefIdc(Int bufferNum, Int refIdc)
2056{
2057  m_refIdc[bufferNum] = refIdc;
2058}
2059
2060/** get the reference idc value at uiBufferNum
2061 * \param uiBufferNum
2062 * \returns Int
2063 */
2064Int  TComReferencePictureSet::getRefIdc(Int bufferNum)
2065{
2066  return m_refIdc[bufferNum];
2067}
2068
2069/** Sorts the deltaPOC and Used by current values in the RPS based on the deltaPOC values.
2070 *  deltaPOC values are sorted with -ve values before the +ve values.  -ve values are in decreasing order.
2071 *  +ve values are in increasing order.
2072 * \returns Void
2073 */
2074Void TComReferencePictureSet::sortDeltaPOC()
2075{
2076  // sort in increasing order (smallest first)
2077  for(Int j=1; j < getNumberOfPictures(); j++)
2078  { 
2079    Int deltaPOC = getDeltaPOC(j);
2080    Bool used = getUsed(j);
2081    for (Int k=j-1; k >= 0; k--)
2082    {
2083      Int temp = getDeltaPOC(k);
2084      if (deltaPOC < temp)
2085      {
2086        setDeltaPOC(k+1, temp);
2087        setUsed(k+1, getUsed(k));
2088        setDeltaPOC(k, deltaPOC);
2089        setUsed(k, used);
2090      }
2091    }
2092  }
2093  // flip the negative values to largest first
2094  Int numNegPics = getNumberOfNegativePictures();
2095  for(Int j=0, k=numNegPics-1; j < numNegPics>>1; j++, k--)
2096  { 
2097    Int deltaPOC = getDeltaPOC(j);
2098    Bool used = getUsed(j);
2099    setDeltaPOC(j, getDeltaPOC(k));
2100    setUsed(j, getUsed(k));
2101    setDeltaPOC(k, deltaPOC);
2102    setUsed(k, used);
2103  }
2104}
2105
2106/** Prints the deltaPOC and RefIdc (if available) values in the RPS.
2107 *  A "*" is added to the deltaPOC value if it is Used bu current.
2108 * \returns Void
2109 */
2110Void TComReferencePictureSet::printDeltaPOC()
2111{
2112  printf("DeltaPOC = { ");
2113  for(Int j=0; j < getNumberOfPictures(); j++)
2114  {
2115    printf("%d%s ", getDeltaPOC(j), (getUsed(j)==1)?"*":"");
2116  } 
2117  if (getInterRPSPrediction()) 
2118  {
2119    printf("}, RefIdc = { ");
2120    for(Int j=0; j < getNumRefIdc(); j++)
2121    {
2122      printf("%d ", getRefIdc(j));
2123    } 
2124  }
2125  printf("}\n");
2126}
2127
2128TComRPSList::TComRPSList()
2129:m_referencePictureSets (NULL)
2130{
2131}
2132
2133TComRPSList::~TComRPSList()
2134{
2135}
2136
2137Void TComRPSList::create( Int numberOfReferencePictureSets)
2138{
2139  m_numberOfReferencePictureSets = numberOfReferencePictureSets;
2140  m_referencePictureSets = new TComReferencePictureSet[numberOfReferencePictureSets];
2141}
2142
2143Void TComRPSList::destroy()
2144{
2145  if (m_referencePictureSets)
2146  {
2147    delete [] m_referencePictureSets;
2148  }
2149  m_numberOfReferencePictureSets = 0;
2150  m_referencePictureSets = NULL;
2151}
2152
2153
2154
2155TComReferencePictureSet* TComRPSList::getReferencePictureSet(Int referencePictureSetNum)
2156{
2157  return &m_referencePictureSets[referencePictureSetNum];
2158}
2159
2160Int TComRPSList::getNumberOfReferencePictureSets()
2161{
2162  return m_numberOfReferencePictureSets;
2163}
2164
2165Void TComRPSList::setNumberOfReferencePictureSets(Int numberOfReferencePictureSets)
2166{
2167  m_numberOfReferencePictureSets = numberOfReferencePictureSets;
2168}
2169
2170TComRefPicListModification::TComRefPicListModification()
2171: m_bRefPicListModificationFlagL0 (false)
2172, m_bRefPicListModificationFlagL1 (false)
2173{
2174  ::memset( m_RefPicSetIdxL0, 0, sizeof(m_RefPicSetIdxL0) );
2175  ::memset( m_RefPicSetIdxL1, 0, sizeof(m_RefPicSetIdxL1) );
2176}
2177
2178TComRefPicListModification::~TComRefPicListModification()
2179{
2180}
2181
2182TComScalingList::TComScalingList()
2183{
2184  m_useTransformSkip = false;
2185  init();
2186}
2187TComScalingList::~TComScalingList()
2188{
2189  destroy();
2190}
2191
2192/** set default quantization matrix to array
2193*/
2194Void TComSlice::setDefaultScalingList()
2195{
2196  for(UInt sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2197  {
2198    for(UInt listId=0;listId<g_scalingListNum[sizeId];listId++)
2199    {
2200      getScalingList()->processDefaultMarix(sizeId, listId);
2201    }
2202  }
2203}
2204/** check if use default quantization matrix
2205 * \returns true if use default quantization matrix in all size
2206*/
2207Bool TComSlice::checkDefaultScalingList()
2208{
2209  UInt defaultCounter=0;
2210
2211  for(UInt sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2212  {
2213    for(UInt listId=0;listId<g_scalingListNum[sizeId];listId++)
2214    {
2215      if( !memcmp(getScalingList()->getScalingListAddress(sizeId,listId), getScalingList()->getScalingListDefaultAddress(sizeId, listId),sizeof(Int)*min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId])) // check value of matrix
2216     && ((sizeId < SCALING_LIST_16x16) || (getScalingList()->getScalingListDC(sizeId,listId) == 16))) // check DC value
2217      {
2218        defaultCounter++;
2219      }
2220    }
2221  }
2222  return (defaultCounter == (SCALING_LIST_NUM * SCALING_LIST_SIZE_NUM - 4)) ? false : true; // -4 for 32x32
2223}
2224
2225/** get scaling matrix from RefMatrixID
2226 * \param sizeId size index
2227 * \param Index of input matrix
2228 * \param Index of reference matrix
2229 */
2230Void TComScalingList::processRefMatrix( UInt sizeId, UInt listId , UInt refListId )
2231{
2232  ::memcpy(getScalingListAddress(sizeId, listId),((listId == refListId)? getScalingListDefaultAddress(sizeId, refListId): getScalingListAddress(sizeId, refListId)),sizeof(Int)*min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]));
2233}
2234
2235/** parse syntax infomation
2236 *  \param pchFile syntax infomation
2237 *  \returns false if successful
2238 */
2239Bool TComScalingList::xParseScalingList(Char* pchFile)
2240{
2241  FILE *fp;
2242  Char line[1024];
2243  UInt sizeIdc,listIdc;
2244  UInt i,size = 0;
2245  Int *src=0,data;
2246  Char *ret;
2247  UInt  retval;
2248
2249  if((fp = fopen(pchFile,"r")) == (FILE*)NULL)
2250  {
2251    printf("can't open file %s :: set Default Matrix\n",pchFile);
2252    return true;
2253  }
2254
2255  for(sizeIdc = 0; sizeIdc < SCALING_LIST_SIZE_NUM; sizeIdc++)
2256  {
2257    size = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeIdc]);
2258    for(listIdc = 0; listIdc < g_scalingListNum[sizeIdc]; listIdc++)
2259    {
2260      src = getScalingListAddress(sizeIdc, listIdc);
2261
2262      fseek(fp,0,0);
2263      do 
2264      {
2265        ret = fgets(line, 1024, fp);
2266        if ((ret==NULL)||(strstr(line, MatrixType[sizeIdc][listIdc])==NULL && feof(fp)))
2267        {
2268          printf("Error: can't read Matrix :: set Default Matrix\n");
2269          return true;
2270        }
2271      }
2272      while (strstr(line, MatrixType[sizeIdc][listIdc]) == NULL);
2273      for (i=0; i<size; i++)
2274      {
2275        retval = fscanf(fp, "%d,", &data);
2276        if (retval!=1)
2277        {
2278          printf("Error: can't read Matrix :: set Default Matrix\n");
2279          return true;
2280        }
2281        src[i] = data;
2282      }
2283      //set DC value for default matrix check
2284      setScalingListDC(sizeIdc,listIdc,src[0]);
2285
2286      if(sizeIdc > SCALING_LIST_8x8)
2287      {
2288        fseek(fp,0,0);
2289        do 
2290        {
2291          ret = fgets(line, 1024, fp);
2292          if ((ret==NULL)||(strstr(line, MatrixType_DC[sizeIdc][listIdc])==NULL && feof(fp)))
2293          {
2294            printf("Error: can't read DC :: set Default Matrix\n");
2295            return true;
2296          }
2297        }
2298        while (strstr(line, MatrixType_DC[sizeIdc][listIdc]) == NULL);
2299        retval = fscanf(fp, "%d,", &data);
2300        if (retval!=1)
2301        {
2302          printf("Error: can't read Matrix :: set Default Matrix\n");
2303          return true;
2304        }
2305        //overwrite DC value when size of matrix is larger than 16x16
2306        setScalingListDC(sizeIdc,listIdc,data);
2307      }
2308    }
2309  }
2310  fclose(fp);
2311  return false;
2312}
2313
2314/** initialization process of quantization matrix array
2315 */
2316Void TComScalingList::init()
2317{
2318  for(UInt sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2319  {
2320    for(UInt listId = 0; listId < g_scalingListNum[sizeId]; listId++)
2321    {
2322      m_scalingListCoef[sizeId][listId] = new Int [min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId])];
2323    }
2324  }
2325  m_scalingListCoef[SCALING_LIST_32x32][3] = m_scalingListCoef[SCALING_LIST_32x32][1]; // copy address for 32x32
2326}
2327
2328/** destroy quantization matrix array
2329 */
2330Void TComScalingList::destroy()
2331{
2332  for(UInt sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2333  {
2334    for(UInt listId = 0; listId < g_scalingListNum[sizeId]; listId++)
2335    {
2336      if(m_scalingListCoef[sizeId][listId]) delete [] m_scalingListCoef[sizeId][listId];
2337    }
2338  }
2339}
2340
2341/** get default address of quantization matrix
2342 * \param sizeId size index
2343 * \param listId list index
2344 * \returns pointer of quantization matrix
2345 */
2346Int* TComScalingList::getScalingListDefaultAddress(UInt sizeId, UInt listId)
2347{
2348  Int *src = 0;
2349  switch(sizeId)
2350  {
2351    case SCALING_LIST_4x4:
2352      src = g_quantTSDefault4x4;
2353      break;
2354    case SCALING_LIST_8x8:
2355      src = (listId<3) ? g_quantIntraDefault8x8 : g_quantInterDefault8x8;
2356      break;
2357    case SCALING_LIST_16x16:
2358      src = (listId<3) ? g_quantIntraDefault8x8 : g_quantInterDefault8x8;
2359      break;
2360    case SCALING_LIST_32x32:
2361      src = (listId<1) ? g_quantIntraDefault8x8 : g_quantInterDefault8x8;
2362      break;
2363    default:
2364      assert(0);
2365      src = NULL;
2366      break;
2367  }
2368  return src;
2369}
2370
2371/** process of default matrix
2372 * \param sizeId size index
2373 * \param Index of input matrix
2374 */
2375Void TComScalingList::processDefaultMarix(UInt sizeId, UInt listId)
2376{
2377  ::memcpy(getScalingListAddress(sizeId, listId),getScalingListDefaultAddress(sizeId,listId),sizeof(Int)*min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]));
2378  setScalingListDC(sizeId,listId,SCALING_LIST_DC);
2379}
2380
2381/** check DC value of matrix for default matrix signaling
2382 */
2383Void TComScalingList::checkDcOfMatrix()
2384{
2385  for(UInt sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2386  {
2387    for(UInt listId = 0; listId < g_scalingListNum[sizeId]; listId++)
2388    {
2389      //check default matrix?
2390      if(getScalingListDC(sizeId,listId) == 0)
2391      {
2392        processDefaultMarix(sizeId, listId);
2393      }
2394    }
2395  }
2396}
2397
2398ParameterSetManager::ParameterSetManager()
2399#if SVC_EXTENSION
2400: m_spsMap(MAX_NUM_SPS)
2401, m_ppsMap(MAX_NUM_PPS)
2402, m_activeSPSId(-1)
2403, m_activePPSId(-1)
2404#else
2405: m_vpsMap(MAX_NUM_VPS)
2406, m_spsMap(MAX_NUM_SPS)
2407, m_ppsMap(MAX_NUM_PPS)
2408, m_activeVPSId(-1)
2409, m_activeSPSId(-1)
2410, m_activePPSId(-1)
2411#endif
2412{
2413}
2414
2415
2416ParameterSetManager::~ParameterSetManager()
2417{
2418}
2419
2420//! activate a SPS from a active parameter sets SEI message
2421//! \returns true, if activation is successful
2422Bool ParameterSetManager::activateSPSWithSEI(Int spsId)
2423{
2424  TComSPS *sps = m_spsMap.getPS(spsId);
2425  if (sps)
2426  {
2427    Int vpsId = sps->getVPSId();
2428    if (m_vpsMap.getPS(vpsId))
2429    {
2430      m_activeVPSId = vpsId;
2431      m_activeSPSId = spsId;
2432      return true;
2433    }
2434    else
2435    {
2436      printf("Warning: tried to activate SPS using an Active parameter sets SEI message. Referenced VPS does not exist.");
2437    }
2438  }
2439  else
2440  {
2441    printf("Warning: tried to activate non-existing SPS using an Active parameter sets SEI message.");
2442  }
2443  return false;
2444}
2445
2446//! activate a PPS and depending on isIDR parameter also SPS and VPS
2447//! \returns true, if activation is successful
2448Bool ParameterSetManager::activatePPS(Int ppsId, Bool isIRAP)
2449{
2450  TComPPS *pps = m_ppsMap.getPS(ppsId);
2451  if (pps)
2452  {
2453    Int spsId = pps->getSPSId();
2454    if (!isIRAP && (spsId != m_activeSPSId))
2455    {
2456      printf("Warning: tried to activate PPS referring to a inactive SPS at non-IRAP.");
2457      return false;
2458    }
2459    TComSPS *sps = m_spsMap.getPS(spsId);
2460    if (sps)
2461    {
2462      Int vpsId = sps->getVPSId();
2463      if (!isIRAP && (vpsId != m_activeVPSId))
2464      {
2465        printf("Warning: tried to activate PPS referring to a inactive VPS at non-IRAP.");
2466        return false;
2467      }
2468      if (m_vpsMap.getPS(vpsId))
2469      {
2470        m_activePPSId = ppsId;
2471        m_activeVPSId = vpsId;
2472        m_activeSPSId = spsId;
2473        return true;
2474      }
2475      else
2476      {
2477        printf("Warning: tried to activate PPS that refers to a non-existing VPS.");
2478      }
2479    }
2480    else
2481    {
2482      printf("Warning: tried to activate a PPS that refers to a non-existing SPS.");
2483    }
2484  }
2485  else
2486  {
2487    printf("Warning: tried to activate non-existing PPS.");
2488  }
2489  return false;
2490}
2491
2492ProfileTierLevel::ProfileTierLevel()
2493  : m_profileSpace    (0)
2494  , m_tierFlag        (false)
2495  , m_profileIdc      (0)
2496  , m_levelIdc        (0)
2497, m_progressiveSourceFlag  (false)
2498, m_interlacedSourceFlag   (false)
2499, m_nonPackedConstraintFlag(false)
2500, m_frameOnlyConstraintFlag(false)
2501{
2502  ::memset(m_profileCompatibilityFlag, 0, sizeof(m_profileCompatibilityFlag));
2503}
2504#if VPS_EXTN_PROFILE_INFO
2505Void ProfileTierLevel::copyProfileInfo(ProfileTierLevel *ptl)
2506{
2507  this->setProfileSpace          ( ptl->getProfileSpace()      );
2508  this->setTierFlag              ( ptl->getTierFlag()          );
2509  this->setProfileIdc            ( ptl->getProfileIdc()        );
2510  for(Int j = 0; j < 32; j++)
2511  {
2512    this->setProfileCompatibilityFlag(j, ptl->getProfileCompatibilityFlag(j));
2513  }
2514  this->setProgressiveSourceFlag  ( ptl->getProgressiveSourceFlag()  );
2515  this->setInterlacedSourceFlag   ( ptl->getInterlacedSourceFlag()   );
2516  this->setNonPackedConstraintFlag( ptl->getNonPackedConstraintFlag());
2517  this->setFrameOnlyConstraintFlag( ptl->getFrameOnlyConstraintFlag()); 
2518}
2519#endif
2520
2521TComPTL::TComPTL()
2522{
2523  ::memset(m_subLayerProfilePresentFlag, 0, sizeof(m_subLayerProfilePresentFlag));
2524  ::memset(m_subLayerLevelPresentFlag,   0, sizeof(m_subLayerLevelPresentFlag  ));
2525}
2526#if VPS_EXTN_PROFILE_INFO
2527Void TComPTL::copyProfileInfo(TComPTL *ptl)
2528{
2529  // Copy all information related to general profile
2530  this->getGeneralPTL()->copyProfileInfo(ptl->getGeneralPTL());
2531}
2532#endif
2533
2534#if SVC_EXTENSION
2535#if AVC_SYNTAX
2536Void TComSlice::initBaseLayerRPL( TComSlice *pcSlice )
2537{
2538// Assumed that RPL of the base layer is same to the EL, otherwise this information should be also dumped and read from the metadata file
2539  setPOC( pcSlice->getPOC() );
2540  if( pcSlice->getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP && pcSlice->getNalUnitType() <= NAL_UNIT_CODED_SLICE_CRA )
2541  {
2542    setSliceType( I_SLICE );
2543  }
2544  else
2545  {
2546    setSliceType( pcSlice->getSliceType() );
2547  }
2548
2549  if( this->isIntra() )
2550  {
2551    return;
2552  }
2553
2554  //initialize reference POC of BL
2555  for( Int iRefPicList = 0; iRefPicList < 2; iRefPicList++ )
2556  {
2557    RefPicList eRefPicList = RefPicList( iRefPicList );
2558
2559    assert( pcSlice->getNumRefIdx( eRefPicList) >= 0 );
2560    setNumRefIdx( eRefPicList, pcSlice->getNumRefIdx( eRefPicList ) - 1 );
2561    assert( getNumRefIdx( eRefPicList) <= MAX_NUM_REF);
2562
2563    for(Int refIdx = 0; refIdx < getNumRefIdx( eRefPicList ); refIdx++) 
2564    {
2565      setRefPOC( pcSlice->getRefPic( eRefPicList, refIdx )->getPOC(), eRefPicList, refIdx );
2566      setRefPic( pcSlice->getRefPic( eRefPicList, refIdx ), eRefPicList, refIdx );
2567      /*
2568      // should be set if the base layer has its own instance of the reference picture lists, currently EL RPL is reused.
2569      getRefPic( eRefPicList, refIdx )->setLayerId( 0 );
2570      getRefPic( eRefPicList, refIdx )->setIsLongTerm( pcSlice->getRefPic( eRefPicList, refIdx )->getIsLongTerm() );     
2571      */
2572
2573    }
2574  } 
2575  return;
2576}
2577#endif
2578
2579Void TComSlice::setBaseColPic(  TComList<TComPic*>& rcListPic, UInt refLayerIdc )
2580{ 
2581  if(m_layerId == 0)
2582  {
2583    memset( m_pcBaseColPic, 0, sizeof( m_pcBaseColPic ) );
2584    return;
2585  }       
2586  setBaseColPic(refLayerIdc, xGetRefPic(rcListPic, getPOC())); 
2587}
2588#endif
2589
2590#if REF_IDX_MFM
2591Void TComSlice::setRefPOCListILP( TComPic** ilpPic, TComPic** pcRefPicRL )
2592{
2593  for( UInt i = 0; i < m_activeNumILRRefIdx; i++ )
2594  {
2595    UInt refLayerIdc = m_interLayerPredLayerIdc[i];
2596
2597    TComPic* pcRefPicBL = pcRefPicRL[refLayerIdc];
2598    //set reference picture POC of each ILP reference
2599    Int thePoc = ilpPic[refLayerIdc]->getPOC(); 
2600    assert(thePoc >= 0); 
2601    assert(thePoc == pcRefPicBL->getPOC());
2602
2603    ilpPic[refLayerIdc]->getSlice(0)->setBaseColPic( refLayerIdc, pcRefPicBL );
2604
2605    //copy reference pictures marking from the reference layer
2606    ilpPic[refLayerIdc]->getSlice(0)->copySliceInfo(pcRefPicBL->getSlice(0));
2607
2608    for( Int refList = 0; refList < 2; refList++ )
2609    {
2610      RefPicList refPicList = RefPicList( refList );
2611
2612      //set reference POC of ILP
2613      ilpPic[refLayerIdc]->getSlice(0)->setNumRefIdx(refPicList, pcRefPicBL->getSlice(0)->getNumRefIdx(refPicList));
2614      assert(ilpPic[refLayerIdc]->getSlice(0)->getNumRefIdx(refPicList) >= 0);
2615      assert(ilpPic[refLayerIdc]->getSlice(0)->getNumRefIdx(refPicList) <= MAX_NUM_REF);
2616
2617      //initialize reference POC of ILP
2618      for(Int refIdx = 0; refIdx < pcRefPicBL->getSlice(0)->getNumRefIdx(refPicList); refIdx++)
2619      {
2620        ilpPic[refLayerIdc]->getSlice(0)->setRefPOC(pcRefPicBL->getSlice(0)->getRefPOC(refPicList, refIdx), refPicList, refIdx);
2621        ilpPic[refLayerIdc]->getSlice(0)->setRefPic(pcRefPicBL->getSlice(0)->getRefPic(refPicList, refIdx), refPicList, refIdx);
2622      }
2623
2624      for(Int refIdx = pcRefPicBL->getSlice(0)->getNumRefIdx(refPicList); refIdx < MAX_NUM_REF; refIdx++) 
2625      { 
2626        ilpPic[refLayerIdc]->getSlice(0)->setRefPOC(0, refPicList, refIdx); 
2627        ilpPic[refLayerIdc]->getSlice(0)->setRefPic(NULL, refPicList, refIdx); 
2628      }
2629    }
2630  }
2631  return;
2632}
2633#endif
2634
2635//! \}
Note: See TracBrowser for help on using the repository browser.