source: SHVCSoftware/branches/SHM-2.0-dev/source/Lib/TLibCommon/TComSlice.cpp @ 160

Last change on this file since 160 was 160, checked in by qualcomm, 12 years ago

Layer ID list-related derived variables in VPS (MACRO: DERIVE_LAYER_ID_LIST_VARIABLES)

Derive variables layerSetLayerIdList and numLayerInIdList (variables derived L1003_v34). Useful for parsing syntax elements in the VPS.

From: Adarsh K. Ramasubramonian <aramasub@…>

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