source: SHVCSoftware/branches/SHM-3.0-dev/source/Lib/TLibCommon/TComSlice.cpp @ 330

Last change on this file since 330 was 324, checked in by seregin, 11 years ago

remove alternative collocated picture signalling (JCTVC-N0107)

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