source: SHVCSoftware/branches/SHM-6-dev/source/Lib/TLibCommon/TComSlice.cpp @ 662

Last change on this file since 662 was 662, checked in by sony, 11 years ago

Following two macros are introduced
Q0195_REP_FORMAT_CLEANUP : JCTVC-Q0195 restructureing of rep_format() signaling
REP_FORMAT_FIX : update_rep_format_flag should be inferred to be equal to 0
by ohji.nakagami@…

  • Property svn:eol-style set to native
File size: 118.3 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2014, 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
48ParameterSetMap<TComVPS> ParameterSetManager::m_vpsMap(MAX_NUM_VPS);
49Int 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, m_pcSPS                         ( NULL )
74, m_pcPPS                         ( NULL )
75, m_pcPic                         ( NULL )
76, m_colFromL0Flag                 ( 1 )
77#if SETTING_NO_OUT_PIC_PRIOR
78, m_noOutputPriorPicsFlag         ( false )
79, m_noRaslOutputFlag              ( false )
80, m_handleCraAsBlaFlag            ( false )
81#endif
82, m_colRefIdx                     ( 0 )
83, m_uiTLayer                      ( 0 )
84, m_bTLayerSwitchingFlag          ( false )
85, m_sliceMode                   ( 0 )
86, m_sliceArgument               ( 0 )
87, m_sliceCurStartCUAddr         ( 0 )
88, m_sliceCurEndCUAddr           ( 0 )
89, m_sliceIdx                    ( 0 )
90, m_sliceSegmentMode            ( 0 )
91, m_sliceSegmentArgument        ( 0 )
92, m_sliceSegmentCurStartCUAddr  ( 0 )
93, m_sliceSegmentCurEndCUAddr    ( 0 )
94, m_nextSlice                    ( false )
95, m_nextSliceSegment             ( false )
96, m_sliceBits                   ( 0 )
97, m_sliceSegmentBits         ( 0 )
98, m_bFinalized                    ( false )
99, m_uiTileOffstForMultES          ( 0 )
100, m_puiSubstreamSizes             ( NULL )
101, m_cabacInitFlag                 ( false )
102, m_bLMvdL1Zero                   ( false )
103, m_numEntryPointOffsets          ( 0 )
104, m_temporalLayerNonReferenceFlag ( false )
105, m_enableTMVPFlag                ( true )
106#if SVC_EXTENSION
107, m_layerId                     ( 0 )
108#if REF_IDX_MFM
109, m_bMFMEnabledFlag               ( false )
110#endif
111#if POC_RESET_FLAG
112, m_bPocResetFlag                 ( false )
113#endif
114, m_bDiscardableFlag              ( false )
115#if O0149_CROSS_LAYER_BLA_FLAG
116, m_bCrossLayerBLAFlag            ( false )
117#endif
118#if POC_RESET_IDC_SIGNALLING
119, m_pocResetIdc                   ( 0 )
120, m_pocResetPeriodId              ( 0 )
121, m_fullPocResetFlag              ( false )
122, m_pocLsbVal                     ( 0 )
123, m_pocMsbVal                     ( 0 )
124, m_pocMsbValRequiredFlag         ( false )
125, m_pocMsbValPresentFlag          ( false )
126#endif
127#endif //SVC_EXTENSION
128{
129  m_aiNumRefIdx[0] = m_aiNumRefIdx[1] = 0;
130
131#if SVC_EXTENSION
132  memset( m_pcBaseColPic, 0, sizeof( m_pcBaseColPic ) );
133  m_activeNumILRRefIdx        = 0; 
134  m_interLayerPredEnabledFlag = 0;
135  ::memset( m_interLayerPredLayerIdc, 0, sizeof(m_interLayerPredLayerIdc) );
136#if P0312_VERT_PHASE_ADJ
137  ::memset( m_vertPhasePositionFlag, 0, sizeof(m_vertPhasePositionFlag) );
138#endif
139#endif //SVC_EXTENSION
140
141  initEqualRef();
142 
143  for (Int component = 0; component < 3; component++)
144  {
145    m_lambdas[component] = 0.0;
146  }
147 
148  for ( Int idx = 0; idx < MAX_NUM_REF; idx++ )
149  {
150    m_list1IdxToList0Idx[idx] = -1;
151  }
152  for(Int iNumCount = 0; iNumCount < MAX_NUM_REF; iNumCount++)
153  {
154    m_apcRefPicList [0][iNumCount] = NULL;
155    m_apcRefPicList [1][iNumCount] = NULL;
156    m_aiRefPOCList  [0][iNumCount] = 0;
157    m_aiRefPOCList  [1][iNumCount] = 0;
158  }
159  resetWpScaling();
160  initWpAcDcParam();
161  m_saoEnabledFlag = false;
162  m_saoEnabledFlagChroma = false;
163}
164
165TComSlice::~TComSlice()
166{
167  delete[] m_puiSubstreamSizes;
168  m_puiSubstreamSizes = NULL;
169}
170
171
172#if SVC_EXTENSION
173Void TComSlice::initSlice( UInt layerId )
174#else
175Void TComSlice::initSlice()
176#endif
177{
178#if SVC_EXTENSION
179  m_layerId = layerId;
180  m_activeNumILRRefIdx        = 0;
181  m_interLayerPredEnabledFlag = 0;
182#endif
183  m_aiNumRefIdx[0]      = 0;
184  m_aiNumRefIdx[1]      = 0;
185 
186  m_colFromL0Flag = 1;
187 
188  m_colRefIdx = 0;
189  initEqualRef();
190  m_bCheckLDC = false;
191  m_iSliceQpDeltaCb = 0;
192  m_iSliceQpDeltaCr = 0;
193
194  m_maxNumMergeCand = MRG_MAX_NUM_CANDS;
195
196  m_bFinalized=false;
197
198  m_tileByteLocation.clear();
199  m_cabacInitFlag        = false;
200  m_numEntryPointOffsets = 0;
201  m_enableTMVPFlag = true;
202}
203
204Bool TComSlice::getRapPicFlag()
205{
206  return getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL
207      || getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP
208      || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP
209      || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
210      || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
211      || getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA;
212}
213#if NO_OUTPUT_OF_PRIOR_PICS
214Bool TComSlice::getBlaPicFlag       ()
215{
216    return  getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP
217    || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
218    || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP;
219}
220Bool TComSlice::getCraPicFlag       ()
221{
222    return getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA;
223}
224#endif
225
226/**
227 - allocate table to contain substream sizes to be written to the slice header.
228 .
229 \param uiNumSubstreams Number of substreams -- the allocation will be this value - 1.
230 */
231Void  TComSlice::allocSubstreamSizes(UInt uiNumSubstreams)
232{
233  delete[] m_puiSubstreamSizes;
234  m_puiSubstreamSizes = new UInt[uiNumSubstreams > 0 ? uiNumSubstreams-1 : 0];
235}
236
237Void  TComSlice::sortPicList(TComList<TComPic*>& rcListPic)
238{
239  TComPic*    pcPicExtract;
240  TComPic*    pcPicInsert;
241 
242  TComList<TComPic*>::iterator    iterPicExtract;
243  TComList<TComPic*>::iterator    iterPicExtract_1;
244  TComList<TComPic*>::iterator    iterPicInsert;
245 
246  for (Int i = 1; i < (Int)(rcListPic.size()); i++)
247  {
248    iterPicExtract = rcListPic.begin();
249    for (Int j = 0; j < i; j++) iterPicExtract++;
250    pcPicExtract = *(iterPicExtract);
251    pcPicExtract->setCurrSliceIdx(0);
252   
253    iterPicInsert = rcListPic.begin();
254    while (iterPicInsert != iterPicExtract)
255    {
256      pcPicInsert = *(iterPicInsert);
257      pcPicInsert->setCurrSliceIdx(0);
258      if (pcPicInsert->getPOC() >= pcPicExtract->getPOC())
259      {
260        break;
261      }
262     
263      iterPicInsert++;
264    }
265   
266    iterPicExtract_1 = iterPicExtract;    iterPicExtract_1++;
267   
268    //  swap iterPicExtract and iterPicInsert, iterPicExtract = curr. / iterPicInsert = insertion position
269    rcListPic.insert (iterPicInsert, iterPicExtract, iterPicExtract_1);
270    rcListPic.erase  (iterPicExtract);
271  }
272}
273
274TComPic* TComSlice::xGetRefPic (TComList<TComPic*>& rcListPic,
275                                Int                 poc)
276{
277  TComList<TComPic*>::iterator  iterPic = rcListPic.begin(); 
278  TComPic*                      pcPic = *(iterPic);
279  while ( iterPic != rcListPic.end() )
280  {
281    if(pcPic->getPOC() == poc)
282    {
283      break;
284    }
285    iterPic++;
286#if SVC_EXTENSION
287    // return NULL, if picture with requested POC is not in the list, otherwise iterator goes outside of the list
288    if( iterPic == rcListPic.end() )
289    {
290      return NULL;
291    }
292#endif
293    pcPic = *(iterPic);
294  }
295#if POC_RESET_FLAG
296  assert( pcPic->getSlice(0)->isReferenced() );
297#endif
298  return  pcPic;
299}
300
301
302TComPic* TComSlice::xGetLongTermRefPic(TComList<TComPic*>& rcListPic, Int poc, Bool pocHasMsb)
303{
304  TComList<TComPic*>::iterator  iterPic = rcListPic.begin(); 
305  TComPic*                      pcPic = *(iterPic);
306  TComPic*                      pcStPic = pcPic;
307 
308  Int pocCycle = 1 << getSPS()->getBitsForPOC();
309  if (!pocHasMsb)
310  {
311    poc = poc & (pocCycle - 1);
312  }
313 
314  while ( iterPic != rcListPic.end() )
315  {
316    pcPic = *(iterPic);
317    if (pcPic && pcPic->getPOC()!=this->getPOC() && pcPic->getSlice( 0 )->isReferenced())
318    {
319      Int picPoc = pcPic->getPOC();
320      if (!pocHasMsb)
321      {
322        picPoc = picPoc & (pocCycle - 1);
323      }
324     
325#if POC_RESET_RPS
326      if( ((!pocHasMsb) && ((poc & (pocCycle-1)) == picPoc)) || ( pocHasMsb && (poc == picPoc)) )
327#else
328      if (poc == picPoc)
329#endif
330      {
331       if (pcPic->getIsLongTerm())
332      {
333        return pcPic;
334      }
335      else
336      {
337        pcStPic = pcPic;
338      }
339      break;
340    }
341    }
342
343    iterPic++;
344  }
345 
346  return  pcStPic;
347}
348
349Void TComSlice::setRefPOCList()
350{
351  for (Int iDir = 0; iDir < 2; iDir++)
352  {
353    for (Int iNumRefIdx = 0; iNumRefIdx < m_aiNumRefIdx[iDir]; iNumRefIdx++)
354    {
355      m_aiRefPOCList[iDir][iNumRefIdx] = m_apcRefPicList[iDir][iNumRefIdx]->getPOC();
356    }
357  }
358
359}
360
361Void TComSlice::setList1IdxToList0Idx()
362{
363  Int idxL0, idxL1;
364  for ( idxL1 = 0; idxL1 < getNumRefIdx( REF_PIC_LIST_1 ); idxL1++ )
365  {
366    m_list1IdxToList0Idx[idxL1] = -1;
367    for ( idxL0 = 0; idxL0 < getNumRefIdx( REF_PIC_LIST_0 ); idxL0++ )
368    {
369      if ( m_apcRefPicList[REF_PIC_LIST_0][idxL0]->getPOC() == m_apcRefPicList[REF_PIC_LIST_1][idxL1]->getPOC() )
370      {
371        m_list1IdxToList0Idx[idxL1] = idxL0;
372        break;
373      }
374    }
375  }
376}
377
378#if SVC_EXTENSION
379Void TComSlice::setRefPicList( TComList<TComPic*>& rcListPic, Bool checkNumPocTotalCurr, TComPic** ilpPic)
380#else
381Void TComSlice::setRefPicList( TComList<TComPic*>& rcListPic, Bool checkNumPocTotalCurr )
382#endif
383{
384  if (!checkNumPocTotalCurr)
385  {
386    if (m_eSliceType == I_SLICE)
387    {
388      ::memset( m_apcRefPicList, 0, sizeof (m_apcRefPicList));
389      ::memset( m_aiNumRefIdx,   0, sizeof ( m_aiNumRefIdx ));
390     
391      return;
392    }
393 
394    m_aiNumRefIdx[0] = getNumRefIdx(REF_PIC_LIST_0);
395    m_aiNumRefIdx[1] = getNumRefIdx(REF_PIC_LIST_1);
396  }
397
398  TComPic*  pcRefPic= NULL;
399  TComPic*  RefPicSetStCurr0[16];
400  TComPic*  RefPicSetStCurr1[16];
401  TComPic*  RefPicSetLtCurr[16];
402  UInt NumPocStCurr0 = 0;
403  UInt NumPocStCurr1 = 0;
404  UInt NumPocLtCurr = 0;
405  Int i;
406
407#if SVC_EXTENSION
408  if( m_layerId == 0 || ( m_layerId > 0 && ( m_activeNumILRRefIdx == 0 || !((getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP) && (getNalUnitType() <= NAL_UNIT_CODED_SLICE_CRA)) ) ) )
409  {
410#endif
411  for(i=0; i < m_pcRPS->getNumberOfNegativePictures(); i++)
412  {
413    if(m_pcRPS->getUsed(i))
414    {
415      pcRefPic = xGetRefPic(rcListPic, getPOC()+m_pcRPS->getDeltaPOC(i));
416      pcRefPic->setIsLongTerm(0);
417      pcRefPic->getPicYuvRec()->extendPicBorder();
418      RefPicSetStCurr0[NumPocStCurr0] = pcRefPic;
419      NumPocStCurr0++;
420      pcRefPic->setCheckLTMSBPresent(false); 
421    }
422  }
423 
424  for(; i < m_pcRPS->getNumberOfNegativePictures()+m_pcRPS->getNumberOfPositivePictures(); i++)
425  {
426    if(m_pcRPS->getUsed(i))
427    {
428      pcRefPic = xGetRefPic(rcListPic, getPOC()+m_pcRPS->getDeltaPOC(i));
429      pcRefPic->setIsLongTerm(0);
430      pcRefPic->getPicYuvRec()->extendPicBorder();
431      RefPicSetStCurr1[NumPocStCurr1] = pcRefPic;
432      NumPocStCurr1++;
433      pcRefPic->setCheckLTMSBPresent(false); 
434    }
435  }
436 
437  for(i = m_pcRPS->getNumberOfNegativePictures()+m_pcRPS->getNumberOfPositivePictures()+m_pcRPS->getNumberOfLongtermPictures()-1; i > m_pcRPS->getNumberOfNegativePictures()+m_pcRPS->getNumberOfPositivePictures()-1 ; i--)
438  {
439    if(m_pcRPS->getUsed(i))
440    {
441      pcRefPic = xGetLongTermRefPic(rcListPic, m_pcRPS->getPOC(i), m_pcRPS->getCheckLTMSBPresent(i));
442      pcRefPic->setIsLongTerm(1);
443      pcRefPic->getPicYuvRec()->extendPicBorder();
444      RefPicSetLtCurr[NumPocLtCurr] = pcRefPic;
445      NumPocLtCurr++;
446    }
447    if(pcRefPic==NULL) 
448    {
449      pcRefPic = xGetLongTermRefPic(rcListPic, m_pcRPS->getPOC(i), m_pcRPS->getCheckLTMSBPresent(i));
450    }
451    pcRefPic->setCheckLTMSBPresent(m_pcRPS->getCheckLTMSBPresent(i)); 
452  }
453#if SVC_EXTENSION
454  }
455#endif
456
457#if SVC_EXTENSION
458  for( i = 0; i < m_activeNumILRRefIdx; i++ )
459  {
460    UInt refLayerIdc = m_interLayerPredLayerIdc[i];
461    //inter-layer reference picture
462#if O0225_MAX_TID_FOR_REF_LAYERS
463    Int maxTidIlRefPicsPlus1 = ( m_layerId > 0 && m_activeNumILRRefIdx > 0)? m_pcVPS->getMaxTidIlRefPicsPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId(),m_layerId) : 0;
464#else
465    Int maxTidIlRefPicsPlus1 = ( m_layerId > 0 && m_activeNumILRRefIdx > 0)? m_pcVPS->getMaxTidIlRefPicsPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId()) : 0;
466#endif
467    if( m_layerId > 0 && m_activeNumILRRefIdx > 0 && ( ( (Int)(ilpPic[refLayerIdc]->getSlice(0)->getTLayer())<=  maxTidIlRefPicsPlus1-1) || (maxTidIlRefPicsPlus1==0 && ilpPic[refLayerIdc]->getSlice(0)->getRapPicFlag()) )  ) 
468    {
469#if REF_IDX_MFM
470      if(!(m_eNalUnitType >= NAL_UNIT_CODED_SLICE_BLA_W_LP && m_eNalUnitType <= NAL_UNIT_CODED_SLICE_CRA) && getMFMEnabledFlag())
471      { 
472        ilpPic[refLayerIdc]->copyUpsampledMvField( refLayerIdc, m_pcBaseColPic[refLayerIdc] );
473      }
474      else
475      {
476        ilpPic[refLayerIdc]->initUpsampledMvField();
477      }
478#endif
479      ilpPic[refLayerIdc]->setIsLongTerm(1);
480    }
481  }
482#endif
483  // ref_pic_list_init
484  TComPic*  rpsCurrList0[MAX_NUM_REF+1];
485  TComPic*  rpsCurrList1[MAX_NUM_REF+1];
486#if SVC_EXTENSION
487  Int numInterLayerRPSPics = 0;
488#if M0040_ADAPTIVE_RESOLUTION_CHANGE
489  if( m_layerId > 0 && m_activeNumILRRefIdx > 0 )
490#else
491  if( m_layerId > 0 )
492#endif
493  {
494    for( i=0; i < m_pcVPS->getNumDirectRefLayers( m_layerId ); i++ )
495    {
496#if O0225_MAX_TID_FOR_REF_LAYERS
497      Int maxTidIlRefPicsPlus1 = getVPS()->getMaxTidIlRefPicsPlus1(ilpPic[i]->getSlice(0)->getLayerId(),m_layerId);
498#else
499      Int maxTidIlRefPicsPlus1 = getVPS()->getMaxTidIlRefPicsPlus1(ilpPic[i]->getSlice(0)->getLayerId());
500#endif
501      if( ((Int)(ilpPic[i]->getSlice(0)->getTLayer())<= maxTidIlRefPicsPlus1-1) || (maxTidIlRefPicsPlus1==0 && ilpPic[i]->getSlice(0)->getRapPicFlag() ) )
502      {
503        numInterLayerRPSPics++;
504#if DISCARDABLE_PIC_RPS
505        assert( ilpPic[i]->getSlice(0)->getDiscardableFlag() == 0 );    // Inter-layer RPS shall not contain picture with discardable_flag = 1.
506#endif
507      }
508    }
509    if (numInterLayerRPSPics < m_activeNumILRRefIdx)
510    {
511      m_activeNumILRRefIdx = numInterLayerRPSPics;
512    }
513#if MAX_ONE_RESAMPLING_DIRECT_LAYERS
514#if SCALABILITY_MASK_E0104
515    if( m_pcVPS->getScalabilityMask(2) )
516#else
517    if( m_pcVPS->getScalabilityMask(1) )
518#endif
519    {
520      Int numResampler = 0;
521#if MOTION_RESAMPLING_CONSTRAINT
522      Int numMotionResamplers = 0;
523      Int refResamplingLayer[MAX_LAYERS];
524      memset( refResamplingLayer, 0, sizeof( refResamplingLayer ) );
525#endif
526#if !RESAMPLING_CONSTRAINT_BUG_FIX
527      const Window &scalEL = getSPS()->getScaledRefLayerWindow(m_interLayerPredLayerIdc[i]);
528      Int scalingOffset = ((scalEL.getWindowLeftOffset()   == 0 ) && 
529                           (scalEL.getWindowRightOffset()  == 0 ) && 
530                           (scalEL.getWindowTopOffset()    == 0 ) && 
531                           (scalEL.getWindowBottomOffset() == 0 ) 
532                          );
533#endif
534
535      for( i=0; i < m_activeNumILRRefIdx; i++ )
536      {
537        UInt refLayerIdc = m_interLayerPredLayerIdc[i];
538        UInt refLayerId = m_pcVPS->getRefLayerId( m_layerId, refLayerIdc );
539#if RESAMPLING_CONSTRAINT_BUG_FIX
540#if O0098_SCALED_REF_LAYER_ID
541        const Window &scalEL = getSPS()->getScaledRefLayerWindowForLayer(refLayerId);
542#else
543        const Window &scalEL = getSPS()->getScaledRefLayerWindow(m_interLayerPredLayerIdc[i]);
544#endif
545        Int scalingOffset = ((scalEL.getWindowLeftOffset()   == 0 ) && 
546                             (scalEL.getWindowRightOffset()  == 0 ) && 
547                             (scalEL.getWindowTopOffset()    == 0 ) && 
548                             (scalEL.getWindowBottomOffset() == 0 ) 
549                            );
550#endif
551#if O0194_DIFFERENT_BITDEPTH_EL_BL
552        Int sameBitDepth = g_bitDepthYLayer[m_layerId] - g_bitDepthYLayer[refLayerId] + g_bitDepthCLayer[m_layerId] - g_bitDepthCLayer[refLayerId];
553
554        if( !( g_posScalingFactor[refLayerIdc][0] == 65536 && g_posScalingFactor[refLayerIdc][1] == 65536 ) || !scalingOffset || !sameBitDepth ) // ratio 1x
555#else
556        if(!( g_posScalingFactor[refLayerIdc][0] == 65536 && g_posScalingFactor[refLayerIdc][1] == 65536 ) || (!scalingOffset)) // ratio 1x
557#endif
558        {
559#if MOTION_RESAMPLING_CONSTRAINT
560          UInt predType = m_pcVPS->getDirectDependencyType( m_layerId, refLayerId ) + 1;
561
562          if( predType & 0x1 )
563          {
564            numResampler++;
565            refResamplingLayer[i] = refLayerIdc + 1;
566          }
567
568          if( predType & 0x2 )
569          {
570            numMotionResamplers++;
571            refResamplingLayer[i] -= refLayerIdc + 1;
572          }
573#else
574          numResampler++;
575#endif
576        }
577      }
578     
579      // When both picture sample values and picture motion field resampling processes are invoked for decoding of a particular picture, they shall be applied to the same reference layer picture.
580      if( m_activeNumILRRefIdx > 1 && numResampler > 0 )
581      {
582        for( i=0; i < m_activeNumILRRefIdx; i++ )
583        {
584          assert( refResamplingLayer[i] >= 0 && "Motion and sample inter-layer prediction shall be from the same layer" );
585        }
586      }
587
588      // 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.
589      assert(numResampler <= 1);
590#if MOTION_RESAMPLING_CONSTRAINT
591      assert( numMotionResamplers <= 1  && "Up to 1 motion resampling is allowed" );
592#endif
593    }
594#endif
595  }
596  Int numPocTotalCurr = NumPocStCurr0 + NumPocStCurr1 + NumPocLtCurr + m_activeNumILRRefIdx;
597#else //SVC_EXTENSION
598  Int numPocTotalCurr = NumPocStCurr0 + NumPocStCurr1 + NumPocLtCurr;
599#endif //SVC_EXTENSION
600
601  if (checkNumPocTotalCurr)
602  {
603    // 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:
604#if SVC_EXTENSION    // inter-layer prediction is allowed for BLA, CRA pictures of nuh_layer_id>0
605    // - 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.
606    // - Otherwise, when the current picture contains a P or B slice, the value of NumPocTotalCurr shall not be equal to 0.
607    if (getRapPicFlag() && getLayerId()==0)
608#else
609    // - If the current picture is a BLA or CRA picture, the value of NumPocTotalCurr shall be equal to 0.
610    // - Otherwise, when the current picture contains a P or B slice, the value of NumPocTotalCurr shall not be equal to 0.
611    if (getRapPicFlag())
612#endif
613    {
614      assert(numPocTotalCurr == 0);
615    }
616
617    if (m_eSliceType == I_SLICE)
618    {
619      ::memset( m_apcRefPicList, 0, sizeof (m_apcRefPicList));
620      ::memset( m_aiNumRefIdx,   0, sizeof ( m_aiNumRefIdx ));
621
622      return;
623    }
624
625    assert(numPocTotalCurr > 0);
626
627    m_aiNumRefIdx[0] = getNumRefIdx(REF_PIC_LIST_0);
628    m_aiNumRefIdx[1] = getNumRefIdx(REF_PIC_LIST_1);
629  }
630
631    Int cIdx = 0;
632    for ( i=0; i<NumPocStCurr0; i++, cIdx++)
633    {
634      rpsCurrList0[cIdx] = RefPicSetStCurr0[i];
635    }
636#if SVC_EXTENSION
637#if RPL_INIT_N0316_N0082
638    if( m_layerId > 0 )
639    {     
640      for( i = 0; i < m_activeNumILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)     
641      {
642        Int refLayerIdc = m_interLayerPredLayerIdc[i];
643#if O0225_MAX_TID_FOR_REF_LAYERS
644        Int maxTidIlRefPicsPlus1 = getVPS()->getMaxTidIlRefPicsPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId(),m_layerId);
645#else
646        Int maxTidIlRefPicsPlus1 = getVPS()->getMaxTidIlRefPicsPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId());
647#endif
648        if( ((Int)(ilpPic[refLayerIdc]->getSlice(0)->getTLayer())<=maxTidIlRefPicsPlus1-1) || (maxTidIlRefPicsPlus1==0 && ilpPic[refLayerIdc]->getSlice(0)->getRapPicFlag()) )
649        {
650          rpsCurrList0[cIdx] = ilpPic[refLayerIdc];
651        }
652      }
653    }
654#endif
655#endif //SVC_EXTENSION
656    for ( i=0; i<NumPocStCurr1; i++, cIdx++)
657    {
658      rpsCurrList0[cIdx] = RefPicSetStCurr1[i];
659    }
660    for ( i=0; i<NumPocLtCurr;  i++, cIdx++)
661    {
662      rpsCurrList0[cIdx] = RefPicSetLtCurr[i];
663    }   
664#if !RPL_INIT_N0316_N0082
665#if SVC_EXTENSION
666    if( m_layerId > 0 )
667    {
668      for( i = 0; i < m_activeNumILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)     
669      {
670        Int refLayerIdc = m_interLayerPredLayerIdc[i];
671#if O0225_MAX_TID_FOR_REF_LAYERS
672        Int maxTidIlRefPicsPlus1 = getVPS()->getMaxTidIlRefPicsPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId(),m_layerId);
673#else
674        Int maxTidIlRefPicsPlus1 = getVPS()->getMaxTidIlRefPicsPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId());
675#endif
676        if( ((Int)(ilpPic[refLayerIdc]->getSlice(0)->getTLayer())<=maxTidIlRefPicsPlus1-1) || (maxTidIlRefPicsPlus1==0 && ilpPic[refLayerIdc]->getSlice(0)->getRapPicFlag()) )
677        {
678          rpsCurrList0[cIdx] = ilpPic[refLayerIdc];
679        }
680      }
681    }
682#endif
683#endif
684  assert(cIdx == numPocTotalCurr);
685
686  if (m_eSliceType==B_SLICE)
687  {
688    cIdx = 0;
689    for ( i=0; i<NumPocStCurr1; i++, cIdx++)
690    {
691      rpsCurrList1[cIdx] = RefPicSetStCurr1[i];
692    }
693    for ( i=0; i<NumPocStCurr0; i++, cIdx++)
694    {
695      rpsCurrList1[cIdx] = RefPicSetStCurr0[i];
696    }
697    for ( i=0; i<NumPocLtCurr;  i++, cIdx++)
698    {
699      rpsCurrList1[cIdx] = RefPicSetLtCurr[i];
700    }   
701
702#if SVC_EXTENSION
703    if( m_layerId > 0 )
704    {
705      for( i = 0; i < m_activeNumILRRefIdx && cIdx < numPocTotalCurr; cIdx ++, i ++)
706      {
707        Int refLayerIdc = m_interLayerPredLayerIdc[i];
708#if O0225_MAX_TID_FOR_REF_LAYERS
709        Int maxTidIlRefPicsPlus1 = getVPS()->getMaxTidIlRefPicsPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId(),m_layerId);
710#else
711        Int maxTidIlRefPicsPlus1 = getVPS()->getMaxTidIlRefPicsPlus1(ilpPic[refLayerIdc]->getSlice(0)->getLayerId());
712#endif
713        if( ((Int)(ilpPic[refLayerIdc]->getSlice(0)->getTLayer())<=maxTidIlRefPicsPlus1-1) || (maxTidIlRefPicsPlus1==0 && ilpPic[refLayerIdc]->getSlice(0)->getRapPicFlag()) )
714        {
715          rpsCurrList1[cIdx] = ilpPic[refLayerIdc];
716        }
717      }
718    }
719#endif //SVC_EXTENSION
720
721    assert(cIdx == numPocTotalCurr);
722  }
723
724  ::memset(m_bIsUsedAsLongTerm, 0, sizeof(m_bIsUsedAsLongTerm));
725
726  for (Int rIdx = 0; rIdx < m_aiNumRefIdx[0]; rIdx ++)
727  {
728    cIdx = m_RefPicListModification.getRefPicListModificationFlagL0() ? m_RefPicListModification.getRefPicSetIdxL0(rIdx) : rIdx % numPocTotalCurr;
729    assert(cIdx >= 0 && cIdx < numPocTotalCurr);
730    m_apcRefPicList[0][rIdx] = rpsCurrList0[ cIdx ];
731#if RPL_INIT_N0316_N0082
732    m_bIsUsedAsLongTerm[0][rIdx] = ( cIdx >= NumPocStCurr0 && cIdx < NumPocStCurr0 + m_activeNumILRRefIdx ) || ( cIdx >= NumPocStCurr0 + NumPocStCurr1 + m_activeNumILRRefIdx );
733#else
734    m_bIsUsedAsLongTerm[0][rIdx] = ( cIdx >= NumPocStCurr0 + NumPocStCurr1 );
735#endif
736  }
737  if ( m_eSliceType != B_SLICE )
738  {
739    m_aiNumRefIdx[1] = 0;
740    ::memset( m_apcRefPicList[1], 0, sizeof(m_apcRefPicList[1]));
741  }
742  else
743  {
744    for (Int rIdx = 0; rIdx < m_aiNumRefIdx[1]; rIdx ++)
745    {
746      cIdx = m_RefPicListModification.getRefPicListModificationFlagL1() ? m_RefPicListModification.getRefPicSetIdxL1(rIdx) : rIdx % numPocTotalCurr;
747      assert(cIdx >= 0 && cIdx < numPocTotalCurr);
748      m_apcRefPicList[1][rIdx] = rpsCurrList1[ cIdx ];
749      m_bIsUsedAsLongTerm[1][rIdx] = ( cIdx >= NumPocStCurr0 + NumPocStCurr1 );
750    }
751  }
752}
753
754#if SVC_EXTENSION
755Void TComSlice::setRefPicListModificationSvc()
756{
757  if( !m_pcPPS->getListsModificationPresentFlag()) 
758  {
759    return;
760  }
761
762  if(m_eNalUnitType >= NAL_UNIT_CODED_SLICE_BLA_W_LP && m_eNalUnitType <= NAL_UNIT_CODED_SLICE_CRA)
763  {
764    return;
765  }
766
767  TComRefPicListModification* refPicListModification = &m_RefPicListModification;
768  Int numberOfRpsCurrTempList = this->getNumRpsCurrTempList();  // total number of ref pics in listTemp0 including inter-layer ref pics
769#if RPL_INIT_N0316_N0082
770  Int numberOfPocBeforeCurr = this->getNumNegativeRpsCurrTempList();  // number of negative temporal ref pics
771#endif
772
773#if N0147_IRAP_ALIGN_FLAG
774  assert(m_aiNumRefIdx[REF_PIC_LIST_0] > 0);
775  assert(m_aiNumRefIdx[REF_PIC_LIST_1] > 0);
776#else
777  assert(m_aiNumRefIdx[REF_PIC_LIST_0] > 1);
778  assert(m_aiNumRefIdx[REF_PIC_LIST_1] > 1);
779#endif
780
781  //set L0 inter-layer reference picture modification
782#if RPL_INIT_N0316_N0082
783  Bool hasModification = (m_aiNumRefIdx[REF_PIC_LIST_0] == (numberOfPocBeforeCurr + m_activeNumILRRefIdx)) ? false : true;
784#else
785  Bool hasModification = (m_aiNumRefIdx[REF_PIC_LIST_0] == numberOfRpsCurrTempList) ? false : true;
786#endif
787#if N0147_IRAP_ALIGN_FLAG
788  hasModification = hasModification && ( m_aiNumRefIdx[REF_PIC_LIST_0] > 1 );
789#endif
790  refPicListModification->setRefPicListModificationFlagL0(hasModification);
791  if(hasModification)
792  { 
793    for(Int i = 0; i < min(m_aiNumRefIdx[REF_PIC_LIST_0], numberOfRpsCurrTempList); i++)
794    {
795      refPicListModification->setRefPicSetIdxL0(i, i);
796    }
797    if(m_aiNumRefIdx[REF_PIC_LIST_0] > numberOfRpsCurrTempList)
798    {
799        // repeat last ref pic when the number of active ref idx are more than RPS entries
800      for (Int i = numberOfRpsCurrTempList; i < m_aiNumRefIdx[REF_PIC_LIST_0]; i ++)
801      {
802        refPicListModification->setRefPicSetIdxL0(i, numberOfRpsCurrTempList - 1);
803      }
804    }
805    else
806    {
807      for(Int i = m_activeNumILRRefIdx; i > 0; i-- )
808      {
809#if RPL_INIT_N0316_N0082
810        if((numberOfPocBeforeCurr) >= m_aiNumRefIdx[REF_PIC_LIST_0])
811        {
812          refPicListModification->setRefPicSetIdxL0(m_aiNumRefIdx[REF_PIC_LIST_0] - i, numberOfPocBeforeCurr);
813        }
814        else
815        {
816          refPicListModification->setRefPicSetIdxL0(m_aiNumRefIdx[REF_PIC_LIST_0] - i, numberOfPocBeforeCurr);
817          for (Int j = numberOfPocBeforeCurr; j < (m_aiNumRefIdx[REF_PIC_LIST_0] - i); j++)
818          {
819            refPicListModification->setRefPicSetIdxL0(j, j + m_activeNumILRRefIdx);
820          }
821        }
822#else
823        refPicListModification->setRefPicSetIdxL0(m_aiNumRefIdx[REF_PIC_LIST_0] - i, numberOfRpsCurrTempList - i);
824#endif
825      }
826    }
827  }
828
829  //set L1 inter-layer reference picture modification
830  hasModification = (m_aiNumRefIdx[REF_PIC_LIST_1] == numberOfRpsCurrTempList) ? false : true;
831#if N0147_IRAP_ALIGN_FLAG
832  hasModification = hasModification && ( m_aiNumRefIdx[REF_PIC_LIST_1] > 1 );
833#endif
834
835  refPicListModification->setRefPicListModificationFlagL1(hasModification);
836  if(hasModification)
837  { 
838    for(Int i = 0; i < min(m_aiNumRefIdx[REF_PIC_LIST_1], numberOfRpsCurrTempList); i++)
839    {
840      refPicListModification->setRefPicSetIdxL1(i, i);
841    }
842    if(m_aiNumRefIdx[REF_PIC_LIST_1] > numberOfRpsCurrTempList)
843    {
844      for (Int i = numberOfRpsCurrTempList; i < m_aiNumRefIdx[REF_PIC_LIST_1]; i ++)
845      {
846        // repeat last ref pic when the number of active ref idx are more than RPS entries
847        refPicListModification->setRefPicSetIdxL1(i, numberOfRpsCurrTempList - 1); 
848      }
849    }
850    else
851    {
852      for(Int i = m_activeNumILRRefIdx; i > 0; i-- )
853      {
854        refPicListModification->setRefPicSetIdxL1(m_aiNumRefIdx[REF_PIC_LIST_1] - i, numberOfRpsCurrTempList - i);
855      }
856    }
857  }
858  return;
859}
860#endif
861#if RPL_INIT_N0316_N0082
862Int TComSlice::getNumNegativeRpsCurrTempList()
863{
864  if( m_eSliceType == I_SLICE ) 
865  {
866    return 0;
867  }
868
869  Int numPocBeforeCurr = 0;
870  for( UInt i = 0; i < m_pcRPS->getNumberOfNegativePictures(); i++ )
871  {
872    if(m_pcRPS->getUsed(i))
873    {
874      numPocBeforeCurr++;
875    }
876  }
877
878  return numPocBeforeCurr;
879}
880#endif
881Int TComSlice::getNumRpsCurrTempList()
882{
883  Int numRpsCurrTempList = 0;
884
885#if SVC_EXTENSION
886  if( m_eSliceType == I_SLICE || ( m_layerId && 
887    (m_eNalUnitType >= NAL_UNIT_CODED_SLICE_BLA_W_LP) &&
888    (m_eNalUnitType <= NAL_UNIT_CODED_SLICE_CRA) ) )
889#else
890  if (m_eSliceType == I_SLICE) 
891#endif
892  {
893#if SVC_EXTENSION
894    return m_activeNumILRRefIdx;
895#else
896    return 0;
897#endif
898  }
899  for(UInt i=0; i < m_pcRPS->getNumberOfNegativePictures()+ m_pcRPS->getNumberOfPositivePictures() + m_pcRPS->getNumberOfLongtermPictures(); i++)
900  {
901    if(m_pcRPS->getUsed(i))
902    {
903      numRpsCurrTempList++;
904    }
905  }
906#if SVC_EXTENSION
907  if( m_layerId > 0 )
908  {
909    numRpsCurrTempList += m_activeNumILRRefIdx;
910  }
911#endif
912
913  return numRpsCurrTempList;
914}
915
916Void TComSlice::initEqualRef()
917{
918  for (Int iDir = 0; iDir < 2; iDir++)
919  {
920    for (Int iRefIdx1 = 0; iRefIdx1 < MAX_NUM_REF; iRefIdx1++)
921    {
922      for (Int iRefIdx2 = iRefIdx1; iRefIdx2 < MAX_NUM_REF; iRefIdx2++)
923      {
924        m_abEqualRef[iDir][iRefIdx1][iRefIdx2] = m_abEqualRef[iDir][iRefIdx2][iRefIdx1] = (iRefIdx1 == iRefIdx2? true : false);
925      }
926    }
927  }
928}
929
930Void TComSlice::checkColRefIdx(UInt curSliceIdx, TComPic* pic)
931{
932  Int i;
933  TComSlice* curSlice = pic->getSlice(curSliceIdx);
934  Int currColRefPOC =  curSlice->getRefPOC( RefPicList(1-curSlice->getColFromL0Flag()), curSlice->getColRefIdx());
935  TComSlice* preSlice;
936  Int preColRefPOC;
937  for(i=curSliceIdx-1; i>=0; i--)
938  {
939    preSlice = pic->getSlice(i);
940    if(preSlice->getSliceType() != I_SLICE)
941    {
942      preColRefPOC  = preSlice->getRefPOC( RefPicList(1-preSlice->getColFromL0Flag()), preSlice->getColRefIdx());
943      if(currColRefPOC != preColRefPOC)
944      {
945        printf("Collocated_ref_idx shall always be the same for all slices of a coded picture!\n");
946        exit(EXIT_FAILURE);
947      }
948      else
949      {
950        break;
951      }
952    }
953  }
954}
955
956Void TComSlice::checkCRA(TComReferencePictureSet *pReferencePictureSet, Int& pocCRA, NalUnitType& associatedIRAPType, TComList<TComPic *>& rcListPic)
957{
958  for(Int i = 0; i < pReferencePictureSet->getNumberOfNegativePictures()+pReferencePictureSet->getNumberOfPositivePictures(); i++)
959  {
960    if(pocCRA < MAX_UINT && getPOC() > pocCRA)
961    {
962      assert(getPOC()+pReferencePictureSet->getDeltaPOC(i) >= pocCRA);
963    }
964  }
965  for(Int i = pReferencePictureSet->getNumberOfNegativePictures()+pReferencePictureSet->getNumberOfPositivePictures(); i < pReferencePictureSet->getNumberOfPictures(); i++)
966  {
967    if(pocCRA < MAX_UINT && getPOC() > pocCRA)
968    {
969      if (!pReferencePictureSet->getCheckLTMSBPresent(i))
970      {
971        assert(xGetLongTermRefPic(rcListPic, pReferencePictureSet->getPOC(i), false)->getPOC() >= pocCRA);
972      }
973      else
974      {
975      assert(pReferencePictureSet->getPOC(i) >= pocCRA);
976    }
977  }
978  }
979  if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL || getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP ) // IDR picture found
980  {
981    pocCRA = getPOC();
982    associatedIRAPType = getNalUnitType();
983  }
984  else if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA ) // CRA picture found
985  {
986    pocCRA = getPOC();
987    associatedIRAPType = getNalUnitType();
988  }
989  else 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 ) // BLA picture found
992  {
993    pocCRA = getPOC();
994    associatedIRAPType = getNalUnitType();
995  }
996}
997
998/** Function for marking the reference pictures when an IDR/CRA/CRANT/BLA/BLANT is encountered.
999 * \param pocCRA POC of the CRA/CRANT/BLA/BLANT picture
1000 * \param bRefreshPending flag indicating if a deferred decoding refresh is pending
1001 * \param rcListPic reference to the reference picture list
1002 * This function marks the reference pictures as "unused for reference" in the following conditions.
1003 * If the nal_unit_type is IDR/BLA/BLANT, all pictures in the reference picture list 
1004 * are marked as "unused for reference"
1005 *    If the nal_unit_type is BLA/BLANT, set the pocCRA to the temporal reference of the current picture.
1006 * Otherwise
1007 *    If the bRefreshPending flag is true (a deferred decoding refresh is pending) and the current
1008 *    temporal reference is greater than the temporal reference of the latest CRA/CRANT/BLA/BLANT picture (pocCRA),
1009 *    mark all reference pictures except the latest CRA/CRANT/BLA/BLANT picture as "unused for reference" and set
1010 *    the bRefreshPending flag to false.
1011 *    If the nal_unit_type is CRA/CRANT, set the bRefreshPending flag to true and pocCRA to the temporal
1012 *    reference of the current picture.
1013 * Note that the current picture is already placed in the reference list and its marking is not changed.
1014 * If the current picture has a nal_ref_idc that is not 0, it will remain marked as "used for reference".
1015 */
1016#if NO_CLRAS_OUTPUT_FLAG
1017Void TComSlice::decodingRefreshMarking(Int& pocCRA, Bool& bRefreshPending, TComList<TComPic*>& rcListPic, Bool noClrasOutputFlag)
1018#else
1019Void TComSlice::decodingRefreshMarking(Int& pocCRA, Bool& bRefreshPending, TComList<TComPic*>& rcListPic)
1020#endif
1021{
1022  TComPic*                 rpcPic;
1023#if !FIX1172
1024  setAssociatedIRAPPOC(pocCRA);
1025#endif
1026  Int pocCurr = getPOC(); 
1027
1028  if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
1029    || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
1030    || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP
1031    || getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL
1032    || getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP )  // IDR or BLA picture
1033  {
1034    // mark all pictures as not used for reference
1035    TComList<TComPic*>::iterator        iterPic       = rcListPic.begin();
1036    while (iterPic != rcListPic.end())
1037    {
1038      rpcPic = *(iterPic);
1039      rpcPic->setCurrSliceIdx(0);
1040#if NO_CLRAS_OUTPUT_FLAG
1041      if (noClrasOutputFlag)
1042      {
1043        if (rpcPic->getPOC() != pocCurr) rpcPic->getSlice(0)->setReferenced(false);  // all layers
1044      }
1045      else
1046      {
1047        if (rpcPic->getPOC() != pocCurr && rpcPic->getLayerId() == m_layerId) rpcPic->getSlice(0)->setReferenced(false);  // only current layer
1048      }
1049#else
1050      if (rpcPic->getPOC() != pocCurr) rpcPic->getSlice(0)->setReferenced(false);
1051#endif
1052      iterPic++;
1053    }
1054    if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
1055      || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
1056      || getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP )
1057    {
1058      pocCRA = pocCurr;
1059    }
1060#if EFFICIENT_FIELD_IRAP
1061    bRefreshPending = true;
1062#endif
1063  }
1064  else // CRA or No DR
1065  {
1066#if EFFICIENT_FIELD_IRAP
1067    if(getAssociatedIRAPType() == NAL_UNIT_CODED_SLICE_IDR_N_LP || getAssociatedIRAPType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL)
1068    {
1069      if (bRefreshPending==true && pocCurr > m_iLastIDR) // IDR reference marking pending
1070      {
1071        TComList<TComPic*>::iterator        iterPic       = rcListPic.begin();
1072        while (iterPic != rcListPic.end())
1073        {
1074          rpcPic = *(iterPic);
1075          if (rpcPic->getPOC() != pocCurr && rpcPic->getPOC() != m_iLastIDR)
1076          {
1077            rpcPic->getSlice(0)->setReferenced(false);
1078          }
1079          iterPic++;
1080        }
1081        bRefreshPending = false; 
1082      }
1083    }
1084    else
1085    {
1086#endif
1087    if (bRefreshPending==true && pocCurr > pocCRA) // CRA reference marking pending
1088    {
1089      TComList<TComPic*>::iterator        iterPic       = rcListPic.begin();
1090      while (iterPic != rcListPic.end())
1091      {
1092        rpcPic = *(iterPic);
1093        if (rpcPic->getPOC() != pocCurr && rpcPic->getPOC() != pocCRA)
1094        {
1095          rpcPic->getSlice(0)->setReferenced(false);
1096        }
1097        iterPic++;
1098      }
1099      bRefreshPending = false; 
1100    }
1101#if EFFICIENT_FIELD_IRAP
1102    }
1103#endif
1104    if ( getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA ) // CRA picture found
1105    {
1106      bRefreshPending = true; 
1107      pocCRA = pocCurr;
1108    }
1109  }
1110}
1111
1112Void TComSlice::copySliceInfo(TComSlice *pSrc)
1113{
1114  assert( pSrc != NULL );
1115
1116  Int i, j, k;
1117
1118  m_iPOC                 = pSrc->m_iPOC;
1119  m_eNalUnitType         = pSrc->m_eNalUnitType;
1120  m_eSliceType           = pSrc->m_eSliceType;
1121  m_iSliceQp             = pSrc->m_iSliceQp;
1122#if ADAPTIVE_QP_SELECTION
1123  m_iSliceQpBase         = pSrc->m_iSliceQpBase;
1124#endif
1125  m_deblockingFilterDisable   = pSrc->m_deblockingFilterDisable;
1126  m_deblockingFilterOverrideFlag = pSrc->m_deblockingFilterOverrideFlag;
1127  m_deblockingFilterBetaOffsetDiv2 = pSrc->m_deblockingFilterBetaOffsetDiv2;
1128  m_deblockingFilterTcOffsetDiv2 = pSrc->m_deblockingFilterTcOffsetDiv2;
1129 
1130  for (i = 0; i < 2; i++)
1131  {
1132    m_aiNumRefIdx[i]     = pSrc->m_aiNumRefIdx[i];
1133  }
1134
1135  for (i = 0; i < MAX_NUM_REF; i++)
1136  {
1137    m_list1IdxToList0Idx[i] = pSrc->m_list1IdxToList0Idx[i];
1138  } 
1139  m_bCheckLDC             = pSrc->m_bCheckLDC;
1140  m_iSliceQpDelta        = pSrc->m_iSliceQpDelta;
1141  m_iSliceQpDeltaCb      = pSrc->m_iSliceQpDeltaCb;
1142  m_iSliceQpDeltaCr      = pSrc->m_iSliceQpDeltaCr;
1143  for (i = 0; i < 2; i++)
1144  {
1145    for (j = 0; j < MAX_NUM_REF; j++)
1146    {
1147      m_apcRefPicList[i][j]  = pSrc->m_apcRefPicList[i][j];
1148      m_aiRefPOCList[i][j]   = pSrc->m_aiRefPOCList[i][j];
1149    }
1150  }
1151  for (i = 0; i < 2; i++)
1152  {
1153    for (j = 0; j < MAX_NUM_REF + 1; j++)
1154    {
1155      m_bIsUsedAsLongTerm[i][j] = pSrc->m_bIsUsedAsLongTerm[i][j];
1156    }
1157  }
1158  m_iDepth               = pSrc->m_iDepth;
1159
1160  // referenced slice
1161  m_bRefenced            = pSrc->m_bRefenced;
1162
1163  // access channel
1164#if SVC_EXTENSION
1165  m_pcVPS                = pSrc->m_pcVPS;
1166  m_layerId              = pSrc->m_layerId;
1167  m_activeNumILRRefIdx         = pSrc->m_activeNumILRRefIdx;
1168  m_interLayerPredEnabledFlag  = pSrc->m_interLayerPredEnabledFlag;
1169  memcpy( m_interLayerPredLayerIdc, pSrc->m_interLayerPredLayerIdc, sizeof( m_interLayerPredLayerIdc ) );
1170#if P0312_VERT_PHASE_ADJ
1171  memcpy( m_vertPhasePositionFlag, pSrc->m_vertPhasePositionFlag, sizeof( m_vertPhasePositionFlag ) );
1172#endif
1173#endif
1174  m_pcSPS                = pSrc->m_pcSPS;
1175  m_pcPPS                = pSrc->m_pcPPS;
1176  m_pcRPS                = pSrc->m_pcRPS;
1177  m_iLastIDR             = pSrc->m_iLastIDR;
1178
1179  m_pcPic                = pSrc->m_pcPic;
1180
1181  m_colFromL0Flag        = pSrc->m_colFromL0Flag;
1182  m_colRefIdx            = pSrc->m_colRefIdx;
1183  setLambdas(pSrc->getLambdas());
1184  for (i = 0; i < 2; i++)
1185  {
1186    for (j = 0; j < MAX_NUM_REF; j++)
1187    {
1188      for (k =0; k < MAX_NUM_REF; k++)
1189      {
1190        m_abEqualRef[i][j][k] = pSrc->m_abEqualRef[i][j][k];
1191      }
1192    }
1193  }
1194
1195  m_uiTLayer                      = pSrc->m_uiTLayer;
1196  m_bTLayerSwitchingFlag          = pSrc->m_bTLayerSwitchingFlag;
1197
1198  m_sliceMode                   = pSrc->m_sliceMode;
1199  m_sliceArgument               = pSrc->m_sliceArgument;
1200  m_sliceCurStartCUAddr         = pSrc->m_sliceCurStartCUAddr;
1201  m_sliceCurEndCUAddr           = pSrc->m_sliceCurEndCUAddr;
1202  m_sliceIdx                    = pSrc->m_sliceIdx;
1203  m_sliceSegmentMode            = pSrc->m_sliceSegmentMode;
1204  m_sliceSegmentArgument        = pSrc->m_sliceSegmentArgument; 
1205  m_sliceSegmentCurStartCUAddr  = pSrc->m_sliceSegmentCurStartCUAddr;
1206  m_sliceSegmentCurEndCUAddr    = pSrc->m_sliceSegmentCurEndCUAddr;
1207  m_nextSlice                    = pSrc->m_nextSlice;
1208  m_nextSliceSegment             = pSrc->m_nextSliceSegment;
1209  for ( Int e=0 ; e<2 ; e++ )
1210  {
1211    for ( Int n=0 ; n<MAX_NUM_REF ; n++ )
1212    {
1213      memcpy(m_weightPredTable[e][n], pSrc->m_weightPredTable[e][n], sizeof(wpScalingParam)*3 );
1214    }
1215  }
1216  m_saoEnabledFlag = pSrc->m_saoEnabledFlag; 
1217  m_saoEnabledFlagChroma = pSrc->m_saoEnabledFlagChroma;
1218  m_cabacInitFlag                = pSrc->m_cabacInitFlag;
1219  m_numEntryPointOffsets  = pSrc->m_numEntryPointOffsets;
1220
1221  m_bLMvdL1Zero = pSrc->m_bLMvdL1Zero;
1222  m_LFCrossSliceBoundaryFlag = pSrc->m_LFCrossSliceBoundaryFlag;
1223  m_enableTMVPFlag                = pSrc->m_enableTMVPFlag;
1224  m_maxNumMergeCand               = pSrc->m_maxNumMergeCand;
1225}
1226
1227Int TComSlice::m_prevTid0POC = 0;
1228
1229/** Function for setting the slice's temporal layer ID and corresponding temporal_layer_switching_point_flag.
1230 * \param uiTLayer Temporal layer ID of the current slice
1231 * The decoder calls this function to set temporal_layer_switching_point_flag for each temporal layer based on
1232 * the SPS's temporal_id_nesting_flag and the parsed PPS.  Then, current slice's temporal layer ID and
1233 * temporal_layer_switching_point_flag is set accordingly.
1234 */
1235Void TComSlice::setTLayerInfo( UInt uiTLayer )
1236{
1237  m_uiTLayer = uiTLayer;
1238}
1239
1240/** Function for checking if this is a switching-point
1241*/
1242Bool TComSlice::isTemporalLayerSwitchingPoint( TComList<TComPic*>& rcListPic )
1243{
1244  TComPic* rpcPic;
1245  // loop through all pictures in the reference picture buffer
1246  TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1247  while ( iterPic != rcListPic.end())
1248  {
1249    rpcPic = *(iterPic++);
1250    if(rpcPic->getSlice(0)->isReferenced() && rpcPic->getPOC() != getPOC())
1251    {
1252      if(rpcPic->getTLayer() >= getTLayer())
1253      {
1254        return false;
1255      }
1256    }
1257  }
1258  return true;
1259}
1260
1261/** Function for checking if this is a STSA candidate
1262 */
1263Bool TComSlice::isStepwiseTemporalLayerSwitchingPointCandidate( TComList<TComPic*>& rcListPic )
1264{
1265    TComPic* rpcPic;
1266   
1267    TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1268    while ( iterPic != rcListPic.end())
1269    {
1270        rpcPic = *(iterPic++);
1271        if(rpcPic->getSlice(0)->isReferenced() &&  (rpcPic->getUsedByCurr()==true) && rpcPic->getPOC() != getPOC())
1272        {
1273            if(rpcPic->getTLayer() >= getTLayer())
1274            {
1275                return false;
1276            }
1277        }
1278    }
1279    return true;
1280}
1281
1282
1283Void TComSlice::checkLeadingPictureRestrictions(TComList<TComPic*>& rcListPic)
1284{
1285  TComPic* rpcPic;
1286
1287  Int nalUnitType = this->getNalUnitType();
1288
1289  // When a picture is a leading picture, it shall be a RADL or RASL picture.
1290  if(this->getAssociatedIRAPPOC() > this->getPOC())
1291  {
1292    // Do not check IRAP pictures since they may get a POC lower than their associated IRAP
1293    if(nalUnitType < NAL_UNIT_CODED_SLICE_BLA_W_LP ||
1294       nalUnitType > NAL_UNIT_RESERVED_IRAP_VCL23)
1295    {
1296      assert(nalUnitType == NAL_UNIT_CODED_SLICE_RASL_N ||
1297             nalUnitType == NAL_UNIT_CODED_SLICE_RASL_R ||
1298             nalUnitType == NAL_UNIT_CODED_SLICE_RADL_N ||
1299             nalUnitType == NAL_UNIT_CODED_SLICE_RADL_R);
1300    }
1301  }
1302
1303  // When a picture is a trailing picture, it shall not be a RADL or RASL picture.
1304  if(this->getAssociatedIRAPPOC() < this->getPOC())
1305  {
1306    assert(nalUnitType != NAL_UNIT_CODED_SLICE_RASL_N &&
1307           nalUnitType != NAL_UNIT_CODED_SLICE_RASL_R &&
1308           nalUnitType != NAL_UNIT_CODED_SLICE_RADL_N &&
1309           nalUnitType != NAL_UNIT_CODED_SLICE_RADL_R);
1310  }
1311
1312  // No RASL pictures shall be present in the bitstream that are associated
1313  // with a BLA picture having nal_unit_type equal to BLA_W_RADL or BLA_N_LP.
1314  if(nalUnitType == NAL_UNIT_CODED_SLICE_RASL_N ||
1315     nalUnitType == NAL_UNIT_CODED_SLICE_RASL_R)
1316  {
1317    assert(this->getAssociatedIRAPType() != NAL_UNIT_CODED_SLICE_BLA_W_RADL &&
1318           this->getAssociatedIRAPType() != NAL_UNIT_CODED_SLICE_BLA_N_LP);
1319  }
1320
1321  // No RASL pictures shall be present in the bitstream that are associated with
1322  // an IDR picture.
1323  if(nalUnitType == NAL_UNIT_CODED_SLICE_RASL_N ||
1324     nalUnitType == NAL_UNIT_CODED_SLICE_RASL_R)
1325  {
1326    assert(this->getAssociatedIRAPType() != NAL_UNIT_CODED_SLICE_IDR_N_LP   &&
1327           this->getAssociatedIRAPType() != NAL_UNIT_CODED_SLICE_IDR_W_RADL);
1328  }
1329
1330  // No RADL pictures shall be present in the bitstream that are associated with
1331  // a BLA picture having nal_unit_type equal to BLA_N_LP or that are associated
1332  // with an IDR picture having nal_unit_type equal to IDR_N_LP.
1333  if(nalUnitType == NAL_UNIT_CODED_SLICE_RADL_N ||
1334     nalUnitType == NAL_UNIT_CODED_SLICE_RADL_R)
1335  {
1336    assert(this->getAssociatedIRAPType() != NAL_UNIT_CODED_SLICE_BLA_N_LP   &&
1337           this->getAssociatedIRAPType() != NAL_UNIT_CODED_SLICE_IDR_N_LP);
1338  }
1339
1340  // loop through all pictures in the reference picture buffer
1341  TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1342  while ( iterPic != rcListPic.end())
1343  {
1344    rpcPic = *(iterPic++);
1345#if BUGFIX_INTRAPERIOD
1346    if(!rpcPic->getReconMark())
1347    {
1348      continue;
1349    }
1350#endif
1351    if (rpcPic->getPOC() == this->getPOC())
1352    {
1353      continue;
1354    }
1355
1356    // Any picture that has PicOutputFlag equal to 1 that precedes an IRAP picture
1357    // in decoding order shall precede the IRAP picture in output order.
1358    // (Note that any picture following in output order would be present in the DPB)
1359#if !SETTING_NO_OUT_PIC_PRIOR
1360    if(rpcPic->getSlice(0)->getPicOutputFlag() == 1)
1361#else
1362    if(rpcPic->getSlice(0)->getPicOutputFlag() == 1 && !this->getNoOutputPriorPicsFlag())
1363#endif
1364    {
1365      if(nalUnitType == NAL_UNIT_CODED_SLICE_BLA_N_LP    ||
1366         nalUnitType == NAL_UNIT_CODED_SLICE_BLA_W_LP    ||
1367         nalUnitType == NAL_UNIT_CODED_SLICE_BLA_W_RADL  ||
1368         nalUnitType == NAL_UNIT_CODED_SLICE_CRA         ||
1369         nalUnitType == NAL_UNIT_CODED_SLICE_IDR_N_LP    ||
1370         nalUnitType == NAL_UNIT_CODED_SLICE_IDR_W_RADL)
1371      {
1372        assert(rpcPic->getPOC() < this->getPOC());
1373      }
1374    }
1375
1376    // Any picture that has PicOutputFlag equal to 1 that precedes an IRAP picture
1377    // in decoding order shall precede any RADL picture associated with the IRAP
1378    // picture in output order.
1379    if(rpcPic->getSlice(0)->getPicOutputFlag() == 1)
1380    {
1381      if((nalUnitType == NAL_UNIT_CODED_SLICE_RADL_N ||
1382          nalUnitType == NAL_UNIT_CODED_SLICE_RADL_R))
1383      {
1384        // rpcPic precedes the IRAP in decoding order
1385        if(this->getAssociatedIRAPPOC() > rpcPic->getSlice(0)->getAssociatedIRAPPOC())
1386        {
1387          // rpcPic must not be the IRAP picture
1388          if(this->getAssociatedIRAPPOC() != rpcPic->getPOC())
1389          {
1390            assert(rpcPic->getPOC() < this->getPOC());
1391          }
1392        }
1393      }
1394    }
1395
1396    // When a picture is a leading picture, it shall precede, in decoding order,
1397    // all trailing pictures that are associated with the same IRAP picture.
1398    if(nalUnitType == NAL_UNIT_CODED_SLICE_RASL_N ||
1399       nalUnitType == NAL_UNIT_CODED_SLICE_RASL_R ||
1400       nalUnitType == NAL_UNIT_CODED_SLICE_RADL_N ||
1401       nalUnitType == NAL_UNIT_CODED_SLICE_RADL_R)
1402    {
1403      if(rpcPic->getSlice(0)->getAssociatedIRAPPOC() == this->getAssociatedIRAPPOC())
1404      {
1405        // rpcPic is a picture that preceded the leading in decoding order since it exist in the DPB
1406        // rpcPic would violate the constraint if it was a trailing picture
1407        assert(rpcPic->getPOC() <= this->getAssociatedIRAPPOC());
1408      }
1409    }
1410
1411    // Any RASL picture associated with a CRA or BLA picture shall precede any
1412    // RADL picture associated with the CRA or BLA picture in output order
1413    if(nalUnitType == NAL_UNIT_CODED_SLICE_RASL_N ||
1414       nalUnitType == NAL_UNIT_CODED_SLICE_RASL_R)
1415    { 
1416      if((this->getAssociatedIRAPType() == NAL_UNIT_CODED_SLICE_BLA_N_LP   ||
1417          this->getAssociatedIRAPType() == NAL_UNIT_CODED_SLICE_BLA_W_LP   ||
1418          this->getAssociatedIRAPType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL ||
1419          this->getAssociatedIRAPType() == NAL_UNIT_CODED_SLICE_CRA)       &&
1420          this->getAssociatedIRAPPOC() == rpcPic->getSlice(0)->getAssociatedIRAPPOC())
1421      {
1422        if(rpcPic->getSlice(0)->getNalUnitType() == NAL_UNIT_CODED_SLICE_RADL_N ||
1423           rpcPic->getSlice(0)->getNalUnitType() == NAL_UNIT_CODED_SLICE_RADL_R)
1424        {
1425          assert(rpcPic->getPOC() > this->getPOC());
1426        }
1427      }
1428    }
1429
1430    // Any RASL picture associated with a CRA picture shall follow, in output
1431    // order, any IRAP picture that precedes the CRA picture in decoding order.
1432    if(nalUnitType == NAL_UNIT_CODED_SLICE_RASL_N ||
1433       nalUnitType == NAL_UNIT_CODED_SLICE_RASL_R)
1434    {
1435      if(this->getAssociatedIRAPType() == NAL_UNIT_CODED_SLICE_CRA)
1436      {
1437        if(rpcPic->getSlice(0)->getPOC() < this->getAssociatedIRAPPOC() &&
1438           (rpcPic->getSlice(0)->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP   ||
1439            rpcPic->getSlice(0)->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP   ||
1440            rpcPic->getSlice(0)->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL ||
1441            rpcPic->getSlice(0)->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP   ||
1442            rpcPic->getSlice(0)->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL ||
1443            rpcPic->getSlice(0)->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA))
1444        {
1445          assert(this->getPOC() > rpcPic->getSlice(0)->getPOC());
1446        }
1447      }
1448    }
1449  }
1450}
1451
1452
1453
1454/** Function for applying picture marking based on the Reference Picture Set in pReferencePictureSet.
1455*/
1456Void TComSlice::applyReferencePictureSet( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet)
1457{
1458  TComPic* rpcPic;
1459  Int i, isReference;
1460
1461#if !ALIGNED_BUMPING
1462  checkLeadingPictureRestrictions(rcListPic);
1463#endif
1464
1465  // loop through all pictures in the reference picture buffer
1466  TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1467  while ( iterPic != rcListPic.end())
1468  {
1469    rpcPic = *(iterPic++);
1470
1471    if(!rpcPic->getSlice( 0 )->isReferenced())
1472    {
1473      continue;
1474    }
1475
1476    isReference = 0;
1477    // loop through all pictures in the Reference Picture Set
1478    // to see if the picture should be kept as reference picture
1479    for(i=0;i<pReferencePictureSet->getNumberOfPositivePictures()+pReferencePictureSet->getNumberOfNegativePictures();i++)
1480    {
1481      if(!rpcPic->getIsLongTerm() && rpcPic->getPicSym()->getSlice(0)->getPOC() == this->getPOC() + pReferencePictureSet->getDeltaPOC(i))
1482      {
1483        isReference = 1;
1484        rpcPic->setUsedByCurr(pReferencePictureSet->getUsed(i));
1485        rpcPic->setIsLongTerm(0);
1486      }
1487    }
1488    for(;i<pReferencePictureSet->getNumberOfPictures();i++)
1489    {
1490      if(pReferencePictureSet->getCheckLTMSBPresent(i)==true)
1491      {
1492        if(rpcPic->getIsLongTerm() && (rpcPic->getPicSym()->getSlice(0)->getPOC()) == pReferencePictureSet->getPOC(i))
1493        {
1494          isReference = 1;
1495          rpcPic->setUsedByCurr(pReferencePictureSet->getUsed(i));
1496        }
1497      }
1498      else 
1499      {
1500        Int pocCycle = 1<<rpcPic->getPicSym()->getSlice(0)->getSPS()->getBitsForPOC();
1501        Int curPoc = rpcPic->getPicSym()->getSlice(0)->getPOC() & (pocCycle-1);
1502        Int refPoc = pReferencePictureSet->getPOC(i) & (pocCycle-1);
1503        if(rpcPic->getIsLongTerm() && curPoc == refPoc)
1504        {
1505          isReference = 1;
1506          rpcPic->setUsedByCurr(pReferencePictureSet->getUsed(i));
1507        }
1508      }
1509
1510    }
1511#if DISCARDABLE_PIC_RPS
1512    if( isReference ) // Current picture is in the temporal RPS
1513    {
1514      assert( rpcPic->getSlice(0)->getDiscardableFlag() == 0 ); // Temporal RPS shall not contain picture with discardable_flag equal to 1
1515    }
1516#endif
1517    // mark the picture as "unused for reference" if it is not in
1518    // the Reference Picture Set
1519    if(rpcPic->getPicSym()->getSlice(0)->getPOC() != this->getPOC() && isReference == 0)   
1520    {           
1521      rpcPic->getSlice( 0 )->setReferenced( false );   
1522      rpcPic->setUsedByCurr(0);
1523      rpcPic->setIsLongTerm(0);
1524    }
1525    //check that pictures of higher temporal layers are not used
1526    assert(rpcPic->getSlice( 0 )->isReferenced()==0||rpcPic->getUsedByCurr()==0||rpcPic->getTLayer()<=this->getTLayer());
1527    //check that pictures of higher or equal temporal layer are not in the RPS if the current picture is a TSA picture
1528    if(this->getNalUnitType() == NAL_UNIT_CODED_SLICE_TSA_R || this->getNalUnitType() == NAL_UNIT_CODED_SLICE_TSA_N)
1529    {
1530      assert(rpcPic->getSlice( 0 )->isReferenced()==0||rpcPic->getTLayer()<this->getTLayer());
1531    }
1532    //check that pictures marked as temporal layer non-reference pictures are not used for reference
1533    if(rpcPic->getPicSym()->getSlice(0)->getPOC() != this->getPOC() && rpcPic->getTLayer()==this->getTLayer())
1534    {
1535      assert(rpcPic->getSlice( 0 )->isReferenced()==0||rpcPic->getUsedByCurr()==0||rpcPic->getSlice( 0 )->getTemporalLayerNonReferenceFlag()==false);
1536    }
1537  }
1538}
1539
1540/** Function for applying picture marking based on the Reference Picture Set in pReferencePictureSet.
1541*/
1542#if ALLOW_RECOVERY_POINT_AS_RAP
1543Int TComSlice::checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool printErrors, Int pocRandomAccess, Bool bUseRecoveryPoint)
1544#else
1545Int TComSlice::checkThatAllRefPicsAreAvailable( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool printErrors, Int pocRandomAccess)
1546#endif
1547{
1548#if ALLOW_RECOVERY_POINT_AS_RAP
1549  Int atLeastOneUnabledByRecoveryPoint = 0;
1550  Int atLeastOneFlushedByPreviousIDR = 0;
1551#endif
1552  TComPic* rpcPic;
1553  Int i, isAvailable;
1554  Int atLeastOneLost = 0;
1555  Int atLeastOneRemoved = 0;
1556  Int iPocLost = 0;
1557
1558  // loop through all long-term pictures in the Reference Picture Set
1559  // to see if the picture should be kept as reference picture
1560  for(i=pReferencePictureSet->getNumberOfNegativePictures()+pReferencePictureSet->getNumberOfPositivePictures();i<pReferencePictureSet->getNumberOfPictures();i++)
1561  {
1562    isAvailable = 0;
1563    // loop through all pictures in the reference picture buffer
1564    TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1565    while ( iterPic != rcListPic.end())
1566    {
1567      rpcPic = *(iterPic++);
1568      if(pReferencePictureSet->getCheckLTMSBPresent(i)==true)
1569      {
1570        if(rpcPic->getIsLongTerm() && (rpcPic->getPicSym()->getSlice(0)->getPOC()) == pReferencePictureSet->getPOC(i) && rpcPic->getSlice(0)->isReferenced())
1571        {
1572#if ALLOW_RECOVERY_POINT_AS_RAP
1573          if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess && this->getPOC() + pReferencePictureSet->getDeltaPOC(i) < pocRandomAccess)
1574          {
1575            isAvailable = 0;
1576          }
1577          else
1578          {
1579          isAvailable = 1;
1580        }
1581#else
1582          isAvailable = 1;
1583#endif
1584        }
1585      }
1586      else 
1587      {
1588        Int pocCycle = 1<<rpcPic->getPicSym()->getSlice(0)->getSPS()->getBitsForPOC();
1589        Int curPoc = rpcPic->getPicSym()->getSlice(0)->getPOC() & (pocCycle-1);
1590        Int refPoc = pReferencePictureSet->getPOC(i) & (pocCycle-1);
1591        if(rpcPic->getIsLongTerm() && curPoc == refPoc && rpcPic->getSlice(0)->isReferenced())
1592        {
1593#if ALLOW_RECOVERY_POINT_AS_RAP
1594          if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess && this->getPOC() + pReferencePictureSet->getDeltaPOC(i) < pocRandomAccess)
1595          {
1596            isAvailable = 0;
1597          }
1598          else
1599          {
1600          isAvailable = 1;
1601        }
1602#else
1603          isAvailable = 1;
1604#endif
1605        }
1606      }
1607    }
1608    // if there was no such long-term check the short terms
1609    if(!isAvailable)
1610    {
1611      iterPic = rcListPic.begin();
1612      while ( iterPic != rcListPic.end())
1613      {
1614        rpcPic = *(iterPic++);
1615
1616        Int pocCycle = 1 << rpcPic->getPicSym()->getSlice(0)->getSPS()->getBitsForPOC();
1617        Int curPoc = rpcPic->getPicSym()->getSlice(0)->getPOC();
1618        Int refPoc = pReferencePictureSet->getPOC(i);
1619        if (!pReferencePictureSet->getCheckLTMSBPresent(i))
1620        {
1621          curPoc = curPoc & (pocCycle - 1);
1622          refPoc = refPoc & (pocCycle - 1);
1623        }
1624       
1625        if (rpcPic->getSlice(0)->isReferenced() && curPoc == refPoc)
1626        {
1627#if ALLOW_RECOVERY_POINT_AS_RAP
1628          if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess && this->getPOC() + pReferencePictureSet->getDeltaPOC(i) < pocRandomAccess)
1629          {
1630            isAvailable = 0;
1631          }
1632          else
1633          {
1634          isAvailable = 1;
1635          rpcPic->setIsLongTerm(1);
1636          break;
1637        }
1638#else
1639          isAvailable = 1;
1640          rpcPic->setIsLongTerm(1);
1641          break;
1642#endif
1643        }
1644      }
1645    }
1646    // report that a picture is lost if it is in the Reference Picture Set
1647    // but not available as reference picture
1648    if(isAvailable == 0)   
1649    {           
1650      if (this->getPOC() + pReferencePictureSet->getDeltaPOC(i) >= pocRandomAccess)
1651      {
1652        if(!pReferencePictureSet->getUsed(i) )
1653        {
1654          if(printErrors)
1655          {
1656            printf("\nLong-term reference picture with POC = %3d seems to have been removed or not correctly decoded.", this->getPOC() + pReferencePictureSet->getDeltaPOC(i));
1657          }
1658          atLeastOneRemoved = 1;
1659        }
1660        else
1661        {
1662          if(printErrors)
1663          {
1664            printf("\nLong-term reference picture with POC = %3d is lost or not correctly decoded!", this->getPOC() + pReferencePictureSet->getDeltaPOC(i));
1665          }
1666          atLeastOneLost = 1;
1667          iPocLost=this->getPOC() + pReferencePictureSet->getDeltaPOC(i);
1668        }
1669      }
1670#if ALLOW_RECOVERY_POINT_AS_RAP
1671      else if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess)
1672      {
1673        atLeastOneUnabledByRecoveryPoint = 1;
1674      }
1675      else if(bUseRecoveryPoint && (this->getAssociatedIRAPType()==NAL_UNIT_CODED_SLICE_IDR_N_LP || this->getAssociatedIRAPType()==NAL_UNIT_CODED_SLICE_IDR_W_RADL))
1676      {
1677        atLeastOneFlushedByPreviousIDR = 1;
1678      }
1679#endif
1680    }
1681  } 
1682  // loop through all short-term pictures in the Reference Picture Set
1683  // to see if the picture should be kept as reference picture
1684  for(i=0;i<pReferencePictureSet->getNumberOfNegativePictures()+pReferencePictureSet->getNumberOfPositivePictures();i++)
1685  {
1686    isAvailable = 0;
1687    // loop through all pictures in the reference picture buffer
1688    TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1689    while ( iterPic != rcListPic.end())
1690    {
1691      rpcPic = *(iterPic++);
1692
1693      if(!rpcPic->getIsLongTerm() && rpcPic->getPicSym()->getSlice(0)->getPOC() == this->getPOC() + pReferencePictureSet->getDeltaPOC(i) && rpcPic->getSlice(0)->isReferenced())
1694      {
1695#if ALLOW_RECOVERY_POINT_AS_RAP
1696        if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess && this->getPOC() + pReferencePictureSet->getDeltaPOC(i) < pocRandomAccess)
1697        {
1698          isAvailable = 0;
1699        }
1700        else
1701        {
1702        isAvailable = 1;
1703      }
1704#else
1705        isAvailable = 1;
1706#endif
1707      }
1708    }
1709    // report that a picture is lost if it is in the Reference Picture Set
1710    // but not available as reference picture
1711    if(isAvailable == 0)   
1712    {           
1713      if (this->getPOC() + pReferencePictureSet->getDeltaPOC(i) >= pocRandomAccess)
1714      {
1715        if(!pReferencePictureSet->getUsed(i) )
1716        {
1717          if(printErrors)
1718          {
1719            printf("\nShort-term reference picture with POC = %3d seems to have been removed or not correctly decoded.", this->getPOC() + pReferencePictureSet->getDeltaPOC(i));
1720          }
1721          atLeastOneRemoved = 1;
1722        }
1723        else
1724        {
1725          if(printErrors)
1726          {
1727            printf("\nShort-term reference picture with POC = %3d is lost or not correctly decoded!", this->getPOC() + pReferencePictureSet->getDeltaPOC(i));
1728          }
1729          atLeastOneLost = 1;
1730          iPocLost=this->getPOC() + pReferencePictureSet->getDeltaPOC(i);
1731        }
1732      }
1733#if ALLOW_RECOVERY_POINT_AS_RAP
1734      else if(bUseRecoveryPoint && this->getPOC() > pocRandomAccess)
1735      {
1736        atLeastOneUnabledByRecoveryPoint = 1;
1737      }
1738      else if(bUseRecoveryPoint && (this->getAssociatedIRAPType()==NAL_UNIT_CODED_SLICE_IDR_N_LP || this->getAssociatedIRAPType()==NAL_UNIT_CODED_SLICE_IDR_W_RADL))
1739      {
1740        atLeastOneFlushedByPreviousIDR = 1;
1741      }
1742#endif
1743    }
1744    }
1745#if ALLOW_RECOVERY_POINT_AS_RAP
1746  if(atLeastOneUnabledByRecoveryPoint || atLeastOneFlushedByPreviousIDR)
1747  {
1748    return -1;
1749  }   
1750#endif
1751  if(atLeastOneLost)
1752  {
1753    return iPocLost+1;
1754  }
1755  if(atLeastOneRemoved)
1756  {
1757    return -2;
1758  }
1759  else
1760  {
1761    return 0;
1762  }
1763}
1764
1765/** Function for constructing an explicit Reference Picture Set out of the available pictures in a referenced Reference Picture Set
1766*/
1767#if ALLOW_RECOVERY_POINT_AS_RAP
1768Void TComSlice::createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool isRAP, Int pocRandomAccess, Bool bUseRecoveryPoint)
1769#else
1770Void TComSlice::createExplicitReferencePictureSetFromReference( TComList<TComPic*>& rcListPic, TComReferencePictureSet *pReferencePictureSet, Bool isRAP)
1771#endif
1772{
1773  TComPic* rpcPic;
1774  Int i, j;
1775  Int k = 0;
1776  Int nrOfNegativePictures = 0;
1777  Int nrOfPositivePictures = 0;
1778  TComReferencePictureSet* pcRPS = this->getLocalRPS();
1779
1780  // loop through all pictures in the Reference Picture Set
1781  for(i=0;i<pReferencePictureSet->getNumberOfPictures();i++)
1782  {
1783    j = 0;
1784    // loop through all pictures in the reference picture buffer
1785    TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1786    while ( iterPic != rcListPic.end())
1787    {
1788      j++;
1789      rpcPic = *(iterPic++);
1790
1791      if(rpcPic->getPicSym()->getSlice(0)->getPOC() == this->getPOC() + pReferencePictureSet->getDeltaPOC(i) && rpcPic->getSlice(0)->isReferenced())
1792      {
1793        // This picture exists as a reference picture
1794        // and should be added to the explicit Reference Picture Set
1795        pcRPS->setDeltaPOC(k, pReferencePictureSet->getDeltaPOC(i));
1796        pcRPS->setUsed(k, pReferencePictureSet->getUsed(i) && (!isRAP));
1797#if ALLOW_RECOVERY_POINT_AS_RAP
1798        pcRPS->setUsed(k, pcRPS->getUsed(k) && !(bUseRecoveryPoint && this->getPOC() > pocRandomAccess && this->getPOC() + pReferencePictureSet->getDeltaPOC(i) < pocRandomAccess) ); 
1799#endif
1800        if(pcRPS->getDeltaPOC(k) < 0)
1801        {
1802          nrOfNegativePictures++;
1803        }
1804        else
1805        {
1806          nrOfPositivePictures++;
1807        }
1808        k++;
1809      }
1810    }
1811  }
1812#if EFFICIENT_FIELD_IRAP
1813  Bool useNewRPS = false;
1814  // if current picture is complimentary field associated to IRAP, add the IRAP to its RPS.
1815  if(m_pcPic->isField())
1816  {
1817    TComList<TComPic*>::iterator iterPic = rcListPic.begin();
1818    while ( iterPic != rcListPic.end())
1819    {
1820      rpcPic = *(iterPic++);
1821      if(rpcPic->getPicSym()->getSlice(0)->getPOC() == this->getAssociatedIRAPPOC() && this->getAssociatedIRAPPOC() == this->getPOC()+1)
1822      {
1823        pcRPS->setDeltaPOC(k, 1);
1824        pcRPS->setUsed(k, true);
1825        nrOfPositivePictures++;
1826        k ++;
1827        useNewRPS = true;
1828      }
1829    }
1830  }
1831#endif
1832  pcRPS->setNumberOfNegativePictures(nrOfNegativePictures);
1833  pcRPS->setNumberOfPositivePictures(nrOfPositivePictures);
1834  pcRPS->setNumberOfPictures(nrOfNegativePictures+nrOfPositivePictures);
1835  // This is a simplistic inter rps example. A smarter encoder will look for a better reference RPS to do the
1836  // inter RPS prediction with.  Here we just use the reference used by pReferencePictureSet.
1837  // If pReferencePictureSet is not inter_RPS_predicted, then inter_RPS_prediction is for the current RPS also disabled.
1838  if (!pReferencePictureSet->getInterRPSPrediction()
1839#if EFFICIENT_FIELD_IRAP
1840    || useNewRPS
1841#endif
1842    )
1843  {
1844    pcRPS->setInterRPSPrediction(false);
1845    pcRPS->setNumRefIdc(0);
1846  }
1847  else
1848  {
1849    Int rIdx =  this->getRPSidx() - pReferencePictureSet->getDeltaRIdxMinus1() - 1;
1850    Int deltaRPS = pReferencePictureSet->getDeltaRPS();
1851    TComReferencePictureSet* pcRefRPS = this->getSPS()->getRPSList()->getReferencePictureSet(rIdx);
1852    Int iRefPics = pcRefRPS->getNumberOfPictures();
1853    Int iNewIdc=0;
1854    for(i=0; i<= iRefPics; i++) 
1855    {
1856      Int deltaPOC = ((i != iRefPics)? pcRefRPS->getDeltaPOC(i) : 0);  // check if the reference abs POC is >= 0
1857      Int iRefIdc = 0;
1858      for (j=0; j < pcRPS->getNumberOfPictures(); j++) // loop through the  pictures in the new RPS
1859      {
1860        if ( (deltaPOC + deltaRPS) == pcRPS->getDeltaPOC(j))
1861        {
1862          if (pcRPS->getUsed(j))
1863          {
1864            iRefIdc = 1;
1865          }
1866          else
1867          {
1868            iRefIdc = 2;
1869          }
1870        }
1871      }
1872      pcRPS->setRefIdc(i, iRefIdc);
1873      iNewIdc++;
1874    }
1875    pcRPS->setInterRPSPrediction(true);
1876    pcRPS->setNumRefIdc(iNewIdc);
1877    pcRPS->setDeltaRPS(deltaRPS); 
1878    pcRPS->setDeltaRIdxMinus1(pReferencePictureSet->getDeltaRIdxMinus1() + this->getSPS()->getRPSList()->getNumberOfReferencePictureSets() - this->getRPSidx());
1879  }
1880
1881  this->setRPS(pcRPS);
1882  this->setRPSidx(-1);
1883}
1884
1885/** get AC and DC values for weighted pred
1886 * \param *wp
1887 * \returns Void
1888 */
1889Void  TComSlice::getWpAcDcParam(wpACDCParam *&wp)
1890{
1891  wp = m_weightACDCParam;
1892}
1893
1894/** init AC and DC values for weighted pred
1895 * \returns Void
1896 */
1897Void  TComSlice::initWpAcDcParam()
1898{
1899  for(Int iComp = 0; iComp < 3; iComp++ )
1900  {
1901    m_weightACDCParam[iComp].iAC = 0;
1902    m_weightACDCParam[iComp].iDC = 0;
1903  }
1904}
1905
1906/** get WP tables for weighted pred
1907 * \param RefPicList
1908 * \param iRefIdx
1909 * \param *&wpScalingParam
1910 * \returns Void
1911 */
1912Void  TComSlice::getWpScaling( RefPicList e, Int iRefIdx, wpScalingParam *&wp )
1913{
1914  wp = m_weightPredTable[e][iRefIdx];
1915}
1916
1917/** reset Default WP tables settings : no weight.
1918 * \param wpScalingParam
1919 * \returns Void
1920 */
1921Void  TComSlice::resetWpScaling()
1922{
1923  for ( Int e=0 ; e<2 ; e++ )
1924  {
1925    for ( Int i=0 ; i<MAX_NUM_REF ; i++ )
1926    {
1927      for ( Int yuv=0 ; yuv<3 ; yuv++ )
1928      {
1929        wpScalingParam  *pwp = &(m_weightPredTable[e][i][yuv]);
1930        pwp->bPresentFlag      = false;
1931        pwp->uiLog2WeightDenom = 0;
1932        pwp->uiLog2WeightDenom = 0;
1933        pwp->iWeight           = 1;
1934        pwp->iOffset           = 0;
1935      }
1936    }
1937  }
1938}
1939
1940/** init WP table
1941 * \returns Void
1942 */
1943Void  TComSlice::initWpScaling()
1944{
1945  for ( Int e=0 ; e<2 ; e++ )
1946  {
1947    for ( Int i=0 ; i<MAX_NUM_REF ; i++ )
1948    {
1949      for ( Int yuv=0 ; yuv<3 ; yuv++ )
1950      {
1951        wpScalingParam  *pwp = &(m_weightPredTable[e][i][yuv]);
1952        if ( !pwp->bPresentFlag ) 
1953        {
1954          // Inferring values not present :
1955          pwp->iWeight = (1 << pwp->uiLog2WeightDenom);
1956          pwp->iOffset = 0;
1957        }
1958
1959        pwp->w      = pwp->iWeight;
1960        Int bitDepth = yuv ? g_bitDepthC : g_bitDepthY;
1961        pwp->o      = pwp->iOffset << (bitDepth-8);
1962        pwp->shift  = pwp->uiLog2WeightDenom;
1963        pwp->round  = (pwp->uiLog2WeightDenom>=1) ? (1 << (pwp->uiLog2WeightDenom-1)) : (0);
1964      }
1965    }
1966  }
1967}
1968
1969#if REPN_FORMAT_IN_VPS
1970UInt TComSlice::getPicWidthInLumaSamples()
1971{
1972  TComSPS *sps = getSPS();
1973  TComVPS *vps = getVPS();
1974  UInt retVal, layerId = getLayerId();
1975#if O0096_REP_FORMAT_INDEX
1976  if ( layerId == 0 )
1977  {
1978    retVal = sps->getPicWidthInLumaSamples();
1979  }
1980  else
1981  {
1982    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : layerId) )->getPicWidthVpsInLumaSamples();
1983  }
1984#else
1985  if( ( layerId == 0 ) || sps->getUpdateRepFormatFlag() )
1986  {
1987    retVal = sps->getPicWidthInLumaSamples();
1988  }
1989  else
1990  {
1991    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(layerId) )->getPicWidthVpsInLumaSamples();
1992  }
1993#endif
1994  return retVal;
1995}
1996UInt TComSlice::getPicHeightInLumaSamples()
1997{
1998  TComSPS *sps = getSPS();
1999  TComVPS *vps = getVPS();
2000  UInt retVal, layerId = getLayerId();
2001#if O0096_REP_FORMAT_INDEX
2002  if( layerId == 0 )
2003  {
2004    retVal = sps->getPicHeightInLumaSamples();
2005  }
2006  else
2007  {
2008    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : layerId) )->getPicHeightVpsInLumaSamples();
2009  }
2010#else
2011  if( ( layerId == 0 ) || sps->getUpdateRepFormatFlag() )
2012  {
2013    retVal = sps->getPicHeightInLumaSamples();
2014  }
2015  else
2016  {
2017    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(layerId) )->getPicHeightVpsInLumaSamples();
2018  }
2019#endif
2020  return retVal;
2021}
2022#if AUXILIARY_PICTURES
2023ChromaFormat TComSlice::getChromaFormatIdc()
2024#else
2025UInt TComSlice::getChromaFormatIdc()
2026#endif
2027{
2028  TComSPS *sps = getSPS();
2029  TComVPS *vps = getVPS();
2030#if AUXILIARY_PICTURES
2031  ChromaFormat retVal;
2032  UInt layerId = getLayerId();
2033#else
2034  UInt retVal, layerId = getLayerId();
2035#endif
2036#if O0096_REP_FORMAT_INDEX
2037  if( layerId == 0 )
2038  {
2039    retVal = sps->getChromaFormatIdc();
2040  }
2041  else
2042  {
2043    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : layerId) )->getChromaFormatVpsIdc();
2044  }
2045#else
2046  if( ( layerId == 0 ) || sps->getUpdateRepFormatFlag() )
2047  {
2048    retVal = sps->getChromaFormatIdc();
2049  }
2050  else
2051  {
2052    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(layerId) )->getChromaFormatVpsIdc();
2053  }
2054#endif
2055  return retVal;
2056}
2057UInt TComSlice::getBitDepthY()
2058{
2059  TComSPS *sps = getSPS();
2060  TComVPS *vps = getVPS();
2061  UInt retVal, layerId = getLayerId();
2062#if O0096_REP_FORMAT_INDEX
2063  if( layerId == 0 )
2064  {
2065    retVal = sps->getBitDepthY();
2066  }
2067  else
2068  {
2069    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : layerId) )->getBitDepthVpsLuma();
2070  }
2071#else
2072  if( ( layerId == 0 ) || sps->getUpdateRepFormatFlag() )
2073  {
2074    retVal = sps->getBitDepthY();
2075  }
2076  else
2077  {
2078    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(layerId) )->getBitDepthVpsLuma();
2079  }
2080#endif
2081  return retVal;
2082}
2083UInt TComSlice::getBitDepthC()
2084{
2085  TComSPS *sps = getSPS();
2086  TComVPS *vps = getVPS();
2087  UInt retVal, layerId = getLayerId();
2088#if O0096_REP_FORMAT_INDEX
2089  if( layerId == 0 )
2090  {
2091    retVal = sps->getBitDepthC();
2092  }
2093  else
2094  {
2095    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(sps->getUpdateRepFormatFlag() ? sps->getUpdateRepFormatIndex() : layerId) )->getBitDepthVpsChroma();
2096  }
2097#else
2098  if( ( layerId == 0 ) || sps->getUpdateRepFormatFlag() )
2099  {
2100    retVal = sps->getBitDepthC();
2101  }
2102  else
2103  {
2104    retVal = vps->getVpsRepFormat( vps->getVpsRepFormatIdx(layerId) )->getBitDepthVpsChroma();
2105  }
2106#endif
2107  return retVal;
2108}
2109Int TComSlice::getQpBDOffsetY()
2110{
2111  return (getBitDepthY() - 8) * 6;
2112}
2113Int TComSlice::getQpBDOffsetC()
2114{
2115  return (getBitDepthC() - 8) * 6;
2116}
2117
2118RepFormat::RepFormat()
2119#if AUXILIARY_PICTURES
2120: m_chromaFormatVpsIdc          (CHROMA_420)
2121#else
2122: m_chromaFormatVpsIdc          (0)
2123#endif
2124, m_separateColourPlaneVpsFlag  (false)
2125, m_picWidthVpsInLumaSamples    (0)
2126, m_picHeightVpsInLumaSamples   (0)
2127, m_bitDepthVpsLuma             (0)
2128, m_bitDepthVpsChroma           (0)
2129{}
2130#if RESOLUTION_BASED_DPB
2131Void RepFormat::init()
2132{
2133  m_chromaFormatVpsIdc          = CHROMA_420;
2134  m_separateColourPlaneVpsFlag  = false;
2135  m_picWidthVpsInLumaSamples    = 0;
2136  m_picHeightVpsInLumaSamples   = 0;
2137  m_bitDepthVpsLuma             = 0;
2138  m_bitDepthVpsChroma           = 0;
2139}
2140#endif
2141#endif
2142
2143// ------------------------------------------------------------------------------------------------
2144// Video parameter set (VPS)
2145// ------------------------------------------------------------------------------------------------
2146#if SVC_EXTENSION
2147TComVPS::TComVPS()
2148: m_VPSId                     (  0)
2149, m_uiMaxTLayers              (  1)
2150, m_uiMaxLayers               (  1)
2151, m_bTemporalIdNestingFlag    (false)
2152, m_numHrdParameters          (  0)
2153#if !VPS_RENAME
2154, m_maxNuhReservedZeroLayerId (  0)
2155#endif
2156, m_hrdParameters             (NULL)
2157, m_hrdOpSetIdx               (NULL)
2158, m_cprmsPresentFlag          (NULL)
2159#if VPS_RENAME
2160, m_maxLayerId                (0)
2161, m_numLayerSets              (0)
2162#endif
2163#if VPS_EXTN_OP_LAYER_SETS
2164, m_numOutputLayerSets        (0) 
2165#endif
2166, m_numProfileTierLevel       (0)
2167#if !VPS_EXTN_UEV_CODING
2168, m_moreOutputLayerSetsThanDefaultFlag (false)
2169#endif
2170, m_numAddOutputLayerSets     (0)
2171#if P0295_DEFAULT_OUT_LAYER_IDC
2172, m_defaultTargetOutputLayerIdc     (0)
2173#else
2174#if O0109_DEFAULT_ONE_OUT_LAYER_IDC
2175, m_defaultOneTargetOutputLayerIdc     (0)
2176#else
2177, m_defaultOneTargetOutputLayerFlag    (false)
2178#endif
2179#endif
2180#if VPS_VUI_BITRATE_PICRATE
2181, m_bitRatePresentVpsFlag     (false)
2182, m_picRatePresentVpsFlag     (false)
2183#endif
2184#if REPN_FORMAT_IN_VPS
2185#if Q0195_REP_FORMAT_CLEANUP
2186, m_repFormatIdxPresentFlag   (false)
2187#else
2188, m_repFormatIdxPresentFlag   (true)
2189#endif
2190, m_vpsNumRepFormats          (1)
2191#endif
2192#if VIEW_ID_RELATED_SIGNALING
2193#if O0109_VIEW_ID_LEN
2194, m_viewIdLen                (0)
2195#else
2196, m_viewIdLenMinus1           (0)
2197#endif
2198#endif
2199#if !P0307_REMOVE_VPS_VUI_OFFSET
2200#if VPS_VUI_OFFSET
2201, m_vpsVuiOffset (0)
2202#endif
2203#endif
2204#if P0307_VPS_NON_VUI_EXTENSION
2205, m_vpsNonVuiExtLength (0)
2206#endif
2207{
2208  for( Int i = 0; i < MAX_TLAYER; i++)
2209  {
2210    m_numReorderPics[i] = 0;
2211    m_uiMaxDecPicBuffering[i] = 1; 
2212    m_uiMaxLatencyIncrease[i] = 0;
2213  }
2214#if VPS_EXTN_MASK_AND_DIM_INFO
2215  m_avcBaseLayerFlag = false;
2216  m_splittingFlag = false;
2217  ::memset(m_scalabilityMask, 0, sizeof(m_scalabilityMask));
2218  ::memset(m_dimensionIdLen, 0, sizeof(m_dimensionIdLen));
2219  m_nuhLayerIdPresentFlag = false;
2220  ::memset(m_layerIdInNuh, 0, sizeof(m_layerIdInNuh));
2221  ::memset(m_dimensionId, 0, sizeof(m_dimensionId));
2222
2223  m_numScalabilityTypes = 0;
2224  ::memset(m_layerIdInVps, 0, sizeof(m_layerIdInVps));
2225#endif
2226#if VPS_EXTN_PROFILE_INFO
2227  ::memset(m_profilePresentFlag, 0, sizeof(m_profilePresentFlag));
2228#if !P0048_REMOVE_PROFILE_REF
2229  ::memset(m_profileLayerSetRef, 0, sizeof(m_profileLayerSetRef));
2230#endif
2231#endif
2232#if VPS_EXTN_OP_LAYER_SETS
2233  ::memset(m_layerIdIncludedFlag, 0, sizeof(m_layerIdIncludedFlag));
2234  // Consider dynamic allocation for outputLayerSetIdx and outputLayerFlag
2235  ::memset(m_outputLayerSetIdx, 0, sizeof(m_outputLayerSetIdx));
2236  ::memset(m_outputLayerFlag, 0, sizeof(m_outputLayerFlag));
2237#endif
2238#if VPS_EXTN_DIRECT_REF_LAYERS
2239  ::memset(m_directDependencyFlag, 0, sizeof(m_directDependencyFlag));
2240  ::memset(m_numDirectRefLayers,   0, sizeof(m_numDirectRefLayers  ));
2241  ::memset(m_refLayerId,           0, sizeof(m_refLayerId          ));
2242  m_directDepTypeLen = 2;
2243  ::memset(m_directDependencyType, 0, sizeof(m_directDependencyType));
2244#endif
2245#if DERIVE_LAYER_ID_LIST_VARIABLES
2246  ::memset(m_layerSetLayerIdList,  0, sizeof(m_layerSetLayerIdList));
2247  ::memset(m_numLayerInIdList,     0, sizeof(m_numLayerInIdList   )); 
2248#endif
2249  ::memset(m_profileLevelTierIdx,  0, sizeof(m_profileLevelTierIdx));
2250  m_maxOneActiveRefLayerFlag = true;
2251#if O0062_POC_LSB_NOT_PRESENT_FLAG
2252  ::memset(m_pocLsbNotPresentFlag, 0, sizeof(m_pocLsbNotPresentFlag));
2253#endif
2254#if O0223_PICTURE_TYPES_ALIGN_FLAG
2255  m_crossLayerPictureTypeAlignFlag = true;
2256#endif
2257#if N0147_IRAP_ALIGN_FLAG
2258  m_crossLayerIrapAlignFlag = true;
2259#endif
2260#if P0068_CROSS_LAYER_ALIGNED_IDR_ONLY_FOR_IRAP_FLAG
2261  m_crossLayerAlignedIdrOnlyFlag = false;
2262#endif
2263#if N0120_MAX_TID_REF_PRESENT_FLAG
2264  m_maxTidRefPresentFlag = true;
2265#endif
2266  for( Int i = 0; i < MAX_VPS_LAYER_ID_PLUS1 - 1; i++)
2267  {
2268#if O0225_MAX_TID_FOR_REF_LAYERS
2269    for( Int j = 0; j < MAX_VPS_LAYER_ID_PLUS1; j++)
2270    {
2271      m_maxTidIlRefPicsPlus1[i][j] = m_uiMaxTLayers + 1;
2272    }
2273#else
2274    m_maxTidIlRefPicsPlus1[i] = m_uiMaxTLayers + 1;
2275#endif
2276  }
2277#if VPS_VUI_TILES_NOT_IN_USE__FLAG
2278  m_tilesNotInUseFlag = true;
2279  ::memset(m_tilesInUseFlag,  0, sizeof(m_tilesInUseFlag));
2280  ::memset(m_loopFilterNotAcrossTilesFlag,  0, sizeof(m_loopFilterNotAcrossTilesFlag));
2281#endif
2282#if TILE_BOUNDARY_ALIGNED_FLAG
2283  ::memset(m_tileBoundariesAlignedFlag,  0, sizeof(m_tileBoundariesAlignedFlag));
2284#endif
2285#if VPS_VUI_WPP_NOT_IN_USE__FLAG
2286  m_wppNotInUseFlag = true;
2287  ::memset(m_wppInUseFlag,  0, sizeof(m_wppInUseFlag));
2288#endif
2289#if N0160_VUI_EXT_ILP_REF
2290  m_ilpRestrictedRefLayersFlag = false;
2291  ::memset(m_minSpatialSegmentOffsetPlus1,  0, sizeof(m_minSpatialSegmentOffsetPlus1));
2292  ::memset(m_ctuBasedOffsetEnabledFlag,     0, sizeof(m_ctuBasedOffsetEnabledFlag));
2293  ::memset(m_minHorizontalCtuOffsetPlus1,   0, sizeof(m_minHorizontalCtuOffsetPlus1));
2294#endif
2295#if VPS_VUI_VIDEO_SIGNAL
2296  m_vidSigPresentVpsFlag=true;
2297  m_vpsVidSigInfo=1;
2298  ::memset( m_vpsVidSigIdx, 0, sizeof(m_vpsVidSigIdx) );
2299  m_vpsVidSigIdx[0]=0;
2300  for (Int i=0; i < 16; i++)
2301  {
2302    m_vpsVidFormat[i] = 5;
2303    m_vpsFullRangeFlag[i] = false;
2304    m_vpsColorPrimaries[i] = 2;
2305    m_vpsTransChar[i] = 2;
2306    m_vpsMatCoeff[i] = 2;
2307  }
2308#endif
2309#if VPS_VUI_BITRATE_PICRATE 
2310  ::memset(m_bitRatePresentFlag, 0, sizeof(m_bitRatePresentFlag));
2311  ::memset(m_picRatePresentFlag, 0, sizeof(m_picRatePresentFlag));
2312  ::memset(m_avgBitRate        , 0, sizeof(m_avgBitRate)        );
2313  ::memset(m_maxBitRate        , 0, sizeof(m_maxBitRate)        );
2314  ::memset(m_constPicRateIdc   , 0, sizeof(m_constPicRateIdc)   );
2315  ::memset(m_avgPicRate        , 0, sizeof(m_avgPicRate)        );
2316#endif
2317#if REPN_FORMAT_IN_VPS
2318  ::memset( m_vpsRepFormatIdx, 0, sizeof(m_vpsRepFormatIdx) );
2319#endif
2320#if VIEW_ID_RELATED_SIGNALING
2321  ::memset(m_viewIdVal, 0, sizeof(m_viewIdVal));
2322#endif
2323#if O0092_0094_DEPENDENCY_CONSTRAINT
2324  for (Int i = 0; i < MAX_NUM_LAYER_IDS; i++)
2325  {
2326    m_numberRefLayers[i] = 0;
2327    for (Int j = 0; j < MAX_NUM_LAYER_IDS; j++)
2328    {
2329      m_recursiveRefLayerFlag[i][j] = 0;
2330    }
2331  }
2332#endif
2333#if VPS_DPB_SIZE_TABLE
2334  ::memset( m_subLayerFlagInfoPresentFlag,  0, sizeof(m_subLayerFlagInfoPresentFlag ) );
2335  ::memset( m_subLayerDpbInfoPresentFlag,   0, sizeof(m_subLayerDpbInfoPresentFlag )  );
2336  ::memset( m_maxVpsDecPicBufferingMinus1,  0, sizeof(m_maxVpsDecPicBufferingMinus1 ) );
2337#if RESOLUTION_BASED_DPB
2338  ::memset( m_maxVpsLayerDecPicBuffMinus1,  0, sizeof(m_maxVpsLayerDecPicBuffMinus1 ) );
2339#endif
2340  ::memset( m_maxVpsNumReorderPics,         0, sizeof(m_maxVpsNumReorderPics )        );
2341  ::memset( m_maxVpsLatencyIncreasePlus1,   0, sizeof(m_maxVpsLatencyIncreasePlus1 )  );
2342  ::memset( m_numSubDpbs                ,   0, sizeof(m_numSubDpbs)                   );
2343#endif
2344}
2345#else
2346TComVPS::TComVPS()
2347: m_VPSId                     (  0)
2348, m_uiMaxTLayers              (  1)
2349, m_uiMaxLayers               (  1)
2350, m_bTemporalIdNestingFlag    (false)
2351, m_numHrdParameters          (  0)
2352, m_maxNuhReservedZeroLayerId (  0)
2353, m_hrdParameters             (NULL)
2354, m_hrdOpSetIdx               (NULL)
2355, m_cprmsPresentFlag          (NULL)
2356{
2357  for( Int i = 0; i < MAX_TLAYER; i++)
2358  {
2359    m_numReorderPics[i] = 0;
2360    m_uiMaxDecPicBuffering[i] = 1; 
2361    m_uiMaxLatencyIncrease[i] = 0;
2362  }
2363}
2364#endif //SVC_EXTENSION
2365
2366TComVPS::~TComVPS()
2367{
2368  if( m_hrdParameters    != NULL )     delete[] m_hrdParameters;
2369  if( m_hrdOpSetIdx      != NULL )     delete[] m_hrdOpSetIdx;
2370  if( m_cprmsPresentFlag != NULL )     delete[] m_cprmsPresentFlag;
2371}
2372#if DERIVE_LAYER_ID_LIST_VARIABLES
2373Void TComVPS::deriveLayerIdListVariables()
2374{
2375  // For layer 0
2376  m_numLayerInIdList[0] = 1;
2377  m_layerSetLayerIdList[0][0] = 0;
2378 
2379  // For other layers
2380  Int i, m, n;
2381  for( i = 1; i < m_numLayerSets; i++ )
2382  {
2383    n = 0;
2384    for( m = 0; m <= m_maxLayerId; m++)
2385    {
2386      if( m_layerIdIncludedFlag[i][m] )
2387      {
2388        m_layerSetLayerIdList[i][n++] = m;
2389      }
2390    }
2391    m_numLayerInIdList[i] = n;
2392  }
2393}
2394#endif
2395#if !RESOLUTION_BASED_DPB
2396#if VPS_DPB_SIZE_TABLE
2397Void TComVPS::deriveNumberOfSubDpbs()
2398{
2399  // Derive number of sub-DPBs
2400#if CHANGE_NUMSUBDPB_IDX
2401  // For layer set 0
2402  setNumSubDpbs(0, 1);
2403  // For other layer sets
2404  for( Int i = 1; i < getNumLayerSets(); i++)
2405  {
2406    setNumSubDpbs( i, getNumLayersInIdList( i ) );
2407  }
2408#else
2409  // For output layer set 0
2410  setNumSubDpbs(0, 1);
2411  // For other output layer sets
2412  for( Int i = 1; i < getNumOutputLayerSets(); i++)
2413  {
2414    setNumSubDpbs( i, getNumLayersInIdList( getOutputLayerSetIdx(i)) );
2415  }
2416#endif
2417}
2418#endif
2419#endif
2420#if VPS_VUI_TILES_NOT_IN_USE__FLAG
2421Void TComVPS::setTilesNotInUseFlag(Bool x)
2422{
2423  m_tilesNotInUseFlag = x;
2424  if (m_tilesNotInUseFlag)
2425  {
2426    for (int i = 0; i < getMaxLayers(); i++)
2427    {
2428      m_tilesInUseFlag[i] = m_loopFilterNotAcrossTilesFlag[i] = m_tilesNotInUseFlag;
2429    }
2430  }
2431#if TILE_BOUNDARY_ALIGNED_FLAG 
2432  if (m_tilesNotInUseFlag)
2433  {
2434    for (int i = 1; i < getMaxLayers(); i++)
2435    {
2436      for(int j = 0; j < getNumDirectRefLayers(getLayerIdInNuh(i)); j++)
2437      {
2438        setTileBoundariesAlignedFlag(i, j, m_tilesNotInUseFlag);
2439      }
2440    }
2441  }
2442#endif
2443}
2444#endif
2445#if VPS_VUI_WPP_NOT_IN_USE__FLAG
2446Void TComVPS::setWppNotInUseFlag(Bool x)
2447{
2448  m_wppNotInUseFlag = x;
2449  if (m_wppNotInUseFlag)
2450  {
2451    for (int i = 0; i < getMaxLayers(); i++)
2452    {
2453      m_wppInUseFlag[i] = m_wppNotInUseFlag;
2454    }
2455  }
2456}
2457#endif
2458#if O0092_0094_DEPENDENCY_CONSTRAINT
2459Void TComVPS::setRefLayersFlags(Int currLayerId)
2460{
2461  for (Int i = 0; i < m_numDirectRefLayers[currLayerId]; i++)
2462  {
2463    UInt refLayerId = getRefLayerId(currLayerId, i);
2464    m_recursiveRefLayerFlag[currLayerId][refLayerId] = true;
2465    for (Int k = 0; k < MAX_NUM_LAYER_IDS; k++)
2466    {
2467      m_recursiveRefLayerFlag[currLayerId][k] = m_recursiveRefLayerFlag[currLayerId][k] | m_recursiveRefLayerFlag[refLayerId][k];
2468    }
2469  }
2470}
2471
2472Void TComVPS::setNumRefLayers(Int currLayerId)
2473{
2474  for (Int i = 0; i < m_uiMaxLayers; i++)
2475  {
2476    UInt iNuhLId = m_layerIdInNuh[i];
2477    setRefLayersFlags(iNuhLId);
2478    for (UInt j = 0; j < MAX_NUM_LAYER_IDS; j++)
2479    {
2480      m_numberRefLayers[iNuhLId] += (m_recursiveRefLayerFlag[iNuhLId][j] == true ? 1 : 0);
2481    }
2482  }
2483}
2484#endif
2485
2486#if VIEW_ID_RELATED_SIGNALING
2487Int TComVPS::getNumViews()
2488{
2489  Int numViews = 1; 
2490  for( Int i = 0; i <= getMaxLayers() - 1; i++ )
2491  {
2492    Int lId = getLayerIdInNuh( i ); 
2493    if ( i > 0 && ( getViewIndex( lId ) != getScalabilityId( i - 1, VIEW_ORDER_INDEX ) ) )
2494    {
2495      numViews++; 
2496    }   
2497  }
2498
2499  return numViews;
2500}
2501Int TComVPS::getScalabilityId( Int layerIdInVps, ScalabilityType scalType )
2502{
2503  return getScalabilityMask( scalType ) ? getDimensionId( layerIdInVps, scalTypeToScalIdx( scalType ) ) : 0;
2504} 
2505Int TComVPS::scalTypeToScalIdx( ScalabilityType scalType )
2506{
2507  assert( scalType >= 0 && scalType <= MAX_VPS_NUM_SCALABILITY_TYPES ); 
2508  assert( scalType == MAX_VPS_NUM_SCALABILITY_TYPES || getScalabilityMask( scalType ) );
2509  Int scalIdx = 0; 
2510  for( Int curScalType = 0; curScalType < scalType; curScalType++ )
2511  {
2512    scalIdx += ( getScalabilityMask( curScalType ) ? 1 : 0 );
2513
2514  }
2515
2516  return scalIdx; 
2517}
2518#endif
2519#if VPS_DPB_SIZE_TABLE
2520Void TComVPS::determineSubDpbInfoFlags()
2521{
2522  for(Int i = 1; i < getNumOutputLayerSets(); i++)
2523  {
2524    Int layerSetIdxForOutputLayerSet = getOutputLayerSetIdx( i );
2525    // For each output layer set, set the DPB size for each layer and the reorder/latency value the maximum for all layers
2526    Bool checkFlagOuter = false;      // Used to calculate sub_layer_flag_info_present_flag
2527    Bool checkFlagInner[MAX_TLAYER];  // Used to calculate sub_layer_dpb_info_present_flag
2528
2529    for(Int j = 0; j < getMaxTLayers(); j++)
2530    {
2531      // --------------------------------------------------------
2532      // To determine value of m_subLayerDpbInfoPresentFlag
2533      // --------------------------------------------------------
2534      if( j == 0 )  // checkFlagInner[0] is always 1
2535      {
2536        checkFlagInner[j] = true;     // Always signal sub-layer DPB information for the first sub-layer
2537      }
2538      else
2539      {
2540        checkFlagInner[j] = false;    // Initialize to be false. If the values of the current sub-layers matches with the earlier sub-layer,
2541                                      // then will be continue to be false - i.e. the j-th sub-layer DPB info is not signaled
2542        checkFlagInner[j] |= ( getMaxVpsNumReorderPics(i, j) != getMaxVpsNumReorderPics(i, j - 1) );
2543#if CHANGE_NUMSUBDPB_IDX
2544        for(Int subDpbIdx = 0; subDpbIdx < getNumSubDpbs(layerSetIdxForOutputLayerSet) && !checkFlagInner[j]; subDpbIdx++)  // If checkFlagInner[j] is true, break and signal the values
2545#else
2546        for(Int k = 0; k < getNumSubDpbs(i) && !checkFlagInner[j]; k++)  // If checkFlagInner[j] is true, break and signal the values
2547#endif
2548        {
2549          checkFlagInner[j] |= ( getMaxVpsDecPicBufferingMinus1(i, subDpbIdx, j - 1) != getMaxVpsDecPicBufferingMinus1(i, subDpbIdx, j) );
2550        }
2551#if RESOLUTION_BASED_DPB
2552        for(Int layerIdx = 0; layerIdx < this->getNumLayersInIdList(layerSetIdxForOutputLayerSet) && !checkFlagInner[j]; layerIdx++)  // If checkFlagInner[j] is true, break and signal the values
2553        {
2554          checkFlagInner[j] |= ( getMaxVpsLayerDecPicBuffMinus1(i, layerIdx, j - 1) != getMaxVpsLayerDecPicBuffMinus1(i, layerIdx, j) );
2555        }
2556#endif
2557      }
2558      // If checkFlagInner[j] = true, then some value needs to be signalled for the j-th sub-layer
2559      setSubLayerDpbInfoPresentFlag( i, j, checkFlagInner[j] );
2560    }
2561
2562    // --------------------------------------------------------
2563    // To determine value of m_subLayerFlagInfoPresentFlag
2564    // --------------------------------------------------------
2565
2566    for(Int j = 1; j < getMaxTLayers(); j++) // Check if DPB info of any of non-zero sub-layers is signaled. If so set flag to one
2567    {
2568      if( getSubLayerDpbInfoPresentFlag(i, j) )
2569      {
2570        checkFlagOuter = true;
2571        break;
2572      }
2573    }
2574    setSubLayerFlagInfoPresentFlag( i, checkFlagOuter );
2575  }
2576}
2577#endif
2578#if RESOLUTION_BASED_DPB
2579Void TComVPS::assignSubDpbIndices()
2580{
2581  RepFormat layerRepFormat  [MAX_LAYERS];
2582  RepFormat subDpbRepFormat [MAX_LAYERS];
2583
2584  for(Int lsIdx = 0; lsIdx < this->getNumLayerSets(); lsIdx++)
2585  {
2586    for(Int j = 0; j < MAX_LAYERS; j++)
2587    {
2588      layerRepFormat [j].init();
2589      subDpbRepFormat[j].init();
2590    }
2591
2592    // Assign resolution, bit-depth, colour format for each layer in the layer set
2593    for(Int i = 0; i < this->getNumLayersInIdList( lsIdx ); i++)
2594    {
2595      Int layerIdxInVps = this->getLayerIdInVps( this->getLayerSetLayerIdList(lsIdx, i) );
2596      Int repFormatIdx  = this->getVpsRepFormatIdx( layerIdxInVps );
2597      RepFormat* repFormat = this->getVpsRepFormat( repFormatIdx );
2598
2599      // Assign the rep_format() to the layer
2600      layerRepFormat[i] = *repFormat;
2601    }
2602
2603    // ----------------------------------------
2604    // Sub-DPB assignment
2605    // ----------------------------------------
2606    // For the base layer
2607    m_subDpbAssigned[lsIdx][0] = 0;
2608    subDpbRepFormat[0] = layerRepFormat[0];
2609
2610    // Sub-DPB counter
2611    Int subDpbCtr = 1;
2612
2613    for(Int i = 1; i < this->getNumLayersInIdList( lsIdx ); i++)
2614    {
2615      Bool newSubDpbFlag = true;
2616      for(Int j = 0; (j < subDpbCtr) && (newSubDpbFlag); j++)
2617      {
2618        if( RepFormat::checkSameSubDpb( layerRepFormat[i], subDpbRepFormat[j] ) )
2619        {
2620          // Belong to i-th sub-DPB
2621          m_subDpbAssigned[lsIdx][i] = j;
2622          newSubDpbFlag = false;
2623        }
2624      }
2625      if( newSubDpbFlag )
2626      {
2627        // New sub-DPB
2628        subDpbRepFormat[subDpbCtr] = layerRepFormat[i];
2629        m_subDpbAssigned[lsIdx][i] = subDpbCtr;
2630        subDpbCtr++;                                    // Increment # subDpbs
2631      }
2632    }
2633    m_numSubDpbs[lsIdx] = subDpbCtr;
2634  }
2635}
2636Int  TComVPS::findLayerIdxInLayerSet ( Int lsIdx, Int nuhLayerId )
2637{
2638  for(Int i = 0; i < this->getNumLayersInIdList(lsIdx); i++)
2639  {
2640    if( this->getLayerSetLayerIdList( lsIdx, i) == nuhLayerId )
2641    {
2642      return i;
2643    }
2644  }
2645  return -1;  // Layer not found
2646}
2647#if O0164_MULTI_LAYER_HRD
2648Void TComVPS::setBspHrdParameters( UInt hrdIdx, UInt frameRate, UInt numDU, UInt bitRate, Bool randomAccess )
2649{
2650  if( !getVpsVuiBspHrdPresentFlag() )
2651  {
2652    return;
2653  }
2654
2655  TComHRD *hrd = getBspHrd(hrdIdx);
2656
2657  Bool rateCnt = ( bitRate > 0 );
2658  hrd->setNalHrdParametersPresentFlag( rateCnt );
2659  hrd->setVclHrdParametersPresentFlag( rateCnt );
2660
2661  hrd->setSubPicCpbParamsPresentFlag( ( numDU > 1 ) );
2662
2663  if( hrd->getSubPicCpbParamsPresentFlag() )
2664  {
2665    hrd->setTickDivisorMinus2( 100 - 2 );                          //
2666    hrd->setDuCpbRemovalDelayLengthMinus1( 7 );                    // 8-bit precision ( plus 1 for last DU in AU )
2667    hrd->setSubPicCpbParamsInPicTimingSEIFlag( true );
2668    hrd->setDpbOutputDelayDuLengthMinus1( 5 + 7 );                 // With sub-clock tick factor of 100, at least 7 bits to have the same value as AU dpb delay
2669  }
2670  else
2671  {
2672    hrd->setSubPicCpbParamsInPicTimingSEIFlag( false ); 
2673  }
2674
2675  hrd->setBitRateScale( 4 );                                       // in units of 2~( 6 + 4 ) = 1,024 bps
2676  hrd->setCpbSizeScale( 6 );                                       // in units of 2~( 4 + 4 ) = 1,024 bit
2677  hrd->setDuCpbSizeScale( 6 );                                       // in units of 2~( 4 + 4 ) = 1,024 bit
2678
2679  hrd->setInitialCpbRemovalDelayLengthMinus1(15);                  // assuming 0.5 sec, log2( 90,000 * 0.5 ) = 16-bit
2680  if( randomAccess )
2681  {
2682    hrd->setCpbRemovalDelayLengthMinus1(5);                        // 32 = 2^5 (plus 1)
2683    hrd->setDpbOutputDelayLengthMinus1 (5);                        // 32 + 3 = 2^6
2684  }
2685  else
2686  {
2687    hrd->setCpbRemovalDelayLengthMinus1(9);                        // max. 2^10
2688    hrd->setDpbOutputDelayLengthMinus1 (9);                        // max. 2^10
2689  }
2690
2691  /*
2692  Note: only the case of "vps_max_temporal_layers_minus1 = 0" is supported.
2693  */
2694  Int i, j;
2695  UInt birateValue, cpbSizeValue;
2696  UInt ducpbSizeValue;
2697  UInt duBitRateValue = 0;
2698
2699  for( i = 0; i < MAX_TLAYER; i ++ )
2700  {
2701    hrd->setFixedPicRateFlag( i, 1 );
2702    hrd->setPicDurationInTcMinus1( i, 0 );
2703    hrd->setLowDelayHrdFlag( i, 0 );
2704    hrd->setCpbCntMinus1( i, 0 );
2705
2706    birateValue  = bitRate;
2707    cpbSizeValue = bitRate;                                     // 1 second
2708    ducpbSizeValue = bitRate/numDU;
2709    duBitRateValue = bitRate;
2710    for( j = 0; j < ( hrd->getCpbCntMinus1( i ) + 1 ); j ++ )
2711    {
2712      hrd->setBitRateValueMinus1( i, j, 0, ( birateValue  - 1 ) );
2713      hrd->setCpbSizeValueMinus1( i, j, 0, ( cpbSizeValue - 1 ) );
2714      hrd->setDuCpbSizeValueMinus1( i, j, 0, ( ducpbSizeValue - 1 ) );
2715      hrd->setCbrFlag( i, j, 0, ( j == 0 ) );
2716
2717      hrd->setBitRateValueMinus1( i, j, 1, ( birateValue  - 1) );
2718      hrd->setCpbSizeValueMinus1( i, j, 1, ( cpbSizeValue - 1 ) );
2719      hrd->setDuCpbSizeValueMinus1( i, j, 1, ( ducpbSizeValue - 1 ) );
2720      hrd->setDuBitRateValueMinus1( i, j, 1, ( duBitRateValue - 1 ) );
2721      hrd->setCbrFlag( i, j, 1, ( j == 0 ) );
2722    }
2723  }
2724}
2725#endif
2726// RepFormat Assignment operator
2727RepFormat& RepFormat::operator= (const RepFormat &other)
2728{
2729  if( this != &other)
2730  {
2731    m_chromaAndBitDepthVpsPresentFlag = other.m_chromaAndBitDepthVpsPresentFlag;
2732    m_chromaFormatVpsIdc              = other.m_chromaFormatVpsIdc;
2733    m_separateColourPlaneVpsFlag      = other.m_separateColourPlaneVpsFlag;
2734    m_picWidthVpsInLumaSamples        = other.m_picWidthVpsInLumaSamples;
2735    m_picHeightVpsInLumaSamples       = other.m_picHeightVpsInLumaSamples;
2736    m_bitDepthVpsLuma                 = other.m_bitDepthVpsLuma;
2737    m_bitDepthVpsChroma               = other.m_bitDepthVpsChroma;
2738  }
2739  return *this;
2740}
2741
2742// Check whether x and y share the same resolution, chroma format and bit-depth.
2743Bool RepFormat::checkSameSubDpb(const RepFormat &x, const RepFormat &y)
2744{
2745  return (    (x.m_chromaFormatVpsIdc              == y.m_chromaFormatVpsIdc)
2746          &&  (x.m_picWidthVpsInLumaSamples        == y.m_picWidthVpsInLumaSamples)
2747          &&  (x.m_picHeightVpsInLumaSamples       == y.m_picHeightVpsInLumaSamples)
2748          &&  (x.m_bitDepthVpsLuma                 == y.m_bitDepthVpsLuma)
2749          &&  (x.m_bitDepthVpsChroma               == y.m_bitDepthVpsChroma)
2750          );
2751}
2752#endif
2753// ------------------------------------------------------------------------------------------------
2754// Sequence parameter set (SPS)
2755// ------------------------------------------------------------------------------------------------
2756
2757TComSPS::TComSPS()
2758: m_SPSId                     (  0)
2759, m_VPSId                     (  0)
2760, m_chromaFormatIdc           (CHROMA_420)
2761, m_uiMaxTLayers              (  1)
2762// Structure
2763, m_picWidthInLumaSamples     (352)
2764, m_picHeightInLumaSamples    (288)
2765, m_log2MinCodingBlockSize    (  0)
2766, m_log2DiffMaxMinCodingBlockSize (0)
2767, m_uiMaxCUWidth              ( 32)
2768, m_uiMaxCUHeight             ( 32)
2769, m_uiMaxCUDepth              (  3)
2770, m_bLongTermRefsPresent      (false)
2771, m_uiQuadtreeTULog2MaxSize   (  0)
2772, m_uiQuadtreeTULog2MinSize   (  0)
2773, m_uiQuadtreeTUMaxDepthInter (  0)
2774, m_uiQuadtreeTUMaxDepthIntra (  0)
2775// Tool list
2776, m_usePCM                   (false)
2777, m_pcmLog2MaxSize            (  5)
2778, m_uiPCMLog2MinSize          (  7)
2779, m_bitDepthY                 (  8)
2780, m_bitDepthC                 (  8)
2781, m_qpBDOffsetY               (  0)
2782, m_qpBDOffsetC               (  0)
2783, m_uiPCMBitDepthLuma         (  8)
2784, m_uiPCMBitDepthChroma       (  8)
2785, m_bPCMFilterDisableFlag     (false)
2786, m_uiBitsForPOC              (  8)
2787, m_numLongTermRefPicSPS    (  0) 
2788, m_uiMaxTrSize               ( 32)
2789, m_bUseSAO                   (false) 
2790, m_bTemporalIdNestingFlag    (false)
2791, m_scalingListEnabledFlag    (false)
2792, m_useStrongIntraSmoothing   (false)
2793, m_vuiParametersPresentFlag  (false)
2794, m_vuiParameters             ()
2795#if SVC_EXTENSION
2796, m_layerId                   ( 0 )
2797, m_numScaledRefLayerOffsets  ( 0 )
2798#if REPN_FORMAT_IN_VPS
2799, m_updateRepFormatFlag       (false)
2800#if O0096_REP_FORMAT_INDEX
2801, m_updateRepFormatIndex      (0)
2802#endif
2803#endif
2804#if SCALINGLIST_INFERRING
2805, m_inferScalingListFlag ( false )
2806, m_scalingListRefLayerId ( 0 )
2807#endif
2808#endif //SVC_EXTENSION
2809{
2810  for ( Int i = 0; i < MAX_TLAYER; i++ )
2811  {
2812    m_uiMaxLatencyIncrease[i] = 0;
2813    m_uiMaxDecPicBuffering[i] = 1;
2814    m_numReorderPics[i]       = 0;
2815  }
2816  m_scalingList = new TComScalingList;
2817  ::memset(m_ltRefPicPocLsbSps, 0, sizeof(m_ltRefPicPocLsbSps));
2818  ::memset(m_usedByCurrPicLtSPSFlag, 0, sizeof(m_usedByCurrPicLtSPSFlag));
2819
2820#if P0312_VERT_PHASE_ADJ
2821  ::memset(m_vertPhasePositionEnableFlag, 0, sizeof(m_vertPhasePositionEnableFlag));
2822#endif
2823}
2824
2825TComSPS::~TComSPS()
2826{
2827#if SCALINGLIST_INFERRING
2828  if( !m_inferScalingListFlag )
2829#endif
2830  delete m_scalingList;
2831  m_RPSList.destroy();
2832}
2833
2834Void  TComSPS::createRPSList( Int numRPS )
2835{ 
2836  m_RPSList.destroy();
2837  m_RPSList.create(numRPS);
2838}
2839
2840Void TComSPS::setHrdParameters( UInt frameRate, UInt numDU, UInt bitRate, Bool randomAccess )
2841{
2842  if( !getVuiParametersPresentFlag() )
2843  {
2844    return;
2845  }
2846
2847  TComVUI *vui = getVuiParameters();
2848  TComHRD *hrd = vui->getHrdParameters();
2849
2850  TimingInfo *timingInfo = vui->getTimingInfo();
2851#if TIMING_INFO_NONZERO_LAYERID_SPS
2852  if( getLayerId() > 0 )
2853  {
2854    timingInfo->setTimingInfoPresentFlag( false );
2855  }
2856  else
2857  {
2858#endif
2859    timingInfo->setTimingInfoPresentFlag( true );
2860    switch( frameRate )
2861    {
2862    case 24:
2863      timingInfo->setNumUnitsInTick( 1125000 );    timingInfo->setTimeScale    ( 27000000 );
2864      break;
2865    case 25:
2866      timingInfo->setNumUnitsInTick( 1080000 );    timingInfo->setTimeScale    ( 27000000 );
2867      break;
2868    case 30:
2869      timingInfo->setNumUnitsInTick( 900900 );     timingInfo->setTimeScale    ( 27000000 );
2870      break;
2871    case 50:
2872      timingInfo->setNumUnitsInTick( 540000 );     timingInfo->setTimeScale    ( 27000000 );
2873      break;
2874    case 60:
2875      timingInfo->setNumUnitsInTick( 450450 );     timingInfo->setTimeScale    ( 27000000 );
2876      break;
2877    default:
2878      timingInfo->setNumUnitsInTick( 1001 );       timingInfo->setTimeScale    ( 60000 );
2879      break;
2880    }
2881
2882    Bool rateCnt = ( bitRate > 0 );
2883    hrd->setNalHrdParametersPresentFlag( rateCnt );
2884    hrd->setVclHrdParametersPresentFlag( rateCnt );
2885
2886    hrd->setSubPicCpbParamsPresentFlag( ( numDU > 1 ) );
2887
2888    if( hrd->getSubPicCpbParamsPresentFlag() )
2889    {
2890      hrd->setTickDivisorMinus2( 100 - 2 );                          //
2891      hrd->setDuCpbRemovalDelayLengthMinus1( 7 );                    // 8-bit precision ( plus 1 for last DU in AU )
2892      hrd->setSubPicCpbParamsInPicTimingSEIFlag( true );
2893      hrd->setDpbOutputDelayDuLengthMinus1( 5 + 7 );                 // With sub-clock tick factor of 100, at least 7 bits to have the same value as AU dpb delay
2894    }
2895    else
2896    {
2897      hrd->setSubPicCpbParamsInPicTimingSEIFlag( false ); 
2898    }
2899
2900    hrd->setBitRateScale( 4 );                                       // in units of 2~( 6 + 4 ) = 1,024 bps
2901    hrd->setCpbSizeScale( 6 );                                       // in units of 2~( 4 + 4 ) = 1,024 bit
2902    hrd->setDuCpbSizeScale( 6 );                                       // in units of 2~( 4 + 4 ) = 1,024 bit
2903 
2904    hrd->setInitialCpbRemovalDelayLengthMinus1(15);                  // assuming 0.5 sec, log2( 90,000 * 0.5 ) = 16-bit
2905    if( randomAccess )
2906    {
2907      hrd->setCpbRemovalDelayLengthMinus1(5);                        // 32 = 2^5 (plus 1)
2908      hrd->setDpbOutputDelayLengthMinus1 (5);                        // 32 + 3 = 2^6
2909    }
2910    else
2911    {
2912      hrd->setCpbRemovalDelayLengthMinus1(9);                        // max. 2^10
2913      hrd->setDpbOutputDelayLengthMinus1 (9);                        // max. 2^10
2914    }
2915
2916/*
2917     Note: only the case of "vps_max_temporal_layers_minus1 = 0" is supported.
2918*/
2919    Int i, j;
2920    UInt birateValue, cpbSizeValue;
2921    UInt ducpbSizeValue;
2922    UInt duBitRateValue = 0;
2923
2924    for( i = 0; i < MAX_TLAYER; i ++ )
2925    {
2926      hrd->setFixedPicRateFlag( i, 1 );
2927      hrd->setPicDurationInTcMinus1( i, 0 );
2928      hrd->setLowDelayHrdFlag( i, 0 );
2929      hrd->setCpbCntMinus1( i, 0 );
2930
2931      birateValue  = bitRate;
2932      cpbSizeValue = bitRate;                                     // 1 second
2933      ducpbSizeValue = bitRate/numDU;
2934      duBitRateValue = bitRate;
2935      for( j = 0; j < ( hrd->getCpbCntMinus1( i ) + 1 ); j ++ )
2936      {
2937        hrd->setBitRateValueMinus1( i, j, 0, ( birateValue  - 1 ) );
2938        hrd->setCpbSizeValueMinus1( i, j, 0, ( cpbSizeValue - 1 ) );
2939        hrd->setDuCpbSizeValueMinus1( i, j, 0, ( ducpbSizeValue - 1 ) );
2940        hrd->setCbrFlag( i, j, 0, ( j == 0 ) );
2941
2942        hrd->setBitRateValueMinus1( i, j, 1, ( birateValue  - 1) );
2943        hrd->setCpbSizeValueMinus1( i, j, 1, ( cpbSizeValue - 1 ) );
2944        hrd->setDuCpbSizeValueMinus1( i, j, 1, ( ducpbSizeValue - 1 ) );
2945        hrd->setDuBitRateValueMinus1( i, j, 1, ( duBitRateValue - 1 ) );
2946        hrd->setCbrFlag( i, j, 1, ( j == 0 ) );
2947      }
2948    }
2949#if TIMING_INFO_NONZERO_LAYERID_SPS
2950  }
2951#endif
2952}
2953const Int TComSPS::m_winUnitX[]={1,2,2,1};
2954const Int TComSPS::m_winUnitY[]={1,2,1,1};
2955
2956#if O0098_SCALED_REF_LAYER_ID
2957Window& TComSPS::getScaledRefLayerWindowForLayer(Int layerId)
2958{
2959  static Window win;
2960
2961  for (Int i = 0; i < m_numScaledRefLayerOffsets; i++)
2962  {
2963    if (layerId == m_scaledRefLayerId[i])
2964    {
2965      return m_scaledRefLayerWindow[i];
2966    }
2967  }
2968
2969  win.resetWindow();  // scaled reference layer offsets are inferred to be zero when not present
2970  return win;
2971}
2972#endif
2973
2974TComPPS::TComPPS()
2975: m_PPSId                       (0)
2976, m_SPSId                       (0)
2977, m_picInitQPMinus26            (0)
2978, m_useDQP                      (false)
2979, m_bConstrainedIntraPred       (false)
2980, m_bSliceChromaQpFlag          (false)
2981, m_pcSPS                       (NULL)
2982, m_uiMaxCuDQPDepth             (0)
2983, m_uiMinCuDQPSize              (0)
2984, m_chromaCbQpOffset            (0)
2985, m_chromaCrQpOffset            (0)
2986, m_numRefIdxL0DefaultActive    (1)
2987, m_numRefIdxL1DefaultActive    (1)
2988, m_TransquantBypassEnableFlag  (false)
2989, m_useTransformSkip             (false)
2990, m_dependentSliceSegmentsEnabledFlag    (false)
2991, m_tilesEnabledFlag               (false)
2992, m_entropyCodingSyncEnabledFlag   (false)
2993, m_loopFilterAcrossTilesEnabledFlag  (true)
2994, m_uniformSpacingFlag           (0)
2995, m_iNumColumnsMinus1            (0)
2996, m_puiColumnWidth               (NULL)
2997, m_iNumRowsMinus1               (0)
2998, m_puiRowHeight                 (NULL)
2999, m_iNumSubstreams             (1)
3000, m_signHideFlag(0)
3001, m_cabacInitPresentFlag        (false)
3002, m_encCABACTableIdx            (I_SLICE)
3003, m_sliceHeaderExtensionPresentFlag    (false)
3004, m_loopFilterAcrossSlicesEnabledFlag (false)
3005, m_listsModificationPresentFlag(  0)
3006, m_numExtraSliceHeaderBits(0)
3007#if SCALINGLIST_INFERRING
3008, m_inferScalingListFlag ( false )
3009, m_scalingListRefLayerId ( 0 )
3010#endif
3011#if POC_RESET_IDC
3012, m_pocResetInfoPresentFlag   (false)
3013#endif
3014{
3015  m_scalingList = new TComScalingList;
3016}
3017
3018TComPPS::~TComPPS()
3019{
3020  if( m_iNumColumnsMinus1 > 0 && m_uniformSpacingFlag == 0 )
3021  {
3022    if (m_puiColumnWidth) delete [] m_puiColumnWidth; 
3023    m_puiColumnWidth = NULL;
3024  }
3025  if( m_iNumRowsMinus1 > 0 && m_uniformSpacingFlag == 0 )
3026  {
3027    if (m_puiRowHeight) delete [] m_puiRowHeight;
3028    m_puiRowHeight = NULL;
3029  }
3030
3031#if SCALINGLIST_INFERRING
3032  if( !m_inferScalingListFlag )
3033#endif
3034  delete m_scalingList;
3035}
3036
3037TComReferencePictureSet::TComReferencePictureSet()
3038: m_numberOfPictures (0)
3039, m_numberOfNegativePictures (0)
3040, m_numberOfPositivePictures (0)
3041, m_numberOfLongtermPictures (0)
3042, m_interRPSPrediction (0) 
3043, m_deltaRIdxMinus1 (0)   
3044, m_deltaRPS (0) 
3045, m_numRefIdc (0) 
3046{
3047  ::memset( m_deltaPOC, 0, sizeof(m_deltaPOC) );
3048  ::memset( m_POC, 0, sizeof(m_POC) );
3049  ::memset( m_used, 0, sizeof(m_used) );
3050  ::memset( m_refIdc, 0, sizeof(m_refIdc) );
3051}
3052
3053TComReferencePictureSet::~TComReferencePictureSet()
3054{
3055}
3056
3057Void TComReferencePictureSet::setUsed(Int bufferNum, Bool used)
3058{
3059  m_used[bufferNum] = used;
3060}
3061
3062Void TComReferencePictureSet::setDeltaPOC(Int bufferNum, Int deltaPOC)
3063{
3064  m_deltaPOC[bufferNum] = deltaPOC;
3065}
3066
3067Void TComReferencePictureSet::setNumberOfPictures(Int numberOfPictures)
3068{
3069  m_numberOfPictures = numberOfPictures;
3070}
3071
3072Int TComReferencePictureSet::getUsed(Int bufferNum)
3073{
3074  return m_used[bufferNum];
3075}
3076
3077Int TComReferencePictureSet::getDeltaPOC(Int bufferNum)
3078{
3079  return m_deltaPOC[bufferNum];
3080}
3081
3082Int TComReferencePictureSet::getNumberOfPictures()
3083{
3084  return m_numberOfPictures;
3085}
3086
3087Int TComReferencePictureSet::getPOC(Int bufferNum)
3088{
3089  return m_POC[bufferNum];
3090}
3091
3092Void TComReferencePictureSet::setPOC(Int bufferNum, Int POC)
3093{
3094  m_POC[bufferNum] = POC;
3095}
3096
3097Bool TComReferencePictureSet::getCheckLTMSBPresent(Int bufferNum)
3098{
3099  return m_bCheckLTMSB[bufferNum];
3100}
3101
3102Void TComReferencePictureSet::setCheckLTMSBPresent(Int bufferNum, Bool b)
3103{
3104  m_bCheckLTMSB[bufferNum] = b;
3105}
3106
3107/** set the reference idc value at uiBufferNum entry to the value of iRefIdc
3108 * \param uiBufferNum
3109 * \param iRefIdc
3110 * \returns Void
3111 */
3112Void TComReferencePictureSet::setRefIdc(Int bufferNum, Int refIdc)
3113{
3114  m_refIdc[bufferNum] = refIdc;
3115}
3116
3117/** get the reference idc value at uiBufferNum
3118 * \param uiBufferNum
3119 * \returns Int
3120 */
3121Int  TComReferencePictureSet::getRefIdc(Int bufferNum)
3122{
3123  return m_refIdc[bufferNum];
3124}
3125
3126/** Sorts the deltaPOC and Used by current values in the RPS based on the deltaPOC values.
3127 *  deltaPOC values are sorted with -ve values before the +ve values.  -ve values are in decreasing order.
3128 *  +ve values are in increasing order.
3129 * \returns Void
3130 */
3131Void TComReferencePictureSet::sortDeltaPOC()
3132{
3133  // sort in increasing order (smallest first)
3134  for(Int j=1; j < getNumberOfPictures(); j++)
3135  { 
3136    Int deltaPOC = getDeltaPOC(j);
3137    Bool used = getUsed(j);
3138    for (Int k=j-1; k >= 0; k--)
3139    {
3140      Int temp = getDeltaPOC(k);
3141      if (deltaPOC < temp)
3142      {
3143        setDeltaPOC(k+1, temp);
3144        setUsed(k+1, getUsed(k));
3145        setDeltaPOC(k, deltaPOC);
3146        setUsed(k, used);
3147      }
3148    }
3149  }
3150  // flip the negative values to largest first
3151  Int numNegPics = getNumberOfNegativePictures();
3152  for(Int j=0, k=numNegPics-1; j < numNegPics>>1; j++, k--)
3153  { 
3154    Int deltaPOC = getDeltaPOC(j);
3155    Bool used = getUsed(j);
3156    setDeltaPOC(j, getDeltaPOC(k));
3157    setUsed(j, getUsed(k));
3158    setDeltaPOC(k, deltaPOC);
3159    setUsed(k, used);
3160  }
3161}
3162
3163/** Prints the deltaPOC and RefIdc (if available) values in the RPS.
3164 *  A "*" is added to the deltaPOC value if it is Used bu current.
3165 * \returns Void
3166 */
3167Void TComReferencePictureSet::printDeltaPOC()
3168{
3169  printf("DeltaPOC = { ");
3170  for(Int j=0; j < getNumberOfPictures(); j++)
3171  {
3172    printf("%d%s ", getDeltaPOC(j), (getUsed(j)==1)?"*":"");
3173  } 
3174  if (getInterRPSPrediction()) 
3175  {
3176    printf("}, RefIdc = { ");
3177    for(Int j=0; j < getNumRefIdc(); j++)
3178    {
3179      printf("%d ", getRefIdc(j));
3180    } 
3181  }
3182  printf("}\n");
3183}
3184
3185TComRPSList::TComRPSList()
3186:m_referencePictureSets (NULL)
3187{
3188}
3189
3190TComRPSList::~TComRPSList()
3191{
3192}
3193
3194Void TComRPSList::create( Int numberOfReferencePictureSets)
3195{
3196  m_numberOfReferencePictureSets = numberOfReferencePictureSets;
3197  m_referencePictureSets = new TComReferencePictureSet[numberOfReferencePictureSets];
3198}
3199
3200Void TComRPSList::destroy()
3201{
3202  if (m_referencePictureSets)
3203  {
3204    delete [] m_referencePictureSets;
3205  }
3206  m_numberOfReferencePictureSets = 0;
3207  m_referencePictureSets = NULL;
3208}
3209
3210
3211
3212TComReferencePictureSet* TComRPSList::getReferencePictureSet(Int referencePictureSetNum)
3213{
3214  return &m_referencePictureSets[referencePictureSetNum];
3215}
3216
3217Int TComRPSList::getNumberOfReferencePictureSets()
3218{
3219  return m_numberOfReferencePictureSets;
3220}
3221
3222Void TComRPSList::setNumberOfReferencePictureSets(Int numberOfReferencePictureSets)
3223{
3224  m_numberOfReferencePictureSets = numberOfReferencePictureSets;
3225}
3226
3227TComRefPicListModification::TComRefPicListModification()
3228: m_bRefPicListModificationFlagL0 (false)
3229, m_bRefPicListModificationFlagL1 (false)
3230{
3231  ::memset( m_RefPicSetIdxL0, 0, sizeof(m_RefPicSetIdxL0) );
3232  ::memset( m_RefPicSetIdxL1, 0, sizeof(m_RefPicSetIdxL1) );
3233}
3234
3235TComRefPicListModification::~TComRefPicListModification()
3236{
3237}
3238
3239TComScalingList::TComScalingList()
3240{
3241  init();
3242}
3243
3244TComScalingList::~TComScalingList()
3245{
3246  destroy();
3247}
3248
3249/** set default quantization matrix to array
3250*/
3251Void TComSlice::setDefaultScalingList()
3252{
3253  for(UInt sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
3254  {
3255    for(UInt listId=0;listId<g_scalingListNum[sizeId];listId++)
3256    {
3257      getScalingList()->processDefaultMatrix(sizeId, listId);
3258    }
3259  }
3260}
3261/** check if use default quantization matrix
3262 * \returns true if use default quantization matrix in all size
3263*/
3264Bool TComSlice::checkDefaultScalingList()
3265{
3266  UInt defaultCounter=0;
3267
3268  for(UInt sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
3269  {
3270    for(UInt listId=0;listId<g_scalingListNum[sizeId];listId++)
3271    {
3272      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
3273     && ((sizeId < SCALING_LIST_16x16) || (getScalingList()->getScalingListDC(sizeId,listId) == 16))) // check DC value
3274      {
3275        defaultCounter++;
3276      }
3277    }
3278  }
3279  return (defaultCounter == (SCALING_LIST_NUM * SCALING_LIST_SIZE_NUM - 4)) ? false : true; // -4 for 32x32
3280}
3281
3282/** get scaling matrix from RefMatrixID
3283 * \param sizeId size index
3284 * \param Index of input matrix
3285 * \param Index of reference matrix
3286 */
3287Void TComScalingList::processRefMatrix( UInt sizeId, UInt listId , UInt refListId )
3288{
3289  ::memcpy(getScalingListAddress(sizeId, listId),((listId == refListId)? getScalingListDefaultAddress(sizeId, refListId): getScalingListAddress(sizeId, refListId)),sizeof(Int)*min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]));
3290}
3291
3292/** parse syntax infomation
3293 *  \param pchFile syntax infomation
3294 *  \returns false if successful
3295 */
3296Bool TComScalingList::xParseScalingList(Char* pchFile)
3297{
3298  FILE *fp;
3299  Char line[1024];
3300  UInt sizeIdc,listIdc;
3301  UInt i,size = 0;
3302  Int *src=0,data;
3303  Char *ret;
3304  UInt  retval;
3305
3306  if((fp = fopen(pchFile,"r")) == (FILE*)NULL)
3307  {
3308    printf("can't open file %s :: set Default Matrix\n",pchFile);
3309    return true;
3310  }
3311
3312  for(sizeIdc = 0; sizeIdc < SCALING_LIST_SIZE_NUM; sizeIdc++)
3313  {
3314    size = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeIdc]);
3315    for(listIdc = 0; listIdc < g_scalingListNum[sizeIdc]; listIdc++)
3316    {
3317      src = getScalingListAddress(sizeIdc, listIdc);
3318
3319      fseek(fp,0,0);
3320      do 
3321      {
3322        ret = fgets(line, 1024, fp);
3323        if ((ret==NULL)||(strstr(line, MatrixType[sizeIdc][listIdc])==NULL && feof(fp)))
3324        {
3325          printf("Error: can't read Matrix :: set Default Matrix\n");
3326          return true;
3327        }
3328      }
3329      while (strstr(line, MatrixType[sizeIdc][listIdc]) == NULL);
3330      for (i=0; i<size; i++)
3331      {
3332        retval = fscanf(fp, "%d,", &data);
3333        if (retval!=1)
3334        {
3335          printf("Error: can't read Matrix :: set Default Matrix\n");
3336          return true;
3337        }
3338        src[i] = data;
3339      }
3340      //set DC value for default matrix check
3341      setScalingListDC(sizeIdc,listIdc,src[0]);
3342
3343      if(sizeIdc > SCALING_LIST_8x8)
3344      {
3345        fseek(fp,0,0);
3346        do 
3347        {
3348          ret = fgets(line, 1024, fp);
3349          if ((ret==NULL)||(strstr(line, MatrixType_DC[sizeIdc][listIdc])==NULL && feof(fp)))
3350          {
3351            printf("Error: can't read DC :: set Default Matrix\n");
3352            return true;
3353          }
3354        }
3355        while (strstr(line, MatrixType_DC[sizeIdc][listIdc]) == NULL);
3356        retval = fscanf(fp, "%d,", &data);
3357        if (retval!=1)
3358        {
3359          printf("Error: can't read Matrix :: set Default Matrix\n");
3360          return true;
3361        }
3362        //overwrite DC value when size of matrix is larger than 16x16
3363        setScalingListDC(sizeIdc,listIdc,data);
3364      }
3365    }
3366  }
3367  fclose(fp);
3368  return false;
3369}
3370
3371/** initialization process of quantization matrix array
3372 */
3373Void TComScalingList::init()
3374{
3375  for(UInt sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
3376  {
3377    for(UInt listId = 0; listId < g_scalingListNum[sizeId]; listId++)
3378    {
3379      m_scalingListCoef[sizeId][listId] = new Int [min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId])];
3380    }
3381  }
3382  m_scalingListCoef[SCALING_LIST_32x32][3] = m_scalingListCoef[SCALING_LIST_32x32][1]; // copy address for 32x32
3383}
3384
3385/** destroy quantization matrix array
3386 */
3387Void TComScalingList::destroy()
3388{
3389  for(UInt sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
3390  {
3391    for(UInt listId = 0; listId < g_scalingListNum[sizeId]; listId++)
3392    {
3393      if(m_scalingListCoef[sizeId][listId]) delete [] m_scalingListCoef[sizeId][listId];
3394    }
3395  }
3396}
3397
3398/** get default address of quantization matrix
3399 * \param sizeId size index
3400 * \param listId list index
3401 * \returns pointer of quantization matrix
3402 */
3403Int* TComScalingList::getScalingListDefaultAddress(UInt sizeId, UInt listId)
3404{
3405  Int *src = 0;
3406  switch(sizeId)
3407  {
3408    case SCALING_LIST_4x4:
3409      src = g_quantTSDefault4x4;
3410      break;
3411    case SCALING_LIST_8x8:
3412      src = (listId<3) ? g_quantIntraDefault8x8 : g_quantInterDefault8x8;
3413      break;
3414    case SCALING_LIST_16x16:
3415      src = (listId<3) ? g_quantIntraDefault8x8 : g_quantInterDefault8x8;
3416      break;
3417    case SCALING_LIST_32x32:
3418      src = (listId<1) ? g_quantIntraDefault8x8 : g_quantInterDefault8x8;
3419      break;
3420    default:
3421      assert(0);
3422      src = NULL;
3423      break;
3424  }
3425  return src;
3426}
3427
3428/** process of default matrix
3429 * \param sizeId size index
3430 * \param Index of input matrix
3431 */
3432Void TComScalingList::processDefaultMatrix(UInt sizeId, UInt listId)
3433{
3434  ::memcpy(getScalingListAddress(sizeId, listId),getScalingListDefaultAddress(sizeId,listId),sizeof(Int)*min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]));
3435  setScalingListDC(sizeId,listId,SCALING_LIST_DC);
3436}
3437
3438/** check DC value of matrix for default matrix signaling
3439 */
3440Void TComScalingList::checkDcOfMatrix()
3441{
3442  for(UInt sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
3443  {
3444    for(UInt listId = 0; listId < g_scalingListNum[sizeId]; listId++)
3445    {
3446      //check default matrix?
3447      if(getScalingListDC(sizeId,listId) == 0)
3448      {
3449        processDefaultMatrix(sizeId, listId);
3450      }
3451    }
3452  }
3453}
3454
3455ParameterSetManager::ParameterSetManager()
3456#if SVC_EXTENSION
3457: m_spsMap(MAX_NUM_SPS)
3458, m_ppsMap(MAX_NUM_PPS)
3459, m_activeSPSId(-1)
3460, m_activePPSId(-1)
3461#else
3462: m_vpsMap(MAX_NUM_VPS)
3463, m_spsMap(MAX_NUM_SPS)
3464, m_ppsMap(MAX_NUM_PPS)
3465, m_activeVPSId(-1)
3466, m_activeSPSId(-1)
3467, m_activePPSId(-1)
3468#endif
3469{
3470}
3471
3472
3473ParameterSetManager::~ParameterSetManager()
3474{
3475}
3476
3477//! activate a SPS from a active parameter sets SEI message
3478//! \returns true, if activation is successful
3479Bool ParameterSetManager::activateSPSWithSEI(Int spsId)
3480{
3481  TComSPS *sps = m_spsMap.getPS(spsId);
3482  if (sps)
3483  {
3484    Int vpsId = sps->getVPSId();
3485    if (m_vpsMap.getPS(vpsId))
3486    {
3487      m_activeVPSId = vpsId;
3488      m_activeSPSId = spsId;
3489      return true;
3490    }
3491    else
3492    {
3493      printf("Warning: tried to activate SPS using an Active parameter sets SEI message. Referenced VPS does not exist.");
3494    }
3495  }
3496  else
3497  {
3498    printf("Warning: tried to activate non-existing SPS using an Active parameter sets SEI message.");
3499  }
3500  return false;
3501}
3502
3503//! activate a PPS and depending on isIDR parameter also SPS and VPS
3504//! \returns true, if activation is successful
3505Bool ParameterSetManager::activatePPS(Int ppsId, Bool isIRAP)
3506{
3507  TComPPS *pps = m_ppsMap.getPS(ppsId);
3508  if (pps)
3509  {
3510    Int spsId = pps->getSPSId();
3511    if (!isIRAP && (spsId != m_activeSPSId))
3512    {
3513      printf("Warning: tried to activate PPS referring to a inactive SPS at non-IRAP.");
3514      return false;
3515    }
3516    TComSPS *sps = m_spsMap.getPS(spsId);
3517    if (sps)
3518    {
3519      Int vpsId = sps->getVPSId();
3520      if (!isIRAP && (vpsId != m_activeVPSId))
3521      {
3522        printf("Warning: tried to activate PPS referring to a inactive VPS at non-IRAP.");
3523        return false;
3524      }
3525      if (m_vpsMap.getPS(vpsId))
3526      {
3527        m_activePPSId = ppsId;
3528        m_activeVPSId = vpsId;
3529        m_activeSPSId = spsId;
3530
3531        return true;
3532      }
3533      else
3534      {
3535        printf("Warning: tried to activate PPS that refers to a non-existing VPS.");
3536      }
3537    }
3538    else
3539    {
3540      printf("Warning: tried to activate a PPS that refers to a non-existing SPS.");
3541    }
3542  }
3543  else
3544  {
3545    printf("Warning: tried to activate non-existing PPS.");
3546  }
3547  return false;
3548}
3549
3550ProfileTierLevel::ProfileTierLevel()
3551  : m_profileSpace    (0)
3552  , m_tierFlag        (false)
3553  , m_profileIdc      (0)
3554  , m_levelIdc        (0)
3555, m_progressiveSourceFlag  (false)
3556, m_interlacedSourceFlag   (false)
3557, m_nonPackedConstraintFlag(false)
3558, m_frameOnlyConstraintFlag(false)
3559{
3560  ::memset(m_profileCompatibilityFlag, 0, sizeof(m_profileCompatibilityFlag));
3561}
3562#if VPS_EXTN_PROFILE_INFO
3563Void ProfileTierLevel::copyProfileInfo(ProfileTierLevel *ptl)
3564{
3565  this->setProfileSpace          ( ptl->getProfileSpace()      );
3566  this->setTierFlag              ( ptl->getTierFlag()          );
3567  this->setProfileIdc            ( ptl->getProfileIdc()        );
3568  for(Int j = 0; j < 32; j++)
3569  {
3570    this->setProfileCompatibilityFlag(j, ptl->getProfileCompatibilityFlag(j));
3571  }
3572  this->setProgressiveSourceFlag  ( ptl->getProgressiveSourceFlag()  );
3573  this->setInterlacedSourceFlag   ( ptl->getInterlacedSourceFlag()   );
3574  this->setNonPackedConstraintFlag( ptl->getNonPackedConstraintFlag());
3575  this->setFrameOnlyConstraintFlag( ptl->getFrameOnlyConstraintFlag()); 
3576}
3577#endif
3578
3579TComPTL::TComPTL()
3580{
3581  ::memset(m_subLayerProfilePresentFlag, 0, sizeof(m_subLayerProfilePresentFlag));
3582  ::memset(m_subLayerLevelPresentFlag,   0, sizeof(m_subLayerLevelPresentFlag  ));
3583}
3584#if VPS_EXTN_PROFILE_INFO
3585Void TComPTL::copyProfileInfo(TComPTL *ptl)
3586{
3587  // Copy all information related to general profile
3588  this->getGeneralPTL()->copyProfileInfo(ptl->getGeneralPTL());
3589}
3590#endif
3591
3592#if SVC_EXTENSION
3593#if AVC_SYNTAX
3594Void TComSlice::initBaseLayerRPL( TComSlice *pcSlice )
3595{
3596// 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
3597  setPOC( pcSlice->getPOC() );
3598  if( pcSlice->getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP && pcSlice->getNalUnitType() <= NAL_UNIT_CODED_SLICE_CRA )
3599  {
3600    setSliceType( I_SLICE );
3601  }
3602  else
3603  {
3604    setSliceType( pcSlice->getSliceType() );
3605  }
3606
3607  if( this->isIntra() )
3608  {
3609    return;
3610  }
3611
3612  //initialize reference POC of BL
3613  for( Int iRefPicList = 0; iRefPicList < 2; iRefPicList++ )
3614  {
3615    RefPicList eRefPicList = RefPicList( iRefPicList );
3616
3617    assert( pcSlice->getNumRefIdx( eRefPicList) >= 0 );
3618    setNumRefIdx( eRefPicList, pcSlice->getNumRefIdx( eRefPicList ) - 1 );
3619    assert( getNumRefIdx( eRefPicList) <= MAX_NUM_REF);
3620
3621    for(Int refIdx = 0; refIdx < getNumRefIdx( eRefPicList ); refIdx++) 
3622    {
3623      setRefPOC( pcSlice->getRefPic( eRefPicList, refIdx )->getPOC(), eRefPicList, refIdx );
3624      setRefPic( pcSlice->getRefPic( eRefPicList, refIdx ), eRefPicList, refIdx );
3625      /*
3626      // should be set if the base layer has its own instance of the reference picture lists, currently EL RPL is reused.
3627      getRefPic( eRefPicList, refIdx )->setLayerId( 0 );
3628      getRefPic( eRefPicList, refIdx )->setIsLongTerm( pcSlice->getRefPic( eRefPicList, refIdx )->getIsLongTerm() );     
3629      */
3630
3631    }
3632  } 
3633  return;
3634}
3635#endif
3636
3637Bool TComSlice::setBaseColPic(  TComList<TComPic*>& rcListPic, UInt refLayerIdc )
3638{ 
3639  if(m_layerId == 0)
3640  {
3641    memset( m_pcBaseColPic, 0, sizeof( m_pcBaseColPic ) );
3642    return false;
3643  }       
3644#if POC_RESET_FLAG
3645  TComPic* pic = xGetRefPic( rcListPic, m_bPocResetFlag ? 0 : m_iPOC );
3646
3647  if( pic )
3648  {
3649    setBaseColPic(refLayerIdc, pic );
3650  }
3651  else
3652  {
3653    return false;
3654  }
3655 
3656  return true;
3657#else
3658  setBaseColPic(refLayerIdc, xGetRefPic(rcListPic, getPOC())); 
3659#endif
3660}
3661
3662#if MFM_ENCCONSTRAINT
3663TComPic* TComSlice::getBaseColPic(  TComList<TComPic*>& rcListPic )
3664{
3665#if POC_RESET_FLAG
3666  return xGetRefPic( rcListPic, m_bPocResetFlag ? 0 : m_iPOC );
3667#else
3668  return xGetRefPic( rcListPic, m_iPOC );
3669#endif
3670}
3671#endif
3672
3673#if REF_IDX_MFM
3674Void TComSlice::setRefPOCListILP( TComPic** ilpPic, TComPic** pcRefPicRL )
3675{
3676  for( UInt i = 0; i < m_activeNumILRRefIdx; i++ )
3677  {
3678    UInt refLayerIdc = m_interLayerPredLayerIdc[i];
3679
3680    TComPic* pcRefPicBL = pcRefPicRL[refLayerIdc];
3681
3682    //set reference picture POC of each ILP reference
3683    Int thePoc = ilpPic[refLayerIdc]->getPOC(); 
3684    assert(thePoc == pcRefPicBL->getPOC());
3685
3686    ilpPic[refLayerIdc]->getSlice(0)->setBaseColPic( refLayerIdc, pcRefPicBL );
3687
3688    //copy layer id from the reference layer   
3689    ilpPic[refLayerIdc]->setLayerId( pcRefPicBL->getLayerId() );
3690
3691    //copy slice type from the reference layer
3692    ilpPic[refLayerIdc]->getSlice(0)->setSliceType( pcRefPicBL->getSlice(0)->getSliceType() );
3693
3694    for( Int refList = 0; refList < 2; refList++ )
3695    {
3696      RefPicList refPicList = RefPicList( refList );
3697
3698      //set reference POC of ILP
3699      ilpPic[refLayerIdc]->getSlice(0)->setNumRefIdx(refPicList, pcRefPicBL->getSlice(0)->getNumRefIdx(refPicList));
3700      assert(ilpPic[refLayerIdc]->getSlice(0)->getNumRefIdx(refPicList) >= 0);
3701      assert(ilpPic[refLayerIdc]->getSlice(0)->getNumRefIdx(refPicList) <= MAX_NUM_REF);
3702
3703      //initialize reference POC of ILP
3704      for(Int refIdx = 0; refIdx < pcRefPicBL->getSlice(0)->getNumRefIdx(refPicList); refIdx++)
3705      {
3706        ilpPic[refLayerIdc]->getSlice(0)->setRefPOC(pcRefPicBL->getSlice(0)->getRefPOC(refPicList, refIdx), refPicList, refIdx);
3707        ilpPic[refLayerIdc]->getSlice(0)->setRefPic(pcRefPicBL->getSlice(0)->getRefPic(refPicList, refIdx), refPicList, refIdx);
3708      }
3709
3710      for(Int refIdx = pcRefPicBL->getSlice(0)->getNumRefIdx(refPicList); refIdx < MAX_NUM_REF; refIdx++) 
3711      { 
3712        ilpPic[refLayerIdc]->getSlice(0)->setRefPOC(0, refPicList, refIdx); 
3713        ilpPic[refLayerIdc]->getSlice(0)->setRefPic(NULL, refPicList, refIdx); 
3714      }
3715
3716      //copy reference pictures' marking from the reference layer
3717      for(Int j = 0; j < MAX_NUM_REF + 1; j++)
3718      {
3719        ilpPic[refLayerIdc]->getSlice(0)->setIsUsedAsLongTerm(refList, j, pcRefPicBL->getSlice(0)->getIsUsedAsLongTerm(refList, j));
3720      }
3721    }
3722  }
3723  return;
3724}
3725#endif
3726
3727Void TComSlice::setILRPic(TComPic **pcIlpPic)
3728{
3729  for( Int i = 0; i < m_activeNumILRRefIdx; i++ )
3730  {
3731    Int refLayerIdc = m_interLayerPredLayerIdc[i];
3732
3733    if( pcIlpPic[refLayerIdc] )
3734    {
3735      pcIlpPic[refLayerIdc]->copyUpsampledPictureYuv( m_pcPic->getFullPelBaseRec( refLayerIdc ), pcIlpPic[refLayerIdc]->getPicYuvRec() );
3736      pcIlpPic[refLayerIdc]->getSlice(0)->setPOC( m_iPOC );
3737      pcIlpPic[refLayerIdc]->setLayerId( m_pcBaseColPic[refLayerIdc]->getLayerId() ); //set reference layerId
3738      pcIlpPic[refLayerIdc]->getPicYuvRec()->setBorderExtension( false );
3739      pcIlpPic[refLayerIdc]->getPicYuvRec()->extendPicBorder();
3740      for (Int j=0; j<pcIlpPic[refLayerIdc]->getPicSym()->getNumberOfCUsInFrame(); j++)    // set reference CU layerId
3741      {
3742        pcIlpPic[refLayerIdc]->getPicSym()->getCU(j)->setLayerId( pcIlpPic[refLayerIdc]->getLayerId() );
3743      }
3744    }
3745  }
3746}
3747
3748#endif //SVC_EXTENSION
3749
3750//! \}
Note: See TracBrowser for help on using the repository browser.