source: 3DVCSoftware/branches/HTM-11.1-dev0/source/Lib/TLibEncoder/TEncGOP.cpp @ 969

Last change on this file since 969 was 964, checked in by tech, 11 years ago
  • Merged 11.0-dev0@963. (Update to HM 14.0 + MV-HEVC Draft 8 HLS)
  • Added coding results.
  • Changed version number.
  • Property svn:eol-style set to native
File size: 128.9 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6* Copyright (c) 2010-2014, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TEncGOP.cpp
35    \brief    GOP encoder class
36*/
37
38#include <list>
39#include <algorithm>
40#include <functional>
41
42#include "TEncTop.h"
43#include "TEncGOP.h"
44#include "TEncAnalyze.h"
45#include "libmd5/MD5.h"
46#include "TLibCommon/SEI.h"
47#include "TLibCommon/NAL.h"
48#include "NALwrite.h"
49#include <time.h>
50#include <math.h>
51
52using namespace std;
53//! \ingroup TLibEncoder
54//! \{
55
56// ====================================================================================================================
57// Constructor / destructor / initialization / destroy
58// ====================================================================================================================
59Int getLSB(Int poc, Int maxLSB)
60{
61  if (poc >= 0)
62  {
63    return poc % maxLSB;
64  }
65  else
66  {
67    return (maxLSB - ((-poc) % maxLSB)) % maxLSB;
68  }
69}
70
71TEncGOP::TEncGOP()
72{
73  m_iLastIDR            = 0;
74  m_iGopSize            = 0;
75  m_iNumPicCoded        = 0; //Niko
76  m_bFirst              = true;
77#if ALLOW_RECOVERY_POINT_AS_RAP
78  m_iLastRecoveryPicPOC = 0;
79#endif
80 
81  m_pcCfg               = NULL;
82  m_pcSliceEncoder      = NULL;
83  m_pcListPic           = NULL;
84 
85  m_pcEntropyCoder      = NULL;
86  m_pcCavlcCoder        = NULL;
87  m_pcSbacCoder         = NULL;
88  m_pcBinCABAC          = NULL;
89 
90  m_bSeqFirst           = true;
91 
92  m_bRefreshPending     = 0;
93  m_pocCRA            = 0;
94  m_numLongTermRefPicSPS = 0;
95  ::memset(m_ltRefPicPocLsbSps, 0, sizeof(m_ltRefPicPocLsbSps));
96  ::memset(m_ltRefPicUsedByCurrPicFlag, 0, sizeof(m_ltRefPicUsedByCurrPicFlag));
97  m_cpbRemovalDelay   = 0;
98  m_lastBPSEI         = 0;
99  xResetNonNestedSEIPresentFlags();
100  xResetNestedSEIPresentFlags();
101#if H_MV
102  m_layerId      = 0;
103  m_viewId       = 0;
104  m_pocLastCoded = -1; 
105#if H_3D
106  m_viewIndex  =   0; 
107  m_isDepth = false;
108#endif
109#endif
110#if FIX1172
111  m_associatedIRAPType = NAL_UNIT_CODED_SLICE_IDR_N_LP;
112  m_associatedIRAPPOC  = 0;
113#endif
114  return;
115}
116
117TEncGOP::~TEncGOP()
118{
119}
120
121/** Create list to contain pointers to LCU start addresses of slice.
122 */
123Void  TEncGOP::create()
124{
125  m_bLongtermTestPictureHasBeenCoded = 0;
126  m_bLongtermTestPictureHasBeenCoded2 = 0;
127}
128
129Void  TEncGOP::destroy()
130{
131}
132
133Void TEncGOP::init ( TEncTop* pcTEncTop )
134{
135  m_pcEncTop     = pcTEncTop;
136  m_pcCfg                = pcTEncTop;
137  m_pcSliceEncoder       = pcTEncTop->getSliceEncoder();
138  m_pcListPic            = pcTEncTop->getListPic();
139 
140  m_pcEntropyCoder       = pcTEncTop->getEntropyCoder();
141  m_pcCavlcCoder         = pcTEncTop->getCavlcCoder();
142  m_pcSbacCoder          = pcTEncTop->getSbacCoder();
143  m_pcBinCABAC           = pcTEncTop->getBinCABAC();
144  m_pcLoopFilter         = pcTEncTop->getLoopFilter();
145  m_pcBitCounter         = pcTEncTop->getBitCounter();
146 
147  //--Adaptive Loop filter
148  m_pcSAO                = pcTEncTop->getSAO();
149  m_pcRateCtrl           = pcTEncTop->getRateCtrl();
150  m_lastBPSEI          = 0;
151  m_totalCoded         = 0;
152
153#if H_MV
154  m_ivPicLists           = pcTEncTop->getIvPicLists(); 
155  m_layerId              = pcTEncTop->getLayerId();
156  m_viewId               = pcTEncTop->getViewId();
157#if H_3D
158  m_viewIndex            = pcTEncTop->getViewIndex();
159  m_isDepth              = pcTEncTop->getIsDepth();
160#endif
161#endif
162
163#if KWU_FIX_URQ
164  m_pcRateCtrl           = pcTEncTop->getRateCtrl();
165#endif
166}
167
168SEIActiveParameterSets* TEncGOP::xCreateSEIActiveParameterSets (TComSPS *sps)
169{
170  SEIActiveParameterSets *seiActiveParameterSets = new SEIActiveParameterSets(); 
171  seiActiveParameterSets->activeVPSId = m_pcCfg->getVPS()->getVPSId(); 
172  seiActiveParameterSets->m_selfContainedCvsFlag = false;
173  seiActiveParameterSets->m_noParameterSetUpdateFlag = false;
174  seiActiveParameterSets->numSpsIdsMinus1 = 0;
175  seiActiveParameterSets->activeSeqParameterSetId.resize(seiActiveParameterSets->numSpsIdsMinus1 + 1); 
176  seiActiveParameterSets->activeSeqParameterSetId[0] = sps->getSPSId();
177  return seiActiveParameterSets;
178}
179
180SEIFramePacking* TEncGOP::xCreateSEIFramePacking()
181{
182  SEIFramePacking *seiFramePacking = new SEIFramePacking();
183  seiFramePacking->m_arrangementId = m_pcCfg->getFramePackingArrangementSEIId();
184  seiFramePacking->m_arrangementCancelFlag = 0;
185  seiFramePacking->m_arrangementType = m_pcCfg->getFramePackingArrangementSEIType();
186  assert((seiFramePacking->m_arrangementType > 2) && (seiFramePacking->m_arrangementType < 6) );
187  seiFramePacking->m_quincunxSamplingFlag = m_pcCfg->getFramePackingArrangementSEIQuincunx();
188  seiFramePacking->m_contentInterpretationType = m_pcCfg->getFramePackingArrangementSEIInterpretation();
189  seiFramePacking->m_spatialFlippingFlag = 0;
190  seiFramePacking->m_frame0FlippedFlag = 0;
191  seiFramePacking->m_fieldViewsFlag = (seiFramePacking->m_arrangementType == 2);
192  seiFramePacking->m_currentFrameIsFrame0Flag = ((seiFramePacking->m_arrangementType == 5) && m_iNumPicCoded&1);
193  seiFramePacking->m_frame0SelfContainedFlag = 0;
194  seiFramePacking->m_frame1SelfContainedFlag = 0;
195  seiFramePacking->m_frame0GridPositionX = 0;
196  seiFramePacking->m_frame0GridPositionY = 0;
197  seiFramePacking->m_frame1GridPositionX = 0;
198  seiFramePacking->m_frame1GridPositionY = 0;
199  seiFramePacking->m_arrangementReservedByte = 0;
200  seiFramePacking->m_arrangementPersistenceFlag = true;
201  seiFramePacking->m_upsampledAspectRatio = 0;
202  return seiFramePacking;
203}
204
205SEIDisplayOrientation* TEncGOP::xCreateSEIDisplayOrientation()
206{
207  SEIDisplayOrientation *seiDisplayOrientation = new SEIDisplayOrientation();
208  seiDisplayOrientation->cancelFlag = false;
209  seiDisplayOrientation->horFlip = false;
210  seiDisplayOrientation->verFlip = false;
211  seiDisplayOrientation->anticlockwiseRotation = m_pcCfg->getDisplayOrientationSEIAngle();
212  return seiDisplayOrientation;
213}
214
215SEIToneMappingInfo*  TEncGOP::xCreateSEIToneMappingInfo()
216{
217  SEIToneMappingInfo *seiToneMappingInfo = new SEIToneMappingInfo();
218  seiToneMappingInfo->m_toneMapId = m_pcCfg->getTMISEIToneMapId();
219  seiToneMappingInfo->m_toneMapCancelFlag = m_pcCfg->getTMISEIToneMapCancelFlag();
220  seiToneMappingInfo->m_toneMapPersistenceFlag = m_pcCfg->getTMISEIToneMapPersistenceFlag();
221
222  seiToneMappingInfo->m_codedDataBitDepth = m_pcCfg->getTMISEICodedDataBitDepth();
223  assert(seiToneMappingInfo->m_codedDataBitDepth >= 8 && seiToneMappingInfo->m_codedDataBitDepth <= 14);
224  seiToneMappingInfo->m_targetBitDepth = m_pcCfg->getTMISEITargetBitDepth();
225  assert( seiToneMappingInfo->m_targetBitDepth >= 1 && seiToneMappingInfo->m_targetBitDepth <= 17 );
226  seiToneMappingInfo->m_modelId = m_pcCfg->getTMISEIModelID();
227  assert(seiToneMappingInfo->m_modelId >=0 &&seiToneMappingInfo->m_modelId<=4);
228
229  switch( seiToneMappingInfo->m_modelId)
230  {
231  case 0:
232    {
233      seiToneMappingInfo->m_minValue = m_pcCfg->getTMISEIMinValue();
234      seiToneMappingInfo->m_maxValue = m_pcCfg->getTMISEIMaxValue();
235      break;
236    }
237  case 1:
238    {
239      seiToneMappingInfo->m_sigmoidMidpoint = m_pcCfg->getTMISEISigmoidMidpoint();
240      seiToneMappingInfo->m_sigmoidWidth = m_pcCfg->getTMISEISigmoidWidth();
241      break;
242    }
243  case 2:
244    {
245      UInt num = 1u<<(seiToneMappingInfo->m_targetBitDepth);
246      seiToneMappingInfo->m_startOfCodedInterval.resize(num);
247      Int* ptmp = m_pcCfg->getTMISEIStartOfCodedInterva();
248      if(ptmp)
249      {
250        for(int i=0; i<num;i++)
251        {
252          seiToneMappingInfo->m_startOfCodedInterval[i] = ptmp[i];
253        }
254      }
255      break;
256    }
257  case 3:
258    {
259      seiToneMappingInfo->m_numPivots = m_pcCfg->getTMISEINumPivots();
260      seiToneMappingInfo->m_codedPivotValue.resize(seiToneMappingInfo->m_numPivots);
261      seiToneMappingInfo->m_targetPivotValue.resize(seiToneMappingInfo->m_numPivots);
262      Int* ptmpcoded = m_pcCfg->getTMISEICodedPivotValue();
263      Int* ptmptarget = m_pcCfg->getTMISEITargetPivotValue();
264      if(ptmpcoded&&ptmptarget)
265      {
266        for(int i=0; i<(seiToneMappingInfo->m_numPivots);i++)
267        {
268          seiToneMappingInfo->m_codedPivotValue[i]=ptmpcoded[i];
269          seiToneMappingInfo->m_targetPivotValue[i]=ptmptarget[i];
270         }
271       }
272       break;
273     }
274  case 4:
275     {
276       seiToneMappingInfo->m_cameraIsoSpeedIdc = m_pcCfg->getTMISEICameraIsoSpeedIdc();
277       seiToneMappingInfo->m_cameraIsoSpeedValue = m_pcCfg->getTMISEICameraIsoSpeedValue();
278       assert( seiToneMappingInfo->m_cameraIsoSpeedValue !=0 );
279       seiToneMappingInfo->m_exposureIndexIdc = m_pcCfg->getTMISEIExposurIndexIdc();
280       seiToneMappingInfo->m_exposureIndexValue = m_pcCfg->getTMISEIExposurIndexValue();
281       assert( seiToneMappingInfo->m_exposureIndexValue !=0 );
282       seiToneMappingInfo->m_exposureCompensationValueSignFlag = m_pcCfg->getTMISEIExposureCompensationValueSignFlag();
283       seiToneMappingInfo->m_exposureCompensationValueNumerator = m_pcCfg->getTMISEIExposureCompensationValueNumerator();
284       seiToneMappingInfo->m_exposureCompensationValueDenomIdc = m_pcCfg->getTMISEIExposureCompensationValueDenomIdc();
285       seiToneMappingInfo->m_refScreenLuminanceWhite = m_pcCfg->getTMISEIRefScreenLuminanceWhite();
286       seiToneMappingInfo->m_extendedRangeWhiteLevel = m_pcCfg->getTMISEIExtendedRangeWhiteLevel();
287       assert( seiToneMappingInfo->m_extendedRangeWhiteLevel >= 100 );
288       seiToneMappingInfo->m_nominalBlackLevelLumaCodeValue = m_pcCfg->getTMISEINominalBlackLevelLumaCodeValue();
289       seiToneMappingInfo->m_nominalWhiteLevelLumaCodeValue = m_pcCfg->getTMISEINominalWhiteLevelLumaCodeValue();
290       assert( seiToneMappingInfo->m_nominalWhiteLevelLumaCodeValue > seiToneMappingInfo->m_nominalBlackLevelLumaCodeValue );
291       seiToneMappingInfo->m_extendedWhiteLevelLumaCodeValue = m_pcCfg->getTMISEIExtendedWhiteLevelLumaCodeValue();
292       assert( seiToneMappingInfo->m_extendedWhiteLevelLumaCodeValue >= seiToneMappingInfo->m_nominalWhiteLevelLumaCodeValue );
293       break;
294    }
295  default:
296    {
297      assert(!"Undefined SEIToneMapModelId");
298      break;
299    }
300  }
301  return seiToneMappingInfo;
302}
303
304#if H_MV
305SEISubBitstreamProperty *TEncGOP::xCreateSEISubBitstreamProperty( TComSPS *sps)
306{
307  SEISubBitstreamProperty *seiSubBitstreamProperty = new SEISubBitstreamProperty();
308
309  seiSubBitstreamProperty->m_activeVpsId = sps->getVPSId();
310  /* These values can be determined by the encoder; for now we will use the input parameter */
311  TEncTop *encTop = this->m_pcEncTop;
312  seiSubBitstreamProperty->m_numAdditionalSubStreams = encTop->getNumAdditionalSubStreams();
313  seiSubBitstreamProperty->m_subBitstreamMode        = encTop->getSubBitstreamMode();
314  seiSubBitstreamProperty->m_outputLayerSetIdxToVps  = encTop->getOutputLayerSetIdxToVps();
315  seiSubBitstreamProperty->m_highestSublayerId       = encTop->getHighestSublayerId();
316  seiSubBitstreamProperty->m_avgBitRate              = encTop->getAvgBitRate();
317  seiSubBitstreamProperty->m_maxBitRate              = encTop->getMaxBitRate();
318
319  return seiSubBitstreamProperty;
320}
321#endif
322
323Void TEncGOP::xCreateLeadingSEIMessages (/*SEIMessages seiMessages,*/ AccessUnit &accessUnit, TComSPS *sps)
324{
325  OutputNALUnit nalu(NAL_UNIT_PREFIX_SEI);
326
327  if(m_pcCfg->getActiveParameterSetsSEIEnabled())
328  {
329    SEIActiveParameterSets *sei = xCreateSEIActiveParameterSets (sps);
330
331    //nalu = NALUnit(NAL_UNIT_SEI);
332    m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
333    m_seiWriter.writeSEImessage(nalu.m_Bitstream, *sei, sps); 
334    writeRBSPTrailingBits(nalu.m_Bitstream);
335    accessUnit.push_back(new NALUnitEBSP(nalu));
336    delete sei;
337    m_activeParameterSetSEIPresentInAU = true;
338  }
339
340  if(m_pcCfg->getFramePackingArrangementSEIEnabled())
341  {
342    SEIFramePacking *sei = xCreateSEIFramePacking ();
343
344    nalu = NALUnit(NAL_UNIT_PREFIX_SEI);
345    m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
346    m_seiWriter.writeSEImessage(nalu.m_Bitstream, *sei, sps);
347    writeRBSPTrailingBits(nalu.m_Bitstream);
348    accessUnit.push_back(new NALUnitEBSP(nalu));
349    delete sei;
350  }
351  if (m_pcCfg->getDisplayOrientationSEIAngle())
352  {
353    SEIDisplayOrientation *sei = xCreateSEIDisplayOrientation();
354
355    nalu = NALUnit(NAL_UNIT_PREFIX_SEI); 
356    m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
357    m_seiWriter.writeSEImessage(nalu.m_Bitstream, *sei, sps); 
358    writeRBSPTrailingBits(nalu.m_Bitstream);
359    accessUnit.push_back(new NALUnitEBSP(nalu));
360    delete sei;
361  }
362  if(m_pcCfg->getToneMappingInfoSEIEnabled())
363  {
364    SEIToneMappingInfo *sei = xCreateSEIToneMappingInfo ();
365     
366    nalu = NALUnit(NAL_UNIT_PREFIX_SEI); 
367    m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
368    m_seiWriter.writeSEImessage(nalu.m_Bitstream, *sei, sps); 
369    writeRBSPTrailingBits(nalu.m_Bitstream);
370    accessUnit.push_back(new NALUnitEBSP(nalu));
371    delete sei;
372  }
373#if H_MV
374  if( m_pcCfg->getSubBitstreamPropSEIEnabled() )
375  {
376    SEISubBitstreamProperty *sei = xCreateSEISubBitstreamProperty ( sps );
377
378    nalu = NALUnit(NAL_UNIT_PREFIX_SEI); 
379    m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
380    m_seiWriter.writeSEImessage(nalu.m_Bitstream, *sei, sps); 
381    writeRBSPTrailingBits(nalu.m_Bitstream);
382    accessUnit.push_back(new NALUnitEBSP(nalu));
383    delete sei;
384  }
385#endif
386}
387
388// ====================================================================================================================
389// Public member functions
390// ====================================================================================================================
391#if H_MV
392Void TEncGOP::initGOP( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut, std::list<AccessUnit>& accessUnitsInGOP)
393{
394  xInitGOP( iPOCLast, iNumPicRcvd, rcListPic, rcListPicYuvRecOut );
395  m_iNumPicCoded = 0;
396}
397#endif
398#if H_MV
399Void TEncGOP::compressPicInGOP( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut, std::list<AccessUnit>& accessUnitsInGOP, Int iGOPid, bool isField, bool isTff)
400#else
401Void TEncGOP::compressGOP( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut, std::list<AccessUnit>& accessUnitsInGOP, bool isField, bool isTff)
402#endif
403{
404  TComPic*        pcPic;
405  TComPicYuv*     pcPicYuvRecOut;
406  TComSlice*      pcSlice;
407  TComOutputBitstream  *pcBitstreamRedirect;
408  pcBitstreamRedirect = new TComOutputBitstream;
409  AccessUnit::iterator  itLocationToPushSliceHeaderNALU; // used to store location where NALU containing slice header is to be inserted
410  UInt                  uiOneBitstreamPerSliceLength = 0;
411  TEncSbac* pcSbacCoders = NULL;
412  TComOutputBitstream* pcSubstreamsOut = NULL;
413
414#if !H_MV
415  xInitGOP( iPOCLast, iNumPicRcvd, rcListPic, rcListPicYuvRecOut, isField );
416
417 
418  m_iNumPicCoded = 0;
419#endif
420  SEIPictureTiming pictureTimingSEI;
421  Bool writeSOP = m_pcCfg->getSOPDescriptionSEIEnabled();
422  // Initialize Scalable Nesting SEI with single layer values
423  SEIScalableNesting scalableNestingSEI;
424  scalableNestingSEI.m_bitStreamSubsetFlag           = 1;      // If the nested SEI messages are picture buffereing SEI mesages, picure timing SEI messages or sub-picture timing SEI messages, bitstream_subset_flag shall be equal to 1
425  scalableNestingSEI.m_nestingOpFlag                 = 0;
426  scalableNestingSEI.m_nestingNumOpsMinus1           = 0;      //nesting_num_ops_minus1
427  scalableNestingSEI.m_allLayersFlag                 = 0;
428  scalableNestingSEI.m_nestingNoOpMaxTemporalIdPlus1 = 6 + 1;  //nesting_no_op_max_temporal_id_plus1
429  scalableNestingSEI.m_nestingNumLayersMinus1        = 1 - 1;  //nesting_num_layers_minus1
430  scalableNestingSEI.m_nestingLayerId[0]             = 0;
431  scalableNestingSEI.m_callerOwnsSEIs                = true;
432  Int picSptDpbOutputDuDelay = 0;
433  UInt *accumBitsDU = NULL;
434  UInt *accumNalsDU = NULL;
435  SEIDecodingUnitInfo decodingUnitInfoSEI;
436#if EFFICIENT_FIELD_IRAP
437  Int IRAPGOPid = -1;
438  Bool IRAPtoReorder = false;
439  Bool swapIRAPForward = false;
440  if(isField)
441  {
442    Int pocCurr;
443#if !H_MV
444    for ( Int iGOPid=0; iGOPid < m_iGopSize; iGOPid++ )
445#endif
446    {
447      // determine actual POC
448      if(iPOCLast == 0) //case first frame or first top field
449      {
450        pocCurr=0;
451      }
452      else if(iPOCLast == 1 && isField) //case first bottom field, just like the first frame, the poc computation is not right anymore, we set the right value
453      {
454        pocCurr = 1;
455      }
456      else
457      {
458        pocCurr = iPOCLast - iNumPicRcvd + m_pcCfg->getGOPEntry(iGOPid).m_POC - isField;
459      }
460
461      // check if POC corresponds to IRAP
462      NalUnitType tmpUnitType = getNalUnitType(pocCurr, m_iLastIDR, isField);
463      if(tmpUnitType >= NAL_UNIT_CODED_SLICE_BLA_W_LP && tmpUnitType <= NAL_UNIT_CODED_SLICE_CRA) // if picture is an IRAP
464      {
465        if(pocCurr%2 == 0 && iGOPid < m_iGopSize-1 && m_pcCfg->getGOPEntry(iGOPid).m_POC == m_pcCfg->getGOPEntry(iGOPid+1).m_POC-1)
466        { // if top field and following picture in enc order is associated bottom field
467          IRAPGOPid = iGOPid;
468          IRAPtoReorder = true;
469          swapIRAPForward = true; 
470          break;
471        }
472        if(pocCurr%2 != 0 && iGOPid > 0 && m_pcCfg->getGOPEntry(iGOPid).m_POC == m_pcCfg->getGOPEntry(iGOPid-1).m_POC+1)
473        {
474          // if picture is an IRAP remember to process it first
475          IRAPGOPid = iGOPid;
476          IRAPtoReorder = true;
477          swapIRAPForward = false; 
478          break;
479        }
480      }
481    }
482  }
483#endif
484#if !H_MV
485  for ( Int iGOPid=0; iGOPid < m_iGopSize; iGOPid++ )
486#endif
487  {
488#if EFFICIENT_FIELD_IRAP
489    if(IRAPtoReorder)
490    {
491      if(swapIRAPForward)
492      {
493        if(iGOPid == IRAPGOPid)
494        {
495          iGOPid = IRAPGOPid +1;
496        }
497        else if(iGOPid == IRAPGOPid +1)
498        {
499          iGOPid = IRAPGOPid;
500        }
501      }
502      else
503      {
504        if(iGOPid == IRAPGOPid -1)
505        {
506          iGOPid = IRAPGOPid;
507        }
508        else if(iGOPid == IRAPGOPid)
509        {
510          iGOPid = IRAPGOPid -1;
511        }
512      }
513    }
514#endif
515    UInt uiColDir = 1;
516    //-- For time output for each slice
517    long iBeforeTime = clock();
518
519    //select uiColDir
520    Int iCloseLeft=1, iCloseRight=-1;
521    for(Int i = 0; i<m_pcCfg->getGOPEntry(iGOPid).m_numRefPics; i++) 
522    {
523      Int iRef = m_pcCfg->getGOPEntry(iGOPid).m_referencePics[i];
524      if(iRef>0&&(iRef<iCloseRight||iCloseRight==-1))
525      {
526        iCloseRight=iRef;
527      }
528      else if(iRef<0&&(iRef>iCloseLeft||iCloseLeft==1))
529      {
530        iCloseLeft=iRef;
531      }
532    }
533    if(iCloseRight>-1)
534    {
535      iCloseRight=iCloseRight+m_pcCfg->getGOPEntry(iGOPid).m_POC-1;
536    }
537    if(iCloseLeft<1) 
538    {
539      iCloseLeft=iCloseLeft+m_pcCfg->getGOPEntry(iGOPid).m_POC-1;
540      while(iCloseLeft<0)
541      {
542        iCloseLeft+=m_iGopSize;
543      }
544    }
545    Int iLeftQP=0, iRightQP=0;
546    for(Int i=0; i<m_iGopSize; i++)
547    {
548      if(m_pcCfg->getGOPEntry(i).m_POC==(iCloseLeft%m_iGopSize)+1)
549      {
550        iLeftQP= m_pcCfg->getGOPEntry(i).m_QPOffset;
551      }
552      if (m_pcCfg->getGOPEntry(i).m_POC==(iCloseRight%m_iGopSize)+1)
553      {
554        iRightQP=m_pcCfg->getGOPEntry(i).m_QPOffset;
555      }
556    }
557    if(iCloseRight>-1&&iRightQP<iLeftQP)
558    {
559      uiColDir=0;
560    }
561
562    /////////////////////////////////////////////////////////////////////////////////////////////////// Initial to start encoding
563    Int iTimeOffset;
564    Int pocCurr;
565   
566    if(iPOCLast == 0) //case first frame or first top field
567    {
568      pocCurr=0;
569      iTimeOffset = 1;
570    }
571    else if(iPOCLast == 1 && isField) //case first bottom field, just like the first frame, the poc computation is not right anymore, we set the right value
572    {
573      pocCurr = 1;
574      iTimeOffset = 1;
575    }
576    else
577    {
578      pocCurr = iPOCLast - iNumPicRcvd + m_pcCfg->getGOPEntry(iGOPid).m_POC - isField;
579      iTimeOffset = m_pcCfg->getGOPEntry(iGOPid).m_POC;
580    }
581    if(pocCurr>=m_pcCfg->getFramesToBeEncoded())
582    {
583#if EFFICIENT_FIELD_IRAP
584      if(IRAPtoReorder)
585      {
586        if(swapIRAPForward)
587        {
588          if(iGOPid == IRAPGOPid)
589          {
590            iGOPid = IRAPGOPid +1;
591            IRAPtoReorder = false;
592          }
593          else if(iGOPid == IRAPGOPid +1)
594          {
595            iGOPid --;
596          }
597        }
598        else
599        {
600          if(iGOPid == IRAPGOPid)
601          {
602            iGOPid = IRAPGOPid -1;
603          }
604          else if(iGOPid == IRAPGOPid -1)
605          {
606            iGOPid = IRAPGOPid;
607            IRAPtoReorder = false;
608          }
609        }
610      }
611#endif
612#if H_MV
613      delete pcBitstreamRedirect;
614      return;
615#else
616      continue;
617#endif
618    }
619
620    if( getNalUnitType(pocCurr, m_iLastIDR, isField) == NAL_UNIT_CODED_SLICE_IDR_W_RADL || getNalUnitType(pocCurr, m_iLastIDR, isField) == NAL_UNIT_CODED_SLICE_IDR_N_LP )
621    {
622      m_iLastIDR = pocCurr;
623    }       
624    // start a new access unit: create an entry in the list of output access units
625    accessUnitsInGOP.push_back(AccessUnit());
626    AccessUnit& accessUnit = accessUnitsInGOP.back();
627    xGetBuffer( rcListPic, rcListPicYuvRecOut, iNumPicRcvd, iTimeOffset, pcPic, pcPicYuvRecOut, pocCurr, isField);
628
629    //  Slice data initialization
630    pcPic->clearSliceBuffer();
631    assert(pcPic->getNumAllocatedSlice() == 1);
632    m_pcSliceEncoder->setSliceIdx(0);
633    pcPic->setCurrSliceIdx(0);
634
635
636#if H_MV
637    m_pcSliceEncoder->initEncSlice ( pcPic, iPOCLast, pocCurr, iNumPicRcvd, iGOPid, pcSlice, m_pcEncTop->getVPS(), m_pcEncTop->getSPS(), m_pcEncTop->getPPS(), getLayerId(), isField  );     
638#else
639    m_pcSliceEncoder->initEncSlice ( pcPic, iPOCLast, pocCurr, iNumPicRcvd, iGOPid, pcSlice, m_pcEncTop->getSPS(), m_pcEncTop->getPPS(), isField  );
640#endif
641   
642    //Set Frame/Field coding
643    pcSlice->getPic()->setField(isField);
644
645    pcSlice->setLastIDR(m_iLastIDR);
646    pcSlice->setSliceIdx(0);
647#if H_MV
648    pcSlice->setRefPicSetInterLayer ( &m_refPicSetInterLayer0, &m_refPicSetInterLayer1 ); 
649    pcPic  ->setLayerId     ( getLayerId()   );
650    pcPic  ->setViewId      ( getViewId()    );   
651#if !H_3D
652    pcSlice->setLayerId     ( getLayerId() );
653    pcSlice->setViewId      ( getViewId()  );   
654    pcSlice->setVPS         ( m_pcEncTop->getVPS() );
655#else
656    pcPic  ->setViewIndex   ( getViewIndex() ); 
657    pcPic  ->setIsDepth( getIsDepth() );
658    pcSlice->setCamparaSlice( pcPic->getCodedScale(), pcPic->getCodedOffset() );   
659#endif
660#endif
661    //set default slice level flag to the same as SPS level flag
662    pcSlice->setLFCrossSliceBoundaryFlag(  pcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag()  );
663    pcSlice->setScalingList ( m_pcEncTop->getScalingList()  );
664    if(m_pcEncTop->getUseScalingListId() == SCALING_LIST_OFF)
665    {
666      m_pcEncTop->getTrQuant()->setFlatScalingList();
667      m_pcEncTop->getTrQuant()->setUseScalingList(false);
668      m_pcEncTop->getSPS()->setScalingListPresentFlag(false);
669      m_pcEncTop->getPPS()->setScalingListPresentFlag(false);
670    }
671    else if(m_pcEncTop->getUseScalingListId() == SCALING_LIST_DEFAULT)
672    {
673      pcSlice->setDefaultScalingList ();
674      m_pcEncTop->getSPS()->setScalingListPresentFlag(false);
675      m_pcEncTop->getPPS()->setScalingListPresentFlag(false);
676      m_pcEncTop->getTrQuant()->setScalingList(pcSlice->getScalingList());
677      m_pcEncTop->getTrQuant()->setUseScalingList(true);
678    }
679    else if(m_pcEncTop->getUseScalingListId() == SCALING_LIST_FILE_READ)
680    {
681      if(pcSlice->getScalingList()->xParseScalingList(m_pcCfg->getScalingListFile()))
682      {
683        pcSlice->setDefaultScalingList ();
684      }
685      pcSlice->getScalingList()->checkDcOfMatrix();
686      m_pcEncTop->getSPS()->setScalingListPresentFlag(pcSlice->checkDefaultScalingList());
687      m_pcEncTop->getPPS()->setScalingListPresentFlag(false);
688      m_pcEncTop->getTrQuant()->setScalingList(pcSlice->getScalingList());
689      m_pcEncTop->getTrQuant()->setUseScalingList(true);
690    }
691    else
692    {
693      printf("error : ScalingList == %d no support\n",m_pcEncTop->getUseScalingListId());
694      assert(0);
695    }
696
697#if H_MV
698    // Set the nal unit type
699    pcSlice->setNalUnitType(getNalUnitType(pocCurr, m_iLastIDR, isField));
700    if( pcSlice->getSliceType() == B_SLICE )
701    {
702      if( m_pcCfg->getGOPEntry( ( pcSlice->getRapPicFlag() && getLayerId() > 0 ) ? MAX_GOP : iGOPid ).m_sliceType == 'P' ) 
703      { 
704        pcSlice->setSliceType( P_SLICE );
705      }
706    }
707
708// To be checked!
709    if( pcSlice->getSliceType() == B_SLICE )
710    {
711      if( m_pcCfg->getGOPEntry( ( pcSlice->getRapPicFlag() && getLayerId() > 0 ) ? MAX_GOP : iGOPid ).m_sliceType == 'I' ) 
712      { 
713        pcSlice->setSliceType( I_SLICE );
714      }
715    }
716#else
717    if(pcSlice->getSliceType()==B_SLICE&&m_pcCfg->getGOPEntry(iGOPid).m_sliceType=='P')
718    {
719      pcSlice->setSliceType(P_SLICE);
720    }
721    if(pcSlice->getSliceType()==B_SLICE&&m_pcCfg->getGOPEntry(iGOPid).m_sliceType=='I')
722    {
723      pcSlice->setSliceType(I_SLICE);
724    }
725   
726    // Set the nal unit type
727    pcSlice->setNalUnitType(getNalUnitType(pocCurr, m_iLastIDR, isField));
728#endif
729    if(pcSlice->getTemporalLayerNonReferenceFlag())
730    {
731      if (pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_TRAIL_R &&
732          !(m_iGopSize == 1 && pcSlice->getSliceType() == I_SLICE))
733        // Add this condition to avoid POC issues with encoder_intra_main.cfg configuration (see #1127 in bug tracker)
734      {
735        pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_TRAIL_N);
736      }
737      if(pcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_RADL_R)
738      {
739        pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_RADL_N);
740      }
741      if(pcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_RASL_R)
742      {
743        pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_RASL_N);
744      }
745    }
746
747#if EFFICIENT_FIELD_IRAP
748#if FIX1172
749    if ( pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
750      || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
751      || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP
752      || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL
753      || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP
754      || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA )  // IRAP picture
755    {
756      m_associatedIRAPType = pcSlice->getNalUnitType();
757      m_associatedIRAPPOC = pocCurr;
758    }
759    pcSlice->setAssociatedIRAPType(m_associatedIRAPType);
760    pcSlice->setAssociatedIRAPPOC(m_associatedIRAPPOC);
761#endif
762#endif
763    // Do decoding refresh marking if any
764    pcSlice->decodingRefreshMarking(m_pocCRA, m_bRefreshPending, rcListPic);
765    m_pcEncTop->selectReferencePictureSet(pcSlice, pocCurr, iGOPid);
766    pcSlice->getRPS()->setNumberOfLongtermPictures(0);
767#if EFFICIENT_FIELD_IRAP
768#else
769#if FIX1172
770    if ( pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
771      || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL
772      || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP
773      || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL
774      || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP
775      || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA )  // IRAP picture
776    {
777      m_associatedIRAPType = pcSlice->getNalUnitType();
778      m_associatedIRAPPOC = pocCurr;
779    }
780    pcSlice->setAssociatedIRAPType(m_associatedIRAPType);
781    pcSlice->setAssociatedIRAPPOC(m_associatedIRAPPOC);
782#endif
783#endif
784
785#if ALLOW_RECOVERY_POINT_AS_RAP
786    if ((pcSlice->checkThatAllRefPicsAreAvailable(rcListPic, pcSlice->getRPS(), false, m_iLastRecoveryPicPOC, m_pcCfg->getDecodingRefreshType() == 3) != 0) || (pcSlice->isIRAP()) 
787#if EFFICIENT_FIELD_IRAP
788      || (isField && pcSlice->getAssociatedIRAPType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP && pcSlice->getAssociatedIRAPType() <= NAL_UNIT_CODED_SLICE_CRA && pcSlice->getAssociatedIRAPPOC() == pcSlice->getPOC()+1)
789#endif
790      )
791    {
792      pcSlice->createExplicitReferencePictureSetFromReference(rcListPic, pcSlice->getRPS(), pcSlice->isIRAP(), m_iLastRecoveryPicPOC, m_pcCfg->getDecodingRefreshType() == 3);
793    }
794#else
795    if ((pcSlice->checkThatAllRefPicsAreAvailable(rcListPic, pcSlice->getRPS(), false) != 0) || (pcSlice->isIRAP()))
796    {
797      pcSlice->createExplicitReferencePictureSetFromReference(rcListPic, pcSlice->getRPS(), pcSlice->isIRAP());
798    }
799#endif
800    pcSlice->applyReferencePictureSet(rcListPic, pcSlice->getRPS());
801
802    if(pcSlice->getTLayer() > 0 
803      &&  !( pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_RADL_N     // Check if not a leading picture
804          || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_RADL_R
805          || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_RASL_N
806          || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_RASL_R )
807        )
808    {
809      if(pcSlice->isTemporalLayerSwitchingPoint(rcListPic) || pcSlice->getSPS()->getTemporalIdNestingFlag())
810      {
811        if(pcSlice->getTemporalLayerNonReferenceFlag())
812        {
813          pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_TSA_N);
814        }
815        else
816        {
817          pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_TSA_R);
818        }
819      }
820      else if(pcSlice->isStepwiseTemporalLayerSwitchingPointCandidate(rcListPic))
821      {
822        Bool isSTSA=true;
823        for(Int ii=iGOPid+1;(ii<m_pcCfg->getGOPSize() && isSTSA==true);ii++)
824        {
825          Int lTid= m_pcCfg->getGOPEntry(ii).m_temporalId;
826          if(lTid==pcSlice->getTLayer()) 
827          {
828            TComReferencePictureSet* nRPS = pcSlice->getSPS()->getRPSList()->getReferencePictureSet(ii);
829            for(Int jj=0;jj<nRPS->getNumberOfPictures();jj++)
830            {
831              if(nRPS->getUsed(jj)) 
832              {
833                Int tPoc=m_pcCfg->getGOPEntry(ii).m_POC+nRPS->getDeltaPOC(jj);
834                Int kk=0;
835                for(kk=0;kk<m_pcCfg->getGOPSize();kk++)
836                {
837                  if(m_pcCfg->getGOPEntry(kk).m_POC==tPoc)
838                    break;
839                }
840                Int tTid=m_pcCfg->getGOPEntry(kk).m_temporalId;
841                if(tTid >= pcSlice->getTLayer())
842                {
843                  isSTSA=false;
844                  break;
845                }
846              }
847            }
848          }
849        }
850        if(isSTSA==true)
851        {   
852          if(pcSlice->getTemporalLayerNonReferenceFlag())
853          {
854            pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_STSA_N);
855          }
856          else
857          {
858            pcSlice->setNalUnitType(NAL_UNIT_CODED_SLICE_STSA_R);
859          }
860        }
861      }
862    }
863    arrangeLongtermPicturesInRPS(pcSlice, rcListPic);
864    TComRefPicListModification* refPicListModification = pcSlice->getRefPicListModification();
865    refPicListModification->setRefPicListModificationFlagL0(0);
866    refPicListModification->setRefPicListModificationFlagL1(0);
867#if H_MV
868    if ( pcSlice->getPPS()->getNumExtraSliceHeaderBits() > 0 )
869    {
870      // Some more sophisticated algorithm to determine discardable_flag might be added here.
871      pcSlice->setDiscardableFlag           ( false );     
872    }   
873
874    TComVPS*           vps = pcSlice->getVPS();     
875    Int numDirectRefLayers = vps    ->getNumDirectRefLayers( getLayerId() ); 
876    GOPEntry gopEntry      = m_pcCfg->getGOPEntry( (pcSlice->getRapPicFlag() && getLayerId() > 0) ? MAX_GOP : iGOPid );     
877   
878    Bool interLayerPredLayerIdcPresentFlag = false; 
879    if ( getLayerId() > 0 && !vps->getAllRefLayersActiveFlag() && numDirectRefLayers > 0 )
880    {         
881      pcSlice->setInterLayerPredEnabledFlag ( gopEntry.m_numActiveRefLayerPics > 0 );     
882      if ( pcSlice->getInterLayerPredEnabledFlag() && numDirectRefLayers > 1 )
883      {
884        if ( !vps->getMaxOneActiveRefLayerFlag() )
885        {   
886          pcSlice->setNumInterLayerRefPicsMinus1( gopEntry.m_numActiveRefLayerPics - 1 ); 
887        }
888        if ( gopEntry.m_numActiveRefLayerPics != vps->getNumDirectRefLayers( getLayerId() ) )
889        {       
890          interLayerPredLayerIdcPresentFlag = true; 
891          for (Int i = 0; i < gopEntry.m_numActiveRefLayerPics; i++ )
892          {
893            pcSlice->setInterLayerPredLayerIdc( i, gopEntry.m_interLayerPredLayerIdc[ i ] ); 
894          }
895        }
896      }
897    }
898    if ( !interLayerPredLayerIdcPresentFlag )
899    {
900      for( Int i = 0; i < pcSlice->getNumActiveRefLayerPics(); i++ )   
901      {
902        pcSlice->setInterLayerPredLayerIdc(i, pcSlice->getRefLayerPicIdc( i ) );
903      }
904    }
905
906
907    assert( pcSlice->getNumActiveRefLayerPics() == gopEntry.m_numActiveRefLayerPics ); 
908   
909    pcSlice->createInterLayerReferencePictureSet( m_ivPicLists, m_refPicSetInterLayer0, m_refPicSetInterLayer1 ); 
910    pcSlice->setNumRefIdx(REF_PIC_LIST_0,min(gopEntry.m_numRefPicsActive,( pcSlice->getRPS()->getNumberOfPictures() + (Int) m_refPicSetInterLayer0.size() + (Int) m_refPicSetInterLayer1.size()) ) );
911    pcSlice->setNumRefIdx(REF_PIC_LIST_1,min(gopEntry.m_numRefPicsActive,( pcSlice->getRPS()->getNumberOfPictures() + (Int) m_refPicSetInterLayer0.size() + (Int) m_refPicSetInterLayer1.size()) ) );
912
913    std::vector< TComPic* >    tempRefPicLists[2];
914    std::vector< Bool     >    usedAsLongTerm [2];
915    Int       numPocTotalCurr;
916
917    pcSlice->getTempRefPicLists( rcListPic, m_refPicSetInterLayer0, m_refPicSetInterLayer1, tempRefPicLists, usedAsLongTerm, numPocTotalCurr, true );
918   
919
920    xSetRefPicListModificationsMv( tempRefPicLists, pcSlice, iGOPid );   
921#else
922    pcSlice->setNumRefIdx(REF_PIC_LIST_0,min(m_pcCfg->getGOPEntry(iGOPid).m_numRefPicsActive,pcSlice->getRPS()->getNumberOfPictures()));
923    pcSlice->setNumRefIdx(REF_PIC_LIST_1,min(m_pcCfg->getGOPEntry(iGOPid).m_numRefPicsActive,pcSlice->getRPS()->getNumberOfPictures()));
924#endif
925
926#if ADAPTIVE_QP_SELECTION
927    pcSlice->setTrQuant( m_pcEncTop->getTrQuant() );
928#endif     
929
930    //  Set reference list
931#if H_MV   
932    pcSlice->setRefPicList( tempRefPicLists, usedAsLongTerm, numPocTotalCurr ); 
933#else
934    pcSlice->setRefPicList ( rcListPic );
935#endif
936 
937#if H_3D_ARP
938    //GT: This seems to be broken when layerId in vps is not equal to layerId in nuh
939    pcSlice->setARPStepNum(m_ivPicLists);
940    if(pcSlice->getARPStepNum() > 1)
941    {
942      for(Int iLayerId = 0; iLayerId < getLayerId(); iLayerId ++ )
943      {
944        Int  iViewIdx =   pcSlice->getVPS()->getViewIndex(iLayerId);
945        Bool bIsDepth = ( pcSlice->getVPS()->getDepthId  ( iLayerId ) == 1 );
946        if( iViewIdx<getViewIndex() && !bIsDepth )
947        {
948          pcSlice->setBaseViewRefPicList( m_ivPicLists->getPicList( iLayerId ), iViewIdx );
949        }
950      }
951    }
952#endif
953#if H_3D
954    pcSlice->setIvPicLists( m_ivPicLists );         
955#if H_3D_IV_MERGE   
956    assert( !m_pcEncTop->getIsDepth() || ( pcSlice->getTexturePic() != 0 ) );
957#endif   
958#endif
959    //  Slice info. refinement
960#if H_MV
961    if ( pcSlice->getSliceType() == B_SLICE )
962    {
963      if( m_pcCfg->getGOPEntry( ( pcSlice->getRapPicFlag() == true && getLayerId() > 0 ) ? MAX_GOP : iGOPid ).m_sliceType == 'P' ) 
964      { 
965        pcSlice->setSliceType( P_SLICE ); 
966      }
967    }
968#else
969    if ( (pcSlice->getSliceType() == B_SLICE) && (pcSlice->getNumRefIdx(REF_PIC_LIST_1) == 0) )
970    {
971      pcSlice->setSliceType ( P_SLICE );
972    }
973#endif
974    if (pcSlice->getSliceType() == B_SLICE)
975    {
976      pcSlice->setColFromL0Flag(1-uiColDir);
977      Bool bLowDelay = true;
978      Int  iCurrPOC  = pcSlice->getPOC();
979      Int iRefIdx = 0;
980
981      for (iRefIdx = 0; iRefIdx < pcSlice->getNumRefIdx(REF_PIC_LIST_0) && bLowDelay; iRefIdx++)
982      {
983        if ( pcSlice->getRefPic(REF_PIC_LIST_0, iRefIdx)->getPOC() > iCurrPOC )
984        {
985          bLowDelay = false;
986        }
987      }
988      for (iRefIdx = 0; iRefIdx < pcSlice->getNumRefIdx(REF_PIC_LIST_1) && bLowDelay; iRefIdx++)
989      {
990        if ( pcSlice->getRefPic(REF_PIC_LIST_1, iRefIdx)->getPOC() > iCurrPOC )
991        {
992          bLowDelay = false;
993        }
994      }
995
996      pcSlice->setCheckLDC(bLowDelay); 
997    }
998    else
999    {
1000      pcSlice->setCheckLDC(true); 
1001    }
1002
1003    uiColDir = 1-uiColDir;
1004
1005    //-------------------------------------------------------------
1006    pcSlice->setRefPOCList();
1007
1008    pcSlice->setList1IdxToList0Idx();
1009#if H_3D_TMVP
1010    if(pcSlice->getLayerId())
1011      pcSlice->generateAlterRefforTMVP();
1012#endif
1013    if (m_pcEncTop->getTMVPModeId() == 2)
1014    {
1015      if (iGOPid == 0) // first picture in SOP (i.e. forward B)
1016      {
1017        pcSlice->setEnableTMVPFlag(0);
1018      }
1019      else
1020      {
1021        // Note: pcSlice->getColFromL0Flag() is assumed to be always 0 and getcolRefIdx() is always 0.
1022        pcSlice->setEnableTMVPFlag(1);
1023      }
1024      pcSlice->getSPS()->setTMVPFlagsPresent(1);
1025    }
1026    else if (m_pcEncTop->getTMVPModeId() == 1)
1027    {
1028      pcSlice->getSPS()->setTMVPFlagsPresent(1);
1029      pcSlice->setEnableTMVPFlag(1);
1030    }
1031    else
1032    {
1033      pcSlice->getSPS()->setTMVPFlagsPresent(0);
1034      pcSlice->setEnableTMVPFlag(0);
1035    }
1036#if H_MV
1037    if( pcSlice->getIdrPicFlag() )
1038    {
1039      pcSlice->setEnableTMVPFlag(0);
1040    }
1041#endif
1042
1043#if H_3D_VSO
1044  // Should be moved to TEncTop !!!
1045  Bool bUseVSO = m_pcEncTop->getUseVSO();
1046 
1047  TComRdCost* pcRdCost = m_pcEncTop->getRdCost();   
1048
1049  pcRdCost->setUseVSO( bUseVSO );
1050
1051  // SAIT_VSO_EST_A0033
1052  pcRdCost->setUseEstimatedVSD( m_pcEncTop->getUseEstimatedVSD() );
1053
1054  if ( bUseVSO )
1055  {
1056    Int iVSOMode = m_pcEncTop->getVSOMode();
1057    pcRdCost->setVSOMode( iVSOMode  );
1058    pcRdCost->setAllowNegDist( m_pcEncTop->getAllowNegDist() );
1059
1060    // SAIT_VSO_EST_A0033
1061#if H_3D_FCO
1062    Bool flagRec;
1063    flagRec =  ((m_pcEncTop->getIvPicLists()->getPicYuv( pcSlice->getViewIndex(), false, pcSlice->getPOC(), true) == NULL) ? false: true);
1064    pcRdCost->setVideoRecPicYuv( m_pcEncTop->getIvPicLists()->getPicYuv( pcSlice->getViewIndex(), false, pcSlice->getPOC(), flagRec ) );
1065    pcRdCost->setDepthPicYuv   ( m_pcEncTop->getIvPicLists()->getPicYuv( pcSlice->getViewIndex(), true, pcSlice->getPOC(), false ) );
1066#else
1067    pcRdCost->setVideoRecPicYuv( m_pcEncTop->getIvPicLists()->getPicYuv( pcSlice->getViewIndex(), false , pcSlice->getPOC(), true ) );
1068    pcRdCost->setDepthPicYuv   ( m_pcEncTop->getIvPicLists()->getPicYuv( pcSlice->getViewIndex(), true  , pcSlice->getPOC(), false ) );
1069#endif
1070
1071    // LGE_WVSO_A0119
1072    Bool bUseWVSO  = m_pcEncTop->getUseWVSO();
1073    pcRdCost->setUseWVSO( bUseWVSO );
1074
1075  }
1076#endif
1077    /////////////////////////////////////////////////////////////////////////////////////////////////// Compress a slice
1078    //  Slice compression
1079    if (m_pcCfg->getUseASR())
1080    {
1081      m_pcSliceEncoder->setSearchRange(pcSlice);
1082    }
1083
1084    Bool bGPBcheck=false;
1085    if ( pcSlice->getSliceType() == B_SLICE)
1086    {
1087      if ( pcSlice->getNumRefIdx(RefPicList( 0 ) ) == pcSlice->getNumRefIdx(RefPicList( 1 ) ) )
1088      {
1089        bGPBcheck=true;
1090        Int i;
1091        for ( i=0; i < pcSlice->getNumRefIdx(RefPicList( 1 ) ); i++ )
1092        {
1093          if ( pcSlice->getRefPOC(RefPicList(1), i) != pcSlice->getRefPOC(RefPicList(0), i) ) 
1094          {
1095            bGPBcheck=false;
1096            break;
1097          }
1098        }
1099      }
1100    }
1101    if(bGPBcheck)
1102    {
1103      pcSlice->setMvdL1ZeroFlag(true);
1104    }
1105    else
1106    {
1107      pcSlice->setMvdL1ZeroFlag(false);
1108    }
1109    pcPic->getSlice(pcSlice->getSliceIdx())->setMvdL1ZeroFlag(pcSlice->getMvdL1ZeroFlag());
1110
1111    Double lambda            = 0.0;
1112    Int actualHeadBits       = 0;
1113    Int actualTotalBits      = 0;
1114    Int estimatedBits        = 0;
1115    Int tmpBitsBeforeWriting = 0;
1116    if ( m_pcCfg->getUseRateCtrl() )
1117    {
1118      Int frameLevel = m_pcRateCtrl->getRCSeq()->getGOPID2Level( iGOPid );
1119      if ( pcPic->getSlice(0)->getSliceType() == I_SLICE )
1120      {
1121        frameLevel = 0;
1122      }
1123      m_pcRateCtrl->initRCPic( frameLevel );
1124
1125#if KWU_RC_MADPRED_E0227
1126      if(m_pcCfg->getLayerId() != 0)
1127      {
1128        m_pcRateCtrl->getRCPic()->setIVPic( m_pcEncTop->getEncTop()->getTEncTop(0)->getRateCtrl()->getRCPic() );
1129      }
1130#endif
1131
1132      estimatedBits = m_pcRateCtrl->getRCPic()->getTargetBits();
1133
1134      Int sliceQP = m_pcCfg->getInitialQP();
1135      if ( ( pcSlice->getPOC() == 0 && m_pcCfg->getInitialQP() > 0 ) || ( frameLevel == 0 && m_pcCfg->getForceIntraQP() ) ) // QP is specified
1136      {
1137        Int    NumberBFrames = ( m_pcCfg->getGOPSize() - 1 );
1138        Double dLambda_scale = 1.0 - Clip3( 0.0, 0.5, 0.05*(Double)NumberBFrames );
1139        Double dQPFactor     = 0.57*dLambda_scale;
1140        Int    SHIFT_QP      = 12;
1141        Int    bitdepth_luma_qp_scale = 0;
1142        Double qp_temp = (Double) sliceQP + bitdepth_luma_qp_scale - SHIFT_QP;
1143        lambda = dQPFactor*pow( 2.0, qp_temp/3.0 );
1144      }
1145      else if ( frameLevel == 0 )   // intra case, but use the model
1146      {
1147        m_pcSliceEncoder->calCostSliceI(pcPic);
1148        if ( m_pcCfg->getIntraPeriod() != 1 )   // do not refine allocated bits for all intra case
1149        {
1150          Int bits = m_pcRateCtrl->getRCSeq()->getLeftAverageBits();
1151          bits = m_pcRateCtrl->getRCPic()->getRefineBitsForIntra( bits );
1152          if ( bits < 200 )
1153          {
1154            bits = 200;
1155          }
1156          m_pcRateCtrl->getRCPic()->setTargetBits( bits );
1157        }
1158
1159        list<TEncRCPic*> listPreviousPicture = m_pcRateCtrl->getPicList();
1160        m_pcRateCtrl->getRCPic()->getLCUInitTargetBits();
1161        lambda  = m_pcRateCtrl->getRCPic()->estimatePicLambda( listPreviousPicture, pcSlice->getSliceType());
1162        sliceQP = m_pcRateCtrl->getRCPic()->estimatePicQP( lambda, listPreviousPicture );
1163      }
1164      else    // normal case
1165      {
1166#if KWU_RC_MADPRED_E0227
1167        if(m_pcRateCtrl->getLayerID() != 0)
1168        {
1169          list<TEncRCPic*> listPreviousPicture = m_pcRateCtrl->getPicList();
1170          lambda  = m_pcRateCtrl->getRCPic()->estimatePicLambdaIV( listPreviousPicture, pcSlice->getPOC() );
1171          sliceQP = m_pcRateCtrl->getRCPic()->estimatePicQP( lambda, listPreviousPicture );
1172        }
1173        else
1174        {
1175#endif
1176        list<TEncRCPic*> listPreviousPicture = m_pcRateCtrl->getPicList();
1177        lambda  = m_pcRateCtrl->getRCPic()->estimatePicLambda( listPreviousPicture, pcSlice->getSliceType());
1178        sliceQP = m_pcRateCtrl->getRCPic()->estimatePicQP( lambda, listPreviousPicture );
1179#if KWU_RC_MADPRED_E0227
1180        }
1181#endif
1182      }
1183
1184      sliceQP = Clip3( -pcSlice->getSPS()->getQpBDOffsetY(), MAX_QP, sliceQP );
1185      m_pcRateCtrl->getRCPic()->setPicEstQP( sliceQP );
1186
1187      m_pcSliceEncoder->resetQP( pcPic, sliceQP, lambda );
1188    }
1189
1190    UInt uiNumSlices = 1;
1191
1192    UInt uiInternalAddress = pcPic->getNumPartInCU()-4;
1193    UInt uiExternalAddress = pcPic->getPicSym()->getNumberOfCUsInFrame()-1;
1194    UInt uiPosX = ( uiExternalAddress % pcPic->getFrameWidthInCU() ) * g_uiMaxCUWidth+ g_auiRasterToPelX[ g_auiZscanToRaster[uiInternalAddress] ];
1195    UInt uiPosY = ( uiExternalAddress / pcPic->getFrameWidthInCU() ) * g_uiMaxCUHeight+ g_auiRasterToPelY[ g_auiZscanToRaster[uiInternalAddress] ];
1196    UInt uiWidth = pcSlice->getSPS()->getPicWidthInLumaSamples();
1197    UInt uiHeight = pcSlice->getSPS()->getPicHeightInLumaSamples();
1198    while(uiPosX>=uiWidth||uiPosY>=uiHeight) 
1199    {
1200      uiInternalAddress--;
1201      uiPosX = ( uiExternalAddress % pcPic->getFrameWidthInCU() ) * g_uiMaxCUWidth+ g_auiRasterToPelX[ g_auiZscanToRaster[uiInternalAddress] ];
1202      uiPosY = ( uiExternalAddress / pcPic->getFrameWidthInCU() ) * g_uiMaxCUHeight+ g_auiRasterToPelY[ g_auiZscanToRaster[uiInternalAddress] ];
1203    }
1204    uiInternalAddress++;
1205    if(uiInternalAddress==pcPic->getNumPartInCU()) 
1206    {
1207      uiInternalAddress = 0;
1208      uiExternalAddress++;
1209    }
1210    UInt uiRealEndAddress = uiExternalAddress*pcPic->getNumPartInCU()+uiInternalAddress;
1211
1212    UInt uiCummulativeTileWidth;
1213    UInt uiCummulativeTileHeight;
1214    Int  p, j;
1215    UInt uiEncCUAddr;
1216
1217    //set NumColumnsMinus1 and NumRowsMinus1
1218    pcPic->getPicSym()->setNumColumnsMinus1( pcSlice->getPPS()->getNumColumnsMinus1() );
1219    pcPic->getPicSym()->setNumRowsMinus1( pcSlice->getPPS()->getNumRowsMinus1() );
1220
1221    //create the TComTileArray
1222    pcPic->getPicSym()->xCreateTComTileArray();
1223
1224    if( pcSlice->getPPS()->getUniformSpacingFlag() == 1 )
1225    {
1226      //set the width for each tile
1227      for(j=0; j < pcPic->getPicSym()->getNumRowsMinus1()+1; j++)
1228      {
1229        for(p=0; p < pcPic->getPicSym()->getNumColumnsMinus1()+1; p++)
1230        {
1231          pcPic->getPicSym()->getTComTile( j * (pcPic->getPicSym()->getNumColumnsMinus1()+1) + p )->
1232            setTileWidth( (p+1)*pcPic->getPicSym()->getFrameWidthInCU()/(pcPic->getPicSym()->getNumColumnsMinus1()+1) 
1233            - (p*pcPic->getPicSym()->getFrameWidthInCU())/(pcPic->getPicSym()->getNumColumnsMinus1()+1) );
1234        }
1235      }
1236
1237      //set the height for each tile
1238      for(j=0; j < pcPic->getPicSym()->getNumColumnsMinus1()+1; j++)
1239      {
1240        for(p=0; p < pcPic->getPicSym()->getNumRowsMinus1()+1; p++)
1241        {
1242          pcPic->getPicSym()->getTComTile( p * (pcPic->getPicSym()->getNumColumnsMinus1()+1) + j )->
1243            setTileHeight( (p+1)*pcPic->getPicSym()->getFrameHeightInCU()/(pcPic->getPicSym()->getNumRowsMinus1()+1) 
1244            - (p*pcPic->getPicSym()->getFrameHeightInCU())/(pcPic->getPicSym()->getNumRowsMinus1()+1) );   
1245        }
1246      }
1247    }
1248    else
1249    {
1250      //set the width for each tile
1251      for(j=0; j < pcPic->getPicSym()->getNumRowsMinus1()+1; j++)
1252      {
1253        uiCummulativeTileWidth = 0;
1254        for(p=0; p < pcPic->getPicSym()->getNumColumnsMinus1(); p++)
1255        {
1256          pcPic->getPicSym()->getTComTile( j * (pcPic->getPicSym()->getNumColumnsMinus1()+1) + p )->setTileWidth( pcSlice->getPPS()->getColumnWidth(p) );
1257          uiCummulativeTileWidth += pcSlice->getPPS()->getColumnWidth(p);
1258        }
1259        pcPic->getPicSym()->getTComTile(j * (pcPic->getPicSym()->getNumColumnsMinus1()+1) + p)->setTileWidth( pcPic->getPicSym()->getFrameWidthInCU()-uiCummulativeTileWidth );
1260      }
1261
1262      //set the height for each tile
1263      for(j=0; j < pcPic->getPicSym()->getNumColumnsMinus1()+1; j++)
1264      {
1265        uiCummulativeTileHeight = 0;
1266        for(p=0; p < pcPic->getPicSym()->getNumRowsMinus1(); p++)
1267        {
1268          pcPic->getPicSym()->getTComTile( p * (pcPic->getPicSym()->getNumColumnsMinus1()+1) + j )->setTileHeight( pcSlice->getPPS()->getRowHeight(p) );
1269          uiCummulativeTileHeight += pcSlice->getPPS()->getRowHeight(p);
1270        }
1271        pcPic->getPicSym()->getTComTile(p * (pcPic->getPicSym()->getNumColumnsMinus1()+1) + j)->setTileHeight( pcPic->getPicSym()->getFrameHeightInCU()-uiCummulativeTileHeight );
1272      }
1273    }
1274    //intialize each tile of the current picture
1275    pcPic->getPicSym()->xInitTiles();
1276
1277    // Allocate some coders, now we know how many tiles there are.
1278    Int iNumSubstreams = pcSlice->getPPS()->getNumSubstreams();
1279
1280    //generate the Coding Order Map and Inverse Coding Order Map
1281    for(p=0, uiEncCUAddr=0; p<pcPic->getPicSym()->getNumberOfCUsInFrame(); p++, uiEncCUAddr = pcPic->getPicSym()->xCalculateNxtCUAddr(uiEncCUAddr))
1282    {
1283      pcPic->getPicSym()->setCUOrderMap(p, uiEncCUAddr);
1284      pcPic->getPicSym()->setInverseCUOrderMap(uiEncCUAddr, p);
1285    }
1286    pcPic->getPicSym()->setCUOrderMap(pcPic->getPicSym()->getNumberOfCUsInFrame(), pcPic->getPicSym()->getNumberOfCUsInFrame());   
1287    pcPic->getPicSym()->setInverseCUOrderMap(pcPic->getPicSym()->getNumberOfCUsInFrame(), pcPic->getPicSym()->getNumberOfCUsInFrame());
1288
1289    // Allocate some coders, now we know how many tiles there are.
1290    m_pcEncTop->createWPPCoders(iNumSubstreams);
1291    pcSbacCoders = m_pcEncTop->getSbacCoders();
1292    pcSubstreamsOut = new TComOutputBitstream[iNumSubstreams];
1293
1294    UInt startCUAddrSliceIdx = 0; // used to index "m_uiStoredStartCUAddrForEncodingSlice" containing locations of slice boundaries
1295    UInt startCUAddrSlice    = 0; // used to keep track of current slice's starting CU addr.
1296    pcSlice->setSliceCurStartCUAddr( startCUAddrSlice ); // Setting "start CU addr" for current slice
1297    m_storedStartCUAddrForEncodingSlice.clear();
1298
1299    UInt startCUAddrSliceSegmentIdx = 0; // used to index "m_uiStoredStartCUAddrForEntropyEncodingSlice" containing locations of slice boundaries
1300    UInt startCUAddrSliceSegment    = 0; // used to keep track of current Dependent slice's starting CU addr.
1301    pcSlice->setSliceSegmentCurStartCUAddr( startCUAddrSliceSegment ); // Setting "start CU addr" for current Dependent slice
1302
1303    m_storedStartCUAddrForEncodingSliceSegment.clear();
1304    UInt nextCUAddr = 0;
1305    m_storedStartCUAddrForEncodingSlice.push_back (nextCUAddr);
1306    startCUAddrSliceIdx++;
1307    m_storedStartCUAddrForEncodingSliceSegment.push_back(nextCUAddr);
1308    startCUAddrSliceSegmentIdx++;
1309#if H_3D_NBDV
1310      if(pcSlice->getViewIndex() && !pcSlice->getIsDepth()) //Notes from QC: this condition shall be changed once the configuration is completed, e.g. in pcSlice->getSPS()->getMultiviewMvPredMode() || ARP in prev. HTM. Remove this comment once it is done.
1311      {
1312        Int iColPoc = pcSlice->getRefPOC(RefPicList(1-pcSlice->getColFromL0Flag()), pcSlice->getColRefIdx());
1313        pcPic->setNumDdvCandPics(pcPic->getDisCandRefPictures(iColPoc));
1314      }
1315#endif
1316#if H_3D
1317      pcSlice->setDepthToDisparityLUTs(); 
1318
1319#endif
1320
1321#if H_3D_NBDV
1322      if(pcSlice->getViewIndex() && !pcSlice->getIsDepth() && !pcSlice->isIntra()) //Notes from QC: this condition shall be changed once the configuration is completed, e.g. in pcSlice->getSPS()->getMultiviewMvPredMode() || ARP in prev. HTM. Remove this comment once it is done.
1323      {
1324        pcPic->checkTemporalIVRef();
1325      }
1326
1327      if(pcSlice->getIsDepth())
1328      {
1329        pcPic->checkTextureRef();
1330      }
1331#endif
1332    while(nextCUAddr<uiRealEndAddress) // determine slice boundaries
1333    {
1334      pcSlice->setNextSlice       ( false );
1335      pcSlice->setNextSliceSegment( false );
1336      assert(pcPic->getNumAllocatedSlice() == startCUAddrSliceIdx);
1337      m_pcSliceEncoder->precompressSlice( pcPic );
1338      m_pcSliceEncoder->compressSlice   ( pcPic );
1339
1340      Bool bNoBinBitConstraintViolated = (!pcSlice->isNextSlice() && !pcSlice->isNextSliceSegment());
1341      if (pcSlice->isNextSlice() || (bNoBinBitConstraintViolated && m_pcCfg->getSliceMode()==FIXED_NUMBER_OF_LCU))
1342      {
1343        startCUAddrSlice = pcSlice->getSliceCurEndCUAddr();
1344        // Reconstruction slice
1345        m_storedStartCUAddrForEncodingSlice.push_back(startCUAddrSlice);
1346        startCUAddrSliceIdx++;
1347        // Dependent slice
1348        if (startCUAddrSliceSegmentIdx>0 && m_storedStartCUAddrForEncodingSliceSegment[startCUAddrSliceSegmentIdx-1] != startCUAddrSlice)
1349        {
1350          m_storedStartCUAddrForEncodingSliceSegment.push_back(startCUAddrSlice);
1351          startCUAddrSliceSegmentIdx++;
1352        }
1353
1354        if (startCUAddrSlice < uiRealEndAddress)
1355        {
1356          pcPic->allocateNewSlice();         
1357          pcPic->setCurrSliceIdx                  ( startCUAddrSliceIdx-1 );
1358          m_pcSliceEncoder->setSliceIdx           ( startCUAddrSliceIdx-1 );
1359          pcSlice = pcPic->getSlice               ( startCUAddrSliceIdx-1 );
1360          pcSlice->copySliceInfo                  ( pcPic->getSlice(0)      );
1361          pcSlice->setSliceIdx                    ( startCUAddrSliceIdx-1 );
1362          pcSlice->setSliceCurStartCUAddr         ( startCUAddrSlice      );
1363          pcSlice->setSliceSegmentCurStartCUAddr  ( startCUAddrSlice      );
1364          pcSlice->setSliceBits(0);
1365          uiNumSlices ++;
1366        }
1367      }
1368      else if (pcSlice->isNextSliceSegment() || (bNoBinBitConstraintViolated && m_pcCfg->getSliceSegmentMode()==FIXED_NUMBER_OF_LCU))
1369      {
1370        startCUAddrSliceSegment                                                     = pcSlice->getSliceSegmentCurEndCUAddr();
1371        m_storedStartCUAddrForEncodingSliceSegment.push_back(startCUAddrSliceSegment);
1372        startCUAddrSliceSegmentIdx++;
1373        pcSlice->setSliceSegmentCurStartCUAddr( startCUAddrSliceSegment );
1374      }
1375      else
1376      {
1377        startCUAddrSlice                                                            = pcSlice->getSliceCurEndCUAddr();
1378        startCUAddrSliceSegment                                                     = pcSlice->getSliceSegmentCurEndCUAddr();
1379      }       
1380
1381      nextCUAddr = (startCUAddrSlice > startCUAddrSliceSegment) ? startCUAddrSlice : startCUAddrSliceSegment;
1382    }
1383    m_storedStartCUAddrForEncodingSlice.push_back( pcSlice->getSliceCurEndCUAddr());
1384    startCUAddrSliceIdx++;
1385    m_storedStartCUAddrForEncodingSliceSegment.push_back(pcSlice->getSliceCurEndCUAddr());
1386    startCUAddrSliceSegmentIdx++;
1387
1388    pcSlice = pcPic->getSlice(0);
1389
1390    // SAO parameter estimation using non-deblocked pixels for LCU bottom and right boundary areas
1391    if( pcSlice->getSPS()->getUseSAO() && m_pcCfg->getSaoLcuBoundary() )
1392    {
1393      m_pcSAO->getPreDBFStatistics(pcPic);
1394    }
1395
1396    //-- Loop filter
1397    Bool bLFCrossTileBoundary = pcSlice->getPPS()->getLoopFilterAcrossTilesEnabledFlag();
1398    m_pcLoopFilter->setCfg(bLFCrossTileBoundary);
1399    if ( m_pcCfg->getDeblockingFilterMetric() )
1400    {
1401      dblMetric(pcPic, uiNumSlices);
1402    }
1403    m_pcLoopFilter->loopFilterPic( pcPic );
1404
1405    /////////////////////////////////////////////////////////////////////////////////////////////////// File writing
1406    // Set entropy coder
1407    m_pcEntropyCoder->setEntropyCoder   ( m_pcCavlcCoder, pcSlice );
1408
1409    /* write various header sets. */
1410    if ( m_bSeqFirst )
1411    {
1412      OutputNALUnit nalu(NAL_UNIT_VPS);
1413#if H_MV
1414      if( getLayerId() == 0 )
1415      {
1416#endif
1417      m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
1418      m_pcEntropyCoder->encodeVPS(m_pcEncTop->getVPS());
1419      writeRBSPTrailingBits(nalu.m_Bitstream);
1420      accessUnit.push_back(new NALUnitEBSP(nalu));
1421      actualTotalBits += UInt(accessUnit.back()->m_nalUnitData.str().size()) * 8;
1422
1423#if H_MV
1424      }
1425      nalu = NALUnit(NAL_UNIT_SPS, 0, getLayerId());
1426#else
1427      nalu = NALUnit(NAL_UNIT_SPS);
1428#endif
1429      m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
1430      if (m_bSeqFirst)
1431      {
1432        pcSlice->getSPS()->setNumLongTermRefPicSPS(m_numLongTermRefPicSPS);
1433        for (Int k = 0; k < m_numLongTermRefPicSPS; k++)
1434        {
1435          pcSlice->getSPS()->setLtRefPicPocLsbSps(k, m_ltRefPicPocLsbSps[k]);
1436          pcSlice->getSPS()->setUsedByCurrPicLtSPSFlag(k, m_ltRefPicUsedByCurrPicFlag[k]);
1437        }
1438      }
1439      if( m_pcCfg->getPictureTimingSEIEnabled() || m_pcCfg->getDecodingUnitInfoSEIEnabled() )
1440      {
1441        UInt maxCU = m_pcCfg->getSliceArgument() >> ( pcSlice->getSPS()->getMaxCUDepth() << 1);
1442        UInt numDU = ( m_pcCfg->getSliceMode() == 1 ) ? ( pcPic->getNumCUsInFrame() / maxCU ) : ( 0 );
1443        if( pcPic->getNumCUsInFrame() % maxCU != 0 || numDU == 0 )
1444        {
1445          numDU ++;
1446        }
1447        pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->setNumDU( numDU );
1448        pcSlice->getSPS()->setHrdParameters( m_pcCfg->getFrameRate(), numDU, m_pcCfg->getTargetBitrate(), ( m_pcCfg->getIntraPeriod() > 0 ) );
1449      }
1450      if( m_pcCfg->getBufferingPeriodSEIEnabled() || m_pcCfg->getPictureTimingSEIEnabled() || m_pcCfg->getDecodingUnitInfoSEIEnabled() )
1451      {
1452        pcSlice->getSPS()->getVuiParameters()->setHrdParametersPresentFlag( true );
1453      }
1454#if !H_3D
1455      m_pcEntropyCoder->encodeSPS(pcSlice->getSPS());
1456#else
1457      m_pcEntropyCoder->encodeSPS(pcSlice->getSPS(), pcSlice->getViewIndex(), pcSlice->getIsDepth() );
1458#endif
1459      writeRBSPTrailingBits(nalu.m_Bitstream);
1460      accessUnit.push_back(new NALUnitEBSP(nalu));
1461      actualTotalBits += UInt(accessUnit.back()->m_nalUnitData.str().size()) * 8;
1462
1463#if H_MV
1464      nalu = NALUnit(NAL_UNIT_PPS, 0, getLayerId());
1465#else
1466      nalu = NALUnit(NAL_UNIT_PPS);
1467#endif
1468#if PPS_FIX_DEPTH
1469      if(!pcSlice->getIsDepth() || !pcSlice->getViewIndex() )
1470      {
1471#endif
1472      m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
1473      m_pcEntropyCoder->encodePPS(pcSlice->getPPS());
1474      writeRBSPTrailingBits(nalu.m_Bitstream);
1475      accessUnit.push_back(new NALUnitEBSP(nalu));
1476      actualTotalBits += UInt(accessUnit.back()->m_nalUnitData.str().size()) * 8;
1477     
1478#if PPS_FIX_DEPTH
1479      }
1480#endif
1481      xCreateLeadingSEIMessages(accessUnit, pcSlice->getSPS());
1482
1483      m_bSeqFirst = false;
1484    }
1485
1486    if (writeSOP) // write SOP description SEI (if enabled) at the beginning of GOP
1487    {
1488      Int SOPcurrPOC = pocCurr;
1489
1490      OutputNALUnit nalu(NAL_UNIT_PREFIX_SEI);
1491      m_pcEntropyCoder->setEntropyCoder(m_pcCavlcCoder, pcSlice);
1492      m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
1493
1494      SEISOPDescription SOPDescriptionSEI;
1495      SOPDescriptionSEI.m_sopSeqParameterSetId = pcSlice->getSPS()->getSPSId();
1496
1497      UInt i = 0;
1498      UInt prevEntryId = iGOPid;
1499      for (j = iGOPid; j < m_iGopSize; j++)
1500      {
1501        Int deltaPOC = m_pcCfg->getGOPEntry(j).m_POC - m_pcCfg->getGOPEntry(prevEntryId).m_POC;
1502        if ((SOPcurrPOC + deltaPOC) < m_pcCfg->getFramesToBeEncoded())
1503        {
1504          SOPcurrPOC += deltaPOC;
1505          SOPDescriptionSEI.m_sopDescVclNaluType[i] = getNalUnitType(SOPcurrPOC, m_iLastIDR, isField);
1506          SOPDescriptionSEI.m_sopDescTemporalId[i] = m_pcCfg->getGOPEntry(j).m_temporalId;
1507          SOPDescriptionSEI.m_sopDescStRpsIdx[i] = m_pcEncTop->getReferencePictureSetIdxForSOP(pcSlice, SOPcurrPOC, j);
1508          SOPDescriptionSEI.m_sopDescPocDelta[i] = deltaPOC;
1509
1510          prevEntryId = j;
1511          i++;
1512        }
1513      }
1514
1515      SOPDescriptionSEI.m_numPicsInSopMinus1 = i - 1;
1516
1517      m_seiWriter.writeSEImessage( nalu.m_Bitstream, SOPDescriptionSEI, pcSlice->getSPS());
1518      writeRBSPTrailingBits(nalu.m_Bitstream);
1519      accessUnit.push_back(new NALUnitEBSP(nalu));
1520
1521      writeSOP = false;
1522    }
1523
1524    if( ( m_pcCfg->getPictureTimingSEIEnabled() || m_pcCfg->getDecodingUnitInfoSEIEnabled() ) &&
1525        ( pcSlice->getSPS()->getVuiParametersPresentFlag() ) &&
1526        ( ( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getNalHrdParametersPresentFlag() ) 
1527       || ( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getVclHrdParametersPresentFlag() ) ) )
1528    {
1529      if( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getSubPicCpbParamsPresentFlag() )
1530      {
1531        UInt numDU = pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getNumDU();
1532        pictureTimingSEI.m_numDecodingUnitsMinus1     = ( numDU - 1 );
1533        pictureTimingSEI.m_duCommonCpbRemovalDelayFlag = false;
1534
1535        if( pictureTimingSEI.m_numNalusInDuMinus1 == NULL )
1536        {
1537          pictureTimingSEI.m_numNalusInDuMinus1       = new UInt[ numDU ];
1538        }
1539        if( pictureTimingSEI.m_duCpbRemovalDelayMinus1  == NULL )
1540        {
1541          pictureTimingSEI.m_duCpbRemovalDelayMinus1  = new UInt[ numDU ];
1542        }
1543        if( accumBitsDU == NULL )
1544        {
1545          accumBitsDU                                  = new UInt[ numDU ];
1546        }
1547        if( accumNalsDU == NULL )
1548        {
1549          accumNalsDU                                  = new UInt[ numDU ];
1550        }
1551      }
1552      pictureTimingSEI.m_auCpbRemovalDelay = std::min<Int>(std::max<Int>(1, m_totalCoded - m_lastBPSEI), static_cast<Int>(pow(2, static_cast<double>(pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getCpbRemovalDelayLengthMinus1()+1)))); // Syntax element signalled as minus, hence the .
1553      pictureTimingSEI.m_picDpbOutputDelay = pcSlice->getSPS()->getNumReorderPics(pcSlice->getSPS()->getMaxTLayers()-1) + pcSlice->getPOC() - m_totalCoded;
1554#if EFFICIENT_FIELD_IRAP
1555      if(IRAPGOPid > 0 && IRAPGOPid < m_iGopSize)
1556      {
1557        // if pictures have been swapped there is likely one more picture delay on their tid. Very rough approximation
1558        pictureTimingSEI.m_picDpbOutputDelay ++;
1559      }
1560#endif
1561      Int factor = pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getTickDivisorMinus2() + 2;
1562      pictureTimingSEI.m_picDpbOutputDuDelay = factor * pictureTimingSEI.m_picDpbOutputDelay;
1563      if( m_pcCfg->getDecodingUnitInfoSEIEnabled() )
1564      {
1565        picSptDpbOutputDuDelay = factor * pictureTimingSEI.m_picDpbOutputDelay;
1566      }
1567    }
1568
1569    if( ( m_pcCfg->getBufferingPeriodSEIEnabled() ) && ( pcSlice->getSliceType() == I_SLICE ) &&
1570        ( pcSlice->getSPS()->getVuiParametersPresentFlag() ) && 
1571        ( ( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getNalHrdParametersPresentFlag() ) 
1572       || ( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getVclHrdParametersPresentFlag() ) ) )
1573    {
1574      OutputNALUnit nalu(NAL_UNIT_PREFIX_SEI);
1575      m_pcEntropyCoder->setEntropyCoder(m_pcCavlcCoder, pcSlice);
1576      m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
1577
1578      SEIBufferingPeriod sei_buffering_period;
1579     
1580      UInt uiInitialCpbRemovalDelay = (90000/2);                      // 0.5 sec
1581      sei_buffering_period.m_initialCpbRemovalDelay      [0][0]     = uiInitialCpbRemovalDelay;
1582      sei_buffering_period.m_initialCpbRemovalDelayOffset[0][0]     = uiInitialCpbRemovalDelay;
1583      sei_buffering_period.m_initialCpbRemovalDelay      [0][1]     = uiInitialCpbRemovalDelay;
1584      sei_buffering_period.m_initialCpbRemovalDelayOffset[0][1]     = uiInitialCpbRemovalDelay;
1585
1586      Double dTmp = (Double)pcSlice->getSPS()->getVuiParameters()->getTimingInfo()->getNumUnitsInTick() / (Double)pcSlice->getSPS()->getVuiParameters()->getTimingInfo()->getTimeScale();
1587
1588      UInt uiTmp = (UInt)( dTmp * 90000.0 ); 
1589      uiInitialCpbRemovalDelay -= uiTmp;
1590      uiInitialCpbRemovalDelay -= uiTmp / ( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getTickDivisorMinus2() + 2 );
1591      sei_buffering_period.m_initialAltCpbRemovalDelay      [0][0]  = uiInitialCpbRemovalDelay;
1592      sei_buffering_period.m_initialAltCpbRemovalDelayOffset[0][0]  = uiInitialCpbRemovalDelay;
1593      sei_buffering_period.m_initialAltCpbRemovalDelay      [0][1]  = uiInitialCpbRemovalDelay;
1594      sei_buffering_period.m_initialAltCpbRemovalDelayOffset[0][1]  = uiInitialCpbRemovalDelay;
1595
1596      sei_buffering_period.m_rapCpbParamsPresentFlag              = 0;
1597      //for the concatenation, it can be set to one during splicing.
1598      sei_buffering_period.m_concatenationFlag = 0;
1599      //since the temporal layer HRD is not ready, we assumed it is fixed
1600      sei_buffering_period.m_auCpbRemovalDelayDelta = 1;
1601      sei_buffering_period.m_cpbDelayOffset = 0;
1602      sei_buffering_period.m_dpbDelayOffset = 0;
1603
1604      m_seiWriter.writeSEImessage( nalu.m_Bitstream, sei_buffering_period, pcSlice->getSPS());
1605      writeRBSPTrailingBits(nalu.m_Bitstream);
1606      {
1607      UInt seiPositionInAu = xGetFirstSeiLocation(accessUnit);
1608      UInt offsetPosition = m_activeParameterSetSEIPresentInAU;   // Insert BP SEI after APS SEI
1609      AccessUnit::iterator it;
1610      for(j = 0, it = accessUnit.begin(); j < seiPositionInAu + offsetPosition; j++)
1611      {
1612        it++;
1613      }
1614      accessUnit.insert(it, new NALUnitEBSP(nalu));
1615      m_bufferingPeriodSEIPresentInAU = true;
1616      }
1617
1618      if (m_pcCfg->getScalableNestingSEIEnabled())
1619      {
1620        OutputNALUnit naluTmp(NAL_UNIT_PREFIX_SEI);
1621        m_pcEntropyCoder->setEntropyCoder(m_pcCavlcCoder, pcSlice);
1622        m_pcEntropyCoder->setBitstream(&naluTmp.m_Bitstream);
1623        scalableNestingSEI.m_nestedSEIs.clear();
1624        scalableNestingSEI.m_nestedSEIs.push_back(&sei_buffering_period);
1625        m_seiWriter.writeSEImessage( naluTmp.m_Bitstream, scalableNestingSEI, pcSlice->getSPS());
1626        writeRBSPTrailingBits(naluTmp.m_Bitstream);
1627        UInt seiPositionInAu = xGetFirstSeiLocation(accessUnit);
1628        UInt offsetPosition = m_activeParameterSetSEIPresentInAU + m_bufferingPeriodSEIPresentInAU + m_pictureTimingSEIPresentInAU;   // Insert BP SEI after non-nested APS, BP and PT SEIs
1629        AccessUnit::iterator it;
1630        for(j = 0, it = accessUnit.begin(); j < seiPositionInAu + offsetPosition; j++)
1631        {
1632          it++;
1633        }
1634        accessUnit.insert(it, new NALUnitEBSP(naluTmp));
1635        m_nestedBufferingPeriodSEIPresentInAU = true;
1636      }
1637
1638      m_lastBPSEI = m_totalCoded;
1639      m_cpbRemovalDelay = 0;
1640    }
1641    m_cpbRemovalDelay ++;
1642    if( ( m_pcEncTop->getRecoveryPointSEIEnabled() ) && ( pcSlice->getSliceType() == I_SLICE ) )
1643    {
1644      if( m_pcEncTop->getGradualDecodingRefreshInfoEnabled() && !pcSlice->getRapPicFlag() )
1645      {
1646        // Gradual decoding refresh SEI
1647        OutputNALUnit nalu(NAL_UNIT_PREFIX_SEI);
1648        m_pcEntropyCoder->setEntropyCoder(m_pcCavlcCoder, pcSlice);
1649        m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
1650
1651        SEIGradualDecodingRefreshInfo seiGradualDecodingRefreshInfo;
1652        seiGradualDecodingRefreshInfo.m_gdrForegroundFlag = true; // Indicating all "foreground"
1653
1654        m_seiWriter.writeSEImessage( nalu.m_Bitstream, seiGradualDecodingRefreshInfo, pcSlice->getSPS() );
1655        writeRBSPTrailingBits(nalu.m_Bitstream);
1656        accessUnit.push_back(new NALUnitEBSP(nalu));
1657      }
1658    // Recovery point SEI
1659      OutputNALUnit nalu(NAL_UNIT_PREFIX_SEI);
1660      m_pcEntropyCoder->setEntropyCoder(m_pcCavlcCoder, pcSlice);
1661      m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
1662
1663      SEIRecoveryPoint sei_recovery_point;
1664      sei_recovery_point.m_recoveryPocCnt    = 0;
1665      sei_recovery_point.m_exactMatchingFlag = ( pcSlice->getPOC() == 0 ) ? (true) : (false);
1666      sei_recovery_point.m_brokenLinkFlag    = false;
1667#if ALLOW_RECOVERY_POINT_AS_RAP
1668      if(m_pcCfg->getDecodingRefreshType() == 3)
1669      {
1670        m_iLastRecoveryPicPOC = pocCurr;
1671      }
1672#endif
1673
1674      m_seiWriter.writeSEImessage( nalu.m_Bitstream, sei_recovery_point, pcSlice->getSPS() );
1675      writeRBSPTrailingBits(nalu.m_Bitstream);
1676      accessUnit.push_back(new NALUnitEBSP(nalu));
1677    }
1678
1679    /* use the main bitstream buffer for storing the marshalled picture */
1680    m_pcEntropyCoder->setBitstream(NULL);
1681
1682    startCUAddrSliceIdx = 0;
1683    startCUAddrSlice    = 0; 
1684
1685    startCUAddrSliceSegmentIdx = 0;
1686    startCUAddrSliceSegment    = 0; 
1687    nextCUAddr                 = 0;
1688    pcSlice = pcPic->getSlice(startCUAddrSliceIdx);
1689
1690    Int processingState = (pcSlice->getSPS()->getUseSAO())?(EXECUTE_INLOOPFILTER):(ENCODE_SLICE);
1691    Bool skippedSlice=false;
1692    while (nextCUAddr < uiRealEndAddress) // Iterate over all slices
1693    {
1694      switch(processingState)
1695      {
1696      case ENCODE_SLICE:
1697        {
1698          pcSlice->setNextSlice       ( false );
1699          pcSlice->setNextSliceSegment( false );
1700          if (nextCUAddr == m_storedStartCUAddrForEncodingSlice[startCUAddrSliceIdx])
1701          {
1702            pcSlice = pcPic->getSlice(startCUAddrSliceIdx);
1703            if(startCUAddrSliceIdx > 0 && pcSlice->getSliceType()!= I_SLICE)
1704            {
1705              pcSlice->checkColRefIdx(startCUAddrSliceIdx, pcPic);
1706            }
1707            pcPic->setCurrSliceIdx(startCUAddrSliceIdx);
1708            m_pcSliceEncoder->setSliceIdx(startCUAddrSliceIdx);
1709            assert(startCUAddrSliceIdx == pcSlice->getSliceIdx());
1710            // Reconstruction slice
1711            pcSlice->setSliceCurStartCUAddr( nextCUAddr );  // to be used in encodeSlice() + context restriction
1712            pcSlice->setSliceCurEndCUAddr  ( m_storedStartCUAddrForEncodingSlice[startCUAddrSliceIdx+1 ] );
1713            // Dependent slice
1714            pcSlice->setSliceSegmentCurStartCUAddr( nextCUAddr );  // to be used in encodeSlice() + context restriction
1715            pcSlice->setSliceSegmentCurEndCUAddr  ( m_storedStartCUAddrForEncodingSliceSegment[startCUAddrSliceSegmentIdx+1 ] );
1716
1717            pcSlice->setNextSlice       ( true );
1718
1719            startCUAddrSliceIdx++;
1720            startCUAddrSliceSegmentIdx++;
1721          } 
1722          else if (nextCUAddr == m_storedStartCUAddrForEncodingSliceSegment[startCUAddrSliceSegmentIdx])
1723          {
1724            // Dependent slice
1725            pcSlice->setSliceSegmentCurStartCUAddr( nextCUAddr );  // to be used in encodeSlice() + context restriction
1726            pcSlice->setSliceSegmentCurEndCUAddr  ( m_storedStartCUAddrForEncodingSliceSegment[startCUAddrSliceSegmentIdx+1 ] );
1727
1728            pcSlice->setNextSliceSegment( true );
1729
1730            startCUAddrSliceSegmentIdx++;
1731          }
1732
1733          pcSlice->setRPS(pcPic->getSlice(0)->getRPS());
1734          pcSlice->setRPSidx(pcPic->getSlice(0)->getRPSidx());
1735          UInt uiDummyStartCUAddr;
1736          UInt uiDummyBoundingCUAddr;
1737          m_pcSliceEncoder->xDetermineStartAndBoundingCUAddr(uiDummyStartCUAddr,uiDummyBoundingCUAddr,pcPic,true);
1738
1739          uiInternalAddress = pcPic->getPicSym()->getPicSCUAddr(pcSlice->getSliceSegmentCurEndCUAddr()-1) % pcPic->getNumPartInCU();
1740          uiExternalAddress = pcPic->getPicSym()->getPicSCUAddr(pcSlice->getSliceSegmentCurEndCUAddr()-1) / pcPic->getNumPartInCU();
1741          uiPosX = ( uiExternalAddress % pcPic->getFrameWidthInCU() ) * g_uiMaxCUWidth+ g_auiRasterToPelX[ g_auiZscanToRaster[uiInternalAddress] ];
1742          uiPosY = ( uiExternalAddress / pcPic->getFrameWidthInCU() ) * g_uiMaxCUHeight+ g_auiRasterToPelY[ g_auiZscanToRaster[uiInternalAddress] ];
1743          uiWidth = pcSlice->getSPS()->getPicWidthInLumaSamples();
1744          uiHeight = pcSlice->getSPS()->getPicHeightInLumaSamples();
1745          while(uiPosX>=uiWidth||uiPosY>=uiHeight)
1746          {
1747            uiInternalAddress--;
1748            uiPosX = ( uiExternalAddress % pcPic->getFrameWidthInCU() ) * g_uiMaxCUWidth+ g_auiRasterToPelX[ g_auiZscanToRaster[uiInternalAddress] ];
1749            uiPosY = ( uiExternalAddress / pcPic->getFrameWidthInCU() ) * g_uiMaxCUHeight+ g_auiRasterToPelY[ g_auiZscanToRaster[uiInternalAddress] ];
1750          }
1751          uiInternalAddress++;
1752          if(uiInternalAddress==pcPic->getNumPartInCU())
1753          {
1754            uiInternalAddress = 0;
1755            uiExternalAddress = pcPic->getPicSym()->getCUOrderMap(pcPic->getPicSym()->getInverseCUOrderMap(uiExternalAddress)+1);
1756          }
1757          UInt endAddress = pcPic->getPicSym()->getPicSCUEncOrder(uiExternalAddress*pcPic->getNumPartInCU()+uiInternalAddress);
1758          if(endAddress<=pcSlice->getSliceSegmentCurStartCUAddr()) 
1759          {
1760            UInt boundingAddrSlice, boundingAddrSliceSegment;
1761            boundingAddrSlice          = m_storedStartCUAddrForEncodingSlice[startCUAddrSliceIdx];         
1762            boundingAddrSliceSegment = m_storedStartCUAddrForEncodingSliceSegment[startCUAddrSliceSegmentIdx];         
1763            nextCUAddr               = min(boundingAddrSlice, boundingAddrSliceSegment);
1764            if(pcSlice->isNextSlice())
1765            {
1766              skippedSlice=true;
1767            }
1768            continue;
1769          }
1770          if(skippedSlice) 
1771          {
1772            pcSlice->setNextSlice       ( true );
1773            pcSlice->setNextSliceSegment( false );
1774          }
1775          skippedSlice=false;
1776          pcSlice->allocSubstreamSizes( iNumSubstreams );
1777          for ( UInt ui = 0 ; ui < iNumSubstreams; ui++ )
1778          {
1779            pcSubstreamsOut[ui].clear();
1780          }
1781
1782          m_pcEntropyCoder->setEntropyCoder   ( m_pcCavlcCoder, pcSlice );
1783          m_pcEntropyCoder->resetEntropy      ();
1784          /* start slice NALunit */
1785#if H_MV
1786          OutputNALUnit nalu( pcSlice->getNalUnitType(), pcSlice->getTLayer(), getLayerId() );
1787#else
1788          OutputNALUnit nalu( pcSlice->getNalUnitType(), pcSlice->getTLayer() );
1789#endif
1790          Bool sliceSegment = (!pcSlice->isNextSlice());
1791          if (!sliceSegment)
1792          {
1793            uiOneBitstreamPerSliceLength = 0; // start of a new slice
1794          }
1795          m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
1796
1797#if SETTING_NO_OUT_PIC_PRIOR
1798          if (pcSlice->isIRAP())
1799          {
1800            if (pcSlice->getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP && pcSlice->getNalUnitType() <= NAL_UNIT_CODED_SLICE_IDR_N_LP)
1801            {
1802              pcSlice->setNoRaslOutputFlag(true);
1803            }
1804            //the inference for NoOutputPriorPicsFlag
1805            if (!m_bFirst && pcSlice->isIRAP() && pcSlice->getNoRaslOutputFlag())
1806            {
1807              if (pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA)
1808              {
1809                pcSlice->setNoOutputPriorPicsFlag(true);
1810              }
1811            }
1812          }
1813#endif
1814
1815          tmpBitsBeforeWriting = m_pcEntropyCoder->getNumberOfWrittenBits();
1816          m_pcEntropyCoder->encodeSliceHeader(pcSlice);
1817          actualHeadBits += ( m_pcEntropyCoder->getNumberOfWrittenBits() - tmpBitsBeforeWriting );
1818
1819          // is it needed?
1820          {
1821            if (!sliceSegment)
1822            {
1823              pcBitstreamRedirect->writeAlignOne();
1824            }
1825            else
1826            {
1827              // We've not completed our slice header info yet, do the alignment later.
1828            }
1829            m_pcSbacCoder->init( (TEncBinIf*)m_pcBinCABAC );
1830            m_pcEntropyCoder->setEntropyCoder ( m_pcSbacCoder, pcSlice );
1831            m_pcEntropyCoder->resetEntropy    ();
1832            for ( UInt ui = 0 ; ui < pcSlice->getPPS()->getNumSubstreams() ; ui++ )
1833            {
1834              m_pcEntropyCoder->setEntropyCoder ( &pcSbacCoders[ui], pcSlice );
1835              m_pcEntropyCoder->resetEntropy    ();
1836            }
1837          }
1838
1839          if(pcSlice->isNextSlice())
1840          {
1841            // set entropy coder for writing
1842            m_pcSbacCoder->init( (TEncBinIf*)m_pcBinCABAC );
1843            {
1844              for ( UInt ui = 0 ; ui < pcSlice->getPPS()->getNumSubstreams() ; ui++ )
1845              {
1846                m_pcEntropyCoder->setEntropyCoder ( &pcSbacCoders[ui], pcSlice );
1847                m_pcEntropyCoder->resetEntropy    ();
1848              }
1849              pcSbacCoders[0].load(m_pcSbacCoder);
1850              m_pcEntropyCoder->setEntropyCoder ( &pcSbacCoders[0], pcSlice );  //ALF is written in substream #0 with CABAC coder #0 (see ALF param encoding below)
1851            }
1852            m_pcEntropyCoder->resetEntropy    ();
1853            // File writing
1854            if (!sliceSegment)
1855            {
1856              m_pcEntropyCoder->setBitstream(pcBitstreamRedirect);
1857            }
1858            else
1859            {
1860              m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
1861            }
1862            // for now, override the TILES_DECODER setting in order to write substreams.
1863            m_pcEntropyCoder->setBitstream    ( &pcSubstreamsOut[0] );
1864
1865          }
1866          pcSlice->setFinalized(true);
1867
1868          m_pcSbacCoder->load( &pcSbacCoders[0] );
1869
1870          pcSlice->setTileOffstForMultES( uiOneBitstreamPerSliceLength );
1871            pcSlice->setTileLocationCount ( 0 );
1872          m_pcSliceEncoder->encodeSlice(pcPic, pcSubstreamsOut);
1873
1874          {
1875            // Construct the final bitstream by flushing and concatenating substreams.
1876            // The final bitstream is either nalu.m_Bitstream or pcBitstreamRedirect;
1877            UInt* puiSubstreamSizes = pcSlice->getSubstreamSizes();
1878            UInt uiTotalCodedSize = 0; // for padding calcs.
1879            UInt uiNumSubstreamsPerTile = iNumSubstreams;
1880            if (iNumSubstreams > 1)
1881            {
1882              uiNumSubstreamsPerTile /= pcPic->getPicSym()->getNumTiles();
1883            }
1884            for ( UInt ui = 0 ; ui < iNumSubstreams; ui++ )
1885            {
1886              // Flush all substreams -- this includes empty ones.
1887              // Terminating bit and flush.
1888              m_pcEntropyCoder->setEntropyCoder   ( &pcSbacCoders[ui], pcSlice );
1889              m_pcEntropyCoder->setBitstream      (  &pcSubstreamsOut[ui] );
1890              m_pcEntropyCoder->encodeTerminatingBit( 1 );
1891              m_pcEntropyCoder->encodeSliceFinish();
1892
1893              pcSubstreamsOut[ui].writeByteAlignment();   // Byte-alignment in slice_data() at end of sub-stream
1894              // Byte alignment is necessary between tiles when tiles are independent.
1895              uiTotalCodedSize += pcSubstreamsOut[ui].getNumberOfWrittenBits();
1896
1897              Bool bNextSubstreamInNewTile = ((ui+1) < iNumSubstreams)&& ((ui+1)%uiNumSubstreamsPerTile == 0);
1898              if (bNextSubstreamInNewTile)
1899              {
1900                pcSlice->setTileLocation(ui/uiNumSubstreamsPerTile, pcSlice->getTileOffstForMultES()+(uiTotalCodedSize>>3));
1901              }
1902              if (ui+1 < pcSlice->getPPS()->getNumSubstreams())
1903              {
1904                puiSubstreamSizes[ui] = pcSubstreamsOut[ui].getNumberOfWrittenBits() + (pcSubstreamsOut[ui].countStartCodeEmulations()<<3);
1905              }
1906            }
1907
1908            // Complete the slice header info.
1909            m_pcEntropyCoder->setEntropyCoder   ( m_pcCavlcCoder, pcSlice );
1910            m_pcEntropyCoder->setBitstream(&nalu.m_Bitstream);
1911            m_pcEntropyCoder->encodeTilesWPPEntryPoint( pcSlice );
1912
1913            // Substreams...
1914            TComOutputBitstream *pcOut = pcBitstreamRedirect;
1915          Int offs = 0;
1916          Int nss = pcSlice->getPPS()->getNumSubstreams();
1917          if (pcSlice->getPPS()->getEntropyCodingSyncEnabledFlag())
1918          {
1919            // 1st line present for WPP.
1920            offs = pcSlice->getSliceSegmentCurStartCUAddr()/pcSlice->getPic()->getNumPartInCU()/pcSlice->getPic()->getFrameWidthInCU();
1921            nss  = pcSlice->getNumEntryPointOffsets()+1;
1922          }
1923          for ( UInt ui = 0 ; ui < nss; ui++ )
1924          {
1925            pcOut->addSubstream(&pcSubstreamsOut[ui+offs]);
1926            }
1927          }
1928
1929          UInt boundingAddrSlice, boundingAddrSliceSegment;
1930          boundingAddrSlice        = m_storedStartCUAddrForEncodingSlice[startCUAddrSliceIdx];         
1931          boundingAddrSliceSegment = m_storedStartCUAddrForEncodingSliceSegment[startCUAddrSliceSegmentIdx];         
1932          nextCUAddr               = min(boundingAddrSlice, boundingAddrSliceSegment);
1933          // If current NALU is the first NALU of slice (containing slice header) and more NALUs exist (due to multiple dependent slices) then buffer it.
1934          // If current NALU is the last NALU of slice and a NALU was buffered, then (a) Write current NALU (b) Update an write buffered NALU at approproate location in NALU list.
1935          Bool bNALUAlignedWrittenToList    = false; // used to ensure current NALU is not written more than once to the NALU list.
1936          xAttachSliceDataToNalUnit(nalu, pcBitstreamRedirect);
1937          accessUnit.push_back(new NALUnitEBSP(nalu));
1938          actualTotalBits += UInt(accessUnit.back()->m_nalUnitData.str().size()) * 8;
1939          bNALUAlignedWrittenToList = true; 
1940          uiOneBitstreamPerSliceLength += nalu.m_Bitstream.getNumberOfWrittenBits(); // length of bitstream after byte-alignment
1941
1942          if (!bNALUAlignedWrittenToList)
1943          {
1944            {
1945              nalu.m_Bitstream.writeAlignZero();
1946            }
1947            accessUnit.push_back(new NALUnitEBSP(nalu));
1948            uiOneBitstreamPerSliceLength += nalu.m_Bitstream.getNumberOfWrittenBits() + 24; // length of bitstream after byte-alignment + 3 byte startcode 0x000001
1949          }
1950
1951          if( ( m_pcCfg->getPictureTimingSEIEnabled() || m_pcCfg->getDecodingUnitInfoSEIEnabled() ) &&
1952              ( pcSlice->getSPS()->getVuiParametersPresentFlag() ) &&
1953              ( ( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getNalHrdParametersPresentFlag() ) 
1954             || ( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getVclHrdParametersPresentFlag() ) ) &&
1955              ( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getSubPicCpbParamsPresentFlag() ) )
1956          {
1957              UInt numNalus = 0;
1958            UInt numRBSPBytes = 0;
1959            for (AccessUnit::const_iterator it = accessUnit.begin(); it != accessUnit.end(); it++)
1960            {
1961              UInt numRBSPBytes_nal = UInt((*it)->m_nalUnitData.str().size());
1962              if ((*it)->m_nalUnitType != NAL_UNIT_PREFIX_SEI && (*it)->m_nalUnitType != NAL_UNIT_SUFFIX_SEI)
1963              {
1964                numRBSPBytes += numRBSPBytes_nal;
1965                numNalus ++;
1966              }
1967            }
1968            accumBitsDU[ pcSlice->getSliceIdx() ] = ( numRBSPBytes << 3 );
1969            accumNalsDU[ pcSlice->getSliceIdx() ] = numNalus;   // SEI not counted for bit count; hence shouldn't be counted for # of NALUs - only for consistency
1970          }
1971          processingState = ENCODE_SLICE;
1972          }
1973          break;
1974        case EXECUTE_INLOOPFILTER:
1975          {
1976            // set entropy coder for RD
1977            m_pcEntropyCoder->setEntropyCoder ( m_pcSbacCoder, pcSlice );
1978            if ( pcSlice->getSPS()->getUseSAO() )
1979            {
1980              m_pcEntropyCoder->resetEntropy();
1981              m_pcEntropyCoder->setBitstream( m_pcBitCounter );
1982            Bool sliceEnabled[NUM_SAO_COMPONENTS];
1983            m_pcSAO->initRDOCabacCoder(m_pcEncTop->getRDGoOnSbacCoder(), pcSlice);
1984            m_pcSAO->SAOProcess(pcPic
1985              , sliceEnabled
1986              , pcPic->getSlice(0)->getLambdas()
1987#if SAO_ENCODE_ALLOW_USE_PREDEBLOCK
1988              , m_pcCfg->getSaoLcuBoundary()
1989#endif
1990              );
1991              m_pcSAO->PCMLFDisableProcess(pcPic);
1992
1993            //assign SAO slice header
1994            for(Int s=0; s< uiNumSlices; s++)
1995            {
1996              pcPic->getSlice(s)->setSaoEnabledFlag(sliceEnabled[SAO_Y]);
1997              assert(sliceEnabled[SAO_Cb] == sliceEnabled[SAO_Cr]);
1998              pcPic->getSlice(s)->setSaoEnabledFlagChroma(sliceEnabled[SAO_Cb]);
1999              }
2000            }
2001          processingState = ENCODE_SLICE;
2002          }
2003          break;
2004        default:
2005          {
2006            printf("Not a supported encoding state\n");
2007            assert(0);
2008            exit(-1);
2009          }
2010        }
2011      } // end iteration over slices
2012#if H_3D
2013      pcPic->compressMotion(2); 
2014#endif
2015#if !H_3D
2016      pcPic->compressMotion(); 
2017#endif
2018#if H_MV
2019      m_pocLastCoded = pcPic->getPOC();
2020#endif
2021
2022      //-- For time output for each slice
2023      Double dEncTime = (Double)(clock()-iBeforeTime) / CLOCKS_PER_SEC;
2024
2025      const Char* digestStr = NULL;
2026      if (m_pcCfg->getDecodedPictureHashSEIEnabled())
2027      {
2028        /* calculate MD5sum for entire reconstructed picture */
2029        SEIDecodedPictureHash sei_recon_picture_digest;
2030        if(m_pcCfg->getDecodedPictureHashSEIEnabled() == 1)
2031        {
2032          sei_recon_picture_digest.method = SEIDecodedPictureHash::MD5;
2033          calcMD5(*pcPic->getPicYuvRec(), sei_recon_picture_digest.digest);
2034          digestStr = digestToString(sei_recon_picture_digest.digest, 16);
2035        }
2036        else if(m_pcCfg->getDecodedPictureHashSEIEnabled() == 2)
2037        {
2038          sei_recon_picture_digest.method = SEIDecodedPictureHash::CRC;
2039          calcCRC(*pcPic->getPicYuvRec(), sei_recon_picture_digest.digest);
2040          digestStr = digestToString(sei_recon_picture_digest.digest, 2);
2041        }
2042        else if(m_pcCfg->getDecodedPictureHashSEIEnabled() == 3)
2043        {
2044          sei_recon_picture_digest.method = SEIDecodedPictureHash::CHECKSUM;
2045          calcChecksum(*pcPic->getPicYuvRec(), sei_recon_picture_digest.digest);
2046          digestStr = digestToString(sei_recon_picture_digest.digest, 4);
2047        }
2048#if H_MV
2049        OutputNALUnit nalu(NAL_UNIT_SUFFIX_SEI, pcSlice->getTLayer(), getLayerId() );
2050#else
2051        OutputNALUnit nalu(NAL_UNIT_SUFFIX_SEI, pcSlice->getTLayer());
2052#endif
2053
2054        /* write the SEI messages */
2055        m_pcEntropyCoder->setEntropyCoder(m_pcCavlcCoder, pcSlice);
2056        m_seiWriter.writeSEImessage(nalu.m_Bitstream, sei_recon_picture_digest, pcSlice->getSPS());
2057        writeRBSPTrailingBits(nalu.m_Bitstream);
2058
2059        accessUnit.insert(accessUnit.end(), new NALUnitEBSP(nalu));
2060      }
2061      if (m_pcCfg->getTemporalLevel0IndexSEIEnabled())
2062      {
2063        SEITemporalLevel0Index sei_temporal_level0_index;
2064        if (pcSlice->getRapPicFlag())
2065        {
2066          m_tl0Idx = 0;
2067          m_rapIdx = (m_rapIdx + 1) & 0xFF;
2068        }
2069        else
2070        {
2071          m_tl0Idx = (m_tl0Idx + (pcSlice->getTLayer() ? 0 : 1)) & 0xFF;
2072        }
2073        sei_temporal_level0_index.tl0Idx = m_tl0Idx;
2074        sei_temporal_level0_index.rapIdx = m_rapIdx;
2075
2076        OutputNALUnit nalu(NAL_UNIT_PREFIX_SEI); 
2077
2078        /* write the SEI messages */
2079        m_pcEntropyCoder->setEntropyCoder(m_pcCavlcCoder, pcSlice);
2080        m_seiWriter.writeSEImessage(nalu.m_Bitstream, sei_temporal_level0_index, pcSlice->getSPS());
2081        writeRBSPTrailingBits(nalu.m_Bitstream);
2082
2083        /* insert the SEI message NALUnit before any Slice NALUnits */
2084        AccessUnit::iterator it = find_if(accessUnit.begin(), accessUnit.end(), mem_fun(&NALUnit::isSlice));
2085        accessUnit.insert(it, new NALUnitEBSP(nalu));
2086      }
2087
2088      xCalculateAddPSNR( pcPic, pcPic->getPicYuvRec(), accessUnit, dEncTime );
2089
2090    //In case of field coding, compute the interlaced PSNR for both fields
2091    if (isField && ((!pcPic->isTopField() && isTff) || (pcPic->isTopField() && !isTff)) && (pcPic->getPOC()%m_iGopSize != 1))
2092    {
2093      //get complementary top field
2094      TComPic* pcPicTop;
2095      TComList<TComPic*>::iterator   iterPic = rcListPic.begin();
2096      while ((*iterPic)->getPOC() != pcPic->getPOC()-1)
2097      {
2098        iterPic ++;
2099      }
2100      pcPicTop = *(iterPic);
2101      xCalculateInterlacedAddPSNR(pcPicTop, pcPic, pcPicTop->getPicYuvRec(), pcPic->getPicYuvRec(), accessUnit, dEncTime );
2102    }
2103    else if (isField && pcPic->getPOC()!= 0 && (pcPic->getPOC()%m_iGopSize == 0))
2104    {
2105      //get complementary bottom field
2106      TComPic* pcPicBottom;
2107      TComList<TComPic*>::iterator   iterPic = rcListPic.begin();
2108      while ((*iterPic)->getPOC() != pcPic->getPOC()+1)
2109      {
2110        iterPic ++;
2111      }
2112      pcPicBottom = *(iterPic);
2113      xCalculateInterlacedAddPSNR(pcPic, pcPicBottom, pcPic->getPicYuvRec(), pcPicBottom->getPicYuvRec(), accessUnit, dEncTime );
2114    }
2115   
2116      if (digestStr)
2117      {
2118        if(m_pcCfg->getDecodedPictureHashSEIEnabled() == 1)
2119        {
2120          printf(" [MD5:%s]", digestStr);
2121        }
2122        else if(m_pcCfg->getDecodedPictureHashSEIEnabled() == 2)
2123        {
2124          printf(" [CRC:%s]", digestStr);
2125        }
2126        else if(m_pcCfg->getDecodedPictureHashSEIEnabled() == 3)
2127        {
2128          printf(" [Checksum:%s]", digestStr);
2129        }
2130      }
2131      if ( m_pcCfg->getUseRateCtrl() )
2132      {
2133        Double avgQP     = m_pcRateCtrl->getRCPic()->calAverageQP();
2134        Double avgLambda = m_pcRateCtrl->getRCPic()->calAverageLambda();
2135        if ( avgLambda < 0.0 )
2136        {
2137          avgLambda = lambda;
2138        }
2139        m_pcRateCtrl->getRCPic()->updateAfterPicture( actualHeadBits, actualTotalBits, avgQP, avgLambda, pcSlice->getSliceType());
2140        m_pcRateCtrl->getRCPic()->addToPictureLsit( m_pcRateCtrl->getPicList() );
2141
2142        m_pcRateCtrl->getRCSeq()->updateAfterPic( actualTotalBits );
2143        if ( pcSlice->getSliceType() != I_SLICE )
2144        {
2145          m_pcRateCtrl->getRCGOP()->updateAfterPicture( actualTotalBits );
2146        }
2147        else    // for intra picture, the estimated bits are used to update the current status in the GOP
2148        {
2149          m_pcRateCtrl->getRCGOP()->updateAfterPicture( estimatedBits );
2150        }
2151      }
2152
2153      if( ( m_pcCfg->getPictureTimingSEIEnabled() || m_pcCfg->getDecodingUnitInfoSEIEnabled() ) &&
2154          ( pcSlice->getSPS()->getVuiParametersPresentFlag() ) &&
2155          ( ( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getNalHrdParametersPresentFlag() ) 
2156         || ( pcSlice->getSPS()->getVuiParameters()->getHrdParameters()->getVclHrdParametersPresentFlag() ) ) )
2157      {
2158        TComVUI *vui = pcSlice->getSPS()->getVuiParameters();
2159        TComHRD *hrd = vui->getHrdParameters();
2160
2161        if( hrd->getSubPicCpbParamsPresentFlag() )
2162        {
2163          Int i;
2164          UInt64 ui64Tmp;
2165          UInt uiPrev = 0;
2166          UInt numDU = ( pictureTimingSEI.m_numDecodingUnitsMinus1 + 1 );
2167          UInt *pCRD = &pictureTimingSEI.m_duCpbRemovalDelayMinus1[0];
2168          UInt maxDiff = ( hrd->getTickDivisorMinus2() + 2 ) - 1;
2169
2170          for( i = 0; i < numDU; i ++ )
2171          {
2172            pictureTimingSEI.m_numNalusInDuMinus1[ i ]       = ( i == 0 ) ? ( accumNalsDU[ i ] - 1 ) : ( accumNalsDU[ i ] - accumNalsDU[ i - 1] - 1 );
2173          }
2174
2175          if( numDU == 1 )
2176          {
2177            pCRD[ 0 ] = 0; /* don't care */
2178          }
2179          else
2180          {
2181            pCRD[ numDU - 1 ] = 0;/* by definition */
2182            UInt tmp = 0;
2183            UInt accum = 0;
2184
2185            for( i = ( numDU - 2 ); i >= 0; i -- )
2186            {
2187              ui64Tmp = ( ( ( accumBitsDU[ numDU - 1 ]  - accumBitsDU[ i ] ) * ( vui->getTimingInfo()->getTimeScale() / vui->getTimingInfo()->getNumUnitsInTick() ) * ( hrd->getTickDivisorMinus2() + 2 ) ) / ( m_pcCfg->getTargetBitrate() ) );
2188              if( (UInt)ui64Tmp > maxDiff )
2189              {
2190                tmp ++;
2191              }
2192            }
2193            uiPrev = 0;
2194
2195            UInt flag = 0;
2196            for( i = ( numDU - 2 ); i >= 0; i -- )
2197            {
2198              flag = 0;
2199              ui64Tmp = ( ( ( accumBitsDU[ numDU - 1 ]  - accumBitsDU[ i ] ) * ( vui->getTimingInfo()->getTimeScale() / vui->getTimingInfo()->getNumUnitsInTick() ) * ( hrd->getTickDivisorMinus2() + 2 ) ) / ( m_pcCfg->getTargetBitrate() ) );
2200
2201              if( (UInt)ui64Tmp > maxDiff )
2202              {
2203                if(uiPrev >= maxDiff - tmp)
2204                {
2205                  ui64Tmp = uiPrev + 1;
2206                  flag = 1;
2207                }
2208                else                            ui64Tmp = maxDiff - tmp + 1;
2209              }
2210              pCRD[ i ] = (UInt)ui64Tmp - uiPrev - 1;
2211              if( (Int)pCRD[ i ] < 0 )
2212              {
2213                pCRD[ i ] = 0;
2214              }
2215              else if (tmp > 0 && flag == 1) 
2216              {
2217                tmp --;
2218              }
2219              accum += pCRD[ i ] + 1;
2220              uiPrev = accum;
2221            }
2222          }
2223        }
2224        if( m_pcCfg->getPictureTimingSEIEnabled() )
2225        {
2226          {
2227            OutputNALUnit nalu(NAL_UNIT_PREFIX_SEI, pcSlice->getTLayer());
2228          m_pcEntropyCoder->setEntropyCoder(m_pcCavlcCoder, pcSlice);
2229          pictureTimingSEI.m_picStruct = (isField && pcSlice->getPic()->isTopField())? 1 : isField? 2 : 0;
2230          m_seiWriter.writeSEImessage(nalu.m_Bitstream, pictureTimingSEI, pcSlice->getSPS());
2231          writeRBSPTrailingBits(nalu.m_Bitstream);
2232          UInt seiPositionInAu = xGetFirstSeiLocation(accessUnit);
2233          UInt offsetPosition = m_activeParameterSetSEIPresentInAU
2234                                    + m_bufferingPeriodSEIPresentInAU;    // Insert PT SEI after APS and BP SEI
2235          AccessUnit::iterator it;
2236          for(j = 0, it = accessUnit.begin(); j < seiPositionInAu + offsetPosition; j++)
2237          {
2238            it++;
2239          }
2240          accessUnit.insert(it, new NALUnitEBSP(nalu));
2241          m_pictureTimingSEIPresentInAU = true;
2242        }
2243          if ( m_pcCfg->getScalableNestingSEIEnabled() ) // put picture timing SEI into scalable nesting SEI
2244          {
2245            OutputNALUnit nalu(NAL_UNIT_PREFIX_SEI, pcSlice->getTLayer());
2246            m_pcEntropyCoder->setEntropyCoder(m_pcCavlcCoder, pcSlice);
2247            scalableNestingSEI.m_nestedSEIs.clear();
2248            scalableNestingSEI.m_nestedSEIs.push_back(&pictureTimingSEI);
2249            m_seiWriter.writeSEImessage(nalu.m_Bitstream, scalableNestingSEI, pcSlice->getSPS());
2250            writeRBSPTrailingBits(nalu.m_Bitstream);
2251            UInt seiPositionInAu = xGetFirstSeiLocation(accessUnit);
2252            UInt offsetPosition = m_activeParameterSetSEIPresentInAU
2253              + m_bufferingPeriodSEIPresentInAU + m_pictureTimingSEIPresentInAU + m_nestedBufferingPeriodSEIPresentInAU;    // Insert PT SEI after APS and BP SEI
2254            AccessUnit::iterator it;
2255            for(j = 0, it = accessUnit.begin(); j < seiPositionInAu + offsetPosition; j++)
2256            {
2257              it++;
2258            }
2259            accessUnit.insert(it, new NALUnitEBSP(nalu));
2260            m_nestedPictureTimingSEIPresentInAU = true;
2261          }
2262        }
2263        if( m_pcCfg->getDecodingUnitInfoSEIEnabled() && hrd->getSubPicCpbParamsPresentFlag() )
2264        {             
2265          m_pcEntropyCoder->setEntropyCoder(m_pcCavlcCoder, pcSlice);
2266          for( Int i = 0; i < ( pictureTimingSEI.m_numDecodingUnitsMinus1 + 1 ); i ++ )
2267          {
2268            OutputNALUnit nalu(NAL_UNIT_PREFIX_SEI, pcSlice->getTLayer());
2269
2270            SEIDecodingUnitInfo tempSEI;
2271            tempSEI.m_decodingUnitIdx = i;
2272            tempSEI.m_duSptCpbRemovalDelay = pictureTimingSEI.m_duCpbRemovalDelayMinus1[i] + 1;
2273            tempSEI.m_dpbOutputDuDelayPresentFlag = false;
2274            tempSEI.m_picSptDpbOutputDuDelay = picSptDpbOutputDuDelay;
2275
2276            AccessUnit::iterator it;
2277            // Insert the first one in the right location, before the first slice
2278            if(i == 0)
2279            {
2280              // Insert before the first slice.
2281              m_seiWriter.writeSEImessage(nalu.m_Bitstream, tempSEI, pcSlice->getSPS());
2282              writeRBSPTrailingBits(nalu.m_Bitstream);
2283
2284              UInt seiPositionInAu = xGetFirstSeiLocation(accessUnit);
2285              UInt offsetPosition = m_activeParameterSetSEIPresentInAU
2286                                    + m_bufferingPeriodSEIPresentInAU
2287                                    + m_pictureTimingSEIPresentInAU;  // Insert DU info SEI after APS, BP and PT SEI
2288              for(j = 0, it = accessUnit.begin(); j < seiPositionInAu + offsetPosition; j++)
2289              {
2290                it++;
2291              }
2292              accessUnit.insert(it, new NALUnitEBSP(nalu));
2293            }
2294            else
2295            {
2296              Int ctr;
2297              // For the second decoding unit onwards we know how many NALUs are present
2298              for (ctr = 0, it = accessUnit.begin(); it != accessUnit.end(); it++)
2299              {           
2300                if(ctr == accumNalsDU[ i - 1 ])
2301                {
2302                  // Insert before the first slice.
2303                  m_seiWriter.writeSEImessage(nalu.m_Bitstream, tempSEI, pcSlice->getSPS());
2304                  writeRBSPTrailingBits(nalu.m_Bitstream);
2305
2306                  accessUnit.insert(it, new NALUnitEBSP(nalu));
2307                  break;
2308                }
2309                if ((*it)->m_nalUnitType != NAL_UNIT_PREFIX_SEI && (*it)->m_nalUnitType != NAL_UNIT_SUFFIX_SEI)
2310                {
2311                  ctr++;
2312                }
2313              }
2314            }           
2315          }
2316        }
2317      }
2318      xResetNonNestedSEIPresentFlags();
2319      xResetNestedSEIPresentFlags();
2320      pcPic->getPicYuvRec()->copyToPic(pcPicYuvRecOut);
2321
2322      pcPic->setReconMark   ( true );
2323#if H_MV
2324      TComSlice::markIvRefPicsAsShortTerm( m_refPicSetInterLayer0, m_refPicSetInterLayer1 ); 
2325      std::vector<Int> temp; 
2326      TComSlice::markCurrPic( pcPic ); 
2327#if !H_MV_HLS_8_DBP_NODOC_42
2328      TComSlice::markIvRefPicsAsUnused   ( m_ivPicLists, temp, pcPic->getSlice(0)->getVPS(), m_layerId, pcPic->getPOC() ); 
2329#endif
2330#endif
2331      m_bFirst = false;
2332      m_iNumPicCoded++;
2333      m_totalCoded ++;
2334      /* logging: insert a newline at end of picture period */
2335      printf("\n");
2336      fflush(stdout);
2337
2338      delete[] pcSubstreamsOut;
2339
2340#if EFFICIENT_FIELD_IRAP
2341    if(IRAPtoReorder)
2342    {
2343      if(swapIRAPForward)
2344      {
2345        if(iGOPid == IRAPGOPid)
2346        {
2347          iGOPid = IRAPGOPid +1;
2348          IRAPtoReorder = false;
2349        }
2350        else if(iGOPid == IRAPGOPid +1)
2351        {
2352          iGOPid --;
2353        }
2354      }
2355      else
2356      {
2357        if(iGOPid == IRAPGOPid)
2358        {
2359          iGOPid = IRAPGOPid -1;
2360        }
2361        else if(iGOPid == IRAPGOPid -1)
2362        {
2363          iGOPid = IRAPGOPid;
2364          IRAPtoReorder = false;
2365        }
2366      }
2367    }
2368#endif
2369  }
2370  delete pcBitstreamRedirect;
2371
2372  if( accumBitsDU != NULL) delete accumBitsDU;
2373  if( accumNalsDU != NULL) delete accumNalsDU;
2374
2375#if !H_MV
2376  assert ( (m_iNumPicCoded == iNumPicRcvd) || (isField && iPOCLast == 1) );
2377#endif
2378}
2379
2380#if !H_MV
2381Void TEncGOP::printOutSummary(UInt uiNumAllPicCoded, bool isField)
2382{
2383  assert (uiNumAllPicCoded == m_gcAnalyzeAll.getNumPic());
2384 
2385   
2386  //--CFG_KDY
2387  if(isField)
2388  {
2389    m_gcAnalyzeAll.setFrmRate( m_pcCfg->getFrameRate() * 2);
2390    m_gcAnalyzeI.setFrmRate( m_pcCfg->getFrameRate() * 2);
2391    m_gcAnalyzeP.setFrmRate( m_pcCfg->getFrameRate() * 2);
2392    m_gcAnalyzeB.setFrmRate( m_pcCfg->getFrameRate() * 2);
2393  }
2394  else
2395  {
2396  m_gcAnalyzeAll.setFrmRate( m_pcCfg->getFrameRate() );
2397  m_gcAnalyzeI.setFrmRate( m_pcCfg->getFrameRate() );
2398  m_gcAnalyzeP.setFrmRate( m_pcCfg->getFrameRate() );
2399  m_gcAnalyzeB.setFrmRate( m_pcCfg->getFrameRate() );
2400  }
2401 
2402  //-- all
2403  printf( "\n\nSUMMARY --------------------------------------------------------\n" );
2404  m_gcAnalyzeAll.printOut('a');
2405 
2406  printf( "\n\nI Slices--------------------------------------------------------\n" );
2407  m_gcAnalyzeI.printOut('i');
2408 
2409  printf( "\n\nP Slices--------------------------------------------------------\n" );
2410  m_gcAnalyzeP.printOut('p');
2411 
2412  printf( "\n\nB Slices--------------------------------------------------------\n" );
2413  m_gcAnalyzeB.printOut('b');
2414 
2415#if _SUMMARY_OUT_
2416  m_gcAnalyzeAll.printSummaryOut();
2417#endif
2418#if _SUMMARY_PIC_
2419  m_gcAnalyzeI.printSummary('I');
2420  m_gcAnalyzeP.printSummary('P');
2421  m_gcAnalyzeB.printSummary('B');
2422#endif
2423
2424  if(isField)
2425  {
2426    //-- interlaced summary
2427    m_gcAnalyzeAll_in.setFrmRate( m_pcCfg->getFrameRate());
2428    printf( "\n\nSUMMARY INTERLACED ---------------------------------------------\n" );
2429    m_gcAnalyzeAll_in.printOutInterlaced('a',  m_gcAnalyzeAll.getBits());
2430   
2431#if _SUMMARY_OUT_
2432    m_gcAnalyzeAll_in.printSummaryOutInterlaced();
2433#endif
2434  }
2435
2436  printf("\nRVM: %.3lf\n" , xCalculateRVM());
2437}
2438#endif
2439#if H_3D_VSO
2440Void TEncGOP::preLoopFilterPicAll( TComPic* pcPic, Dist64& ruiDist, UInt64& ruiBits )
2441#else
2442Void TEncGOP::preLoopFilterPicAll( TComPic* pcPic, UInt64& ruiDist, UInt64& ruiBits )
2443#endif
2444{
2445  TComSlice* pcSlice = pcPic->getSlice(pcPic->getCurrSliceIdx());
2446  Bool bCalcDist = false;
2447  m_pcLoopFilter->setCfg(m_pcCfg->getLFCrossTileBoundaryFlag());
2448  m_pcLoopFilter->loopFilterPic( pcPic );
2449 
2450  m_pcEntropyCoder->setEntropyCoder ( m_pcEncTop->getRDGoOnSbacCoder(), pcSlice );
2451  m_pcEntropyCoder->resetEntropy    ();
2452  m_pcEntropyCoder->setBitstream    ( m_pcBitCounter );
2453  m_pcEntropyCoder->resetEntropy    ();
2454  ruiBits += m_pcEntropyCoder->getNumberOfWrittenBits();
2455 
2456  if (!bCalcDist)
2457    ruiDist = xFindDistortionFrame(pcPic->getPicYuvOrg(), pcPic->getPicYuvRec());
2458}
2459
2460// ====================================================================================================================
2461// Protected member functions
2462// ====================================================================================================================
2463
2464
2465Void TEncGOP::xInitGOP( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut, bool isField )
2466{
2467  assert( iNumPicRcvd > 0 );
2468  //  Exception for the first frames
2469  if ( ( isField && (iPOCLast == 0 || iPOCLast == 1) ) || (!isField  && (iPOCLast == 0))  )
2470  {
2471    m_iGopSize    = 1;
2472  }
2473  else
2474  {
2475    m_iGopSize    = m_pcCfg->getGOPSize();
2476  }
2477  assert (m_iGopSize > 0);
2478 
2479  return;
2480}
2481
2482Void TEncGOP::xInitGOP( Int iPOCLast, Int iNumPicRcvd, TComList<TComPic*>& rcListPic, TComList<TComPicYuv*>& rcListPicYuvRecOut )
2483{
2484  assert( iNumPicRcvd > 0 );
2485  //  Exception for the first frame
2486  if ( iPOCLast == 0 )
2487  {
2488    m_iGopSize    = 1;
2489  }
2490  else
2491    m_iGopSize    = m_pcCfg->getGOPSize();
2492 
2493  assert (m_iGopSize > 0); 
2494
2495  return;
2496}
2497
2498Void TEncGOP::xGetBuffer( TComList<TComPic*>&      rcListPic,
2499                         TComList<TComPicYuv*>&    rcListPicYuvRecOut,
2500                         Int                       iNumPicRcvd,
2501                         Int                       iTimeOffset,
2502                         TComPic*&                 rpcPic,
2503                         TComPicYuv*&              rpcPicYuvRecOut,
2504                         Int                       pocCurr,
2505                         bool                      isField)
2506{
2507  Int i;
2508  //  Rec. output
2509  TComList<TComPicYuv*>::iterator     iterPicYuvRec = rcListPicYuvRecOut.end();
2510 
2511  if (isField)
2512  {
2513    for ( i = 0; i < ( (pocCurr == 0 ) || (pocCurr == 1 ) ? (iNumPicRcvd - iTimeOffset + 1) : (iNumPicRcvd - iTimeOffset + 2) ); i++ )
2514    {
2515      iterPicYuvRec--;
2516    }
2517  }
2518  else
2519  {
2520    for ( i = 0; i < (iNumPicRcvd - iTimeOffset + 1); i++ )
2521  {
2522    iterPicYuvRec--;
2523  }
2524 
2525  }
2526 
2527  if (isField)
2528  {
2529    if(pocCurr == 1)
2530    {
2531      iterPicYuvRec++;
2532    }
2533  }
2534  rpcPicYuvRecOut = *(iterPicYuvRec);
2535 
2536  //  Current pic.
2537  TComList<TComPic*>::iterator        iterPic       = rcListPic.begin();
2538  while (iterPic != rcListPic.end())
2539  {
2540    rpcPic = *(iterPic);
2541    rpcPic->setCurrSliceIdx(0);
2542    if (rpcPic->getPOC() == pocCurr)
2543    {
2544      break;
2545    }
2546    iterPic++;
2547  }
2548
2549#if !H_MV
2550  assert( rpcPic != NULL );
2551#endif
2552  assert (rpcPic->getPOC() == pocCurr);
2553 
2554  return;
2555}
2556
2557#if H_3D_VSO
2558Dist64 TEncGOP::xFindDistortionFrame (TComPicYuv* pcPic0, TComPicYuv* pcPic1)
2559#else
2560UInt64 TEncGOP::xFindDistortionFrame (TComPicYuv* pcPic0, TComPicYuv* pcPic1)
2561#endif
2562{
2563  Int     x, y;
2564  Pel*  pSrc0   = pcPic0 ->getLumaAddr();
2565  Pel*  pSrc1   = pcPic1 ->getLumaAddr();
2566  UInt  uiShift = 2 * DISTORTION_PRECISION_ADJUSTMENT(g_bitDepthY-8);
2567  Int   iTemp;
2568 
2569  Int   iStride = pcPic0->getStride();
2570  Int   iWidth  = pcPic0->getWidth();
2571  Int   iHeight = pcPic0->getHeight();
2572 
2573#if H_3D_VSO
2574  Dist64  uiTotalDiff = 0;
2575#else
2576  UInt64  uiTotalDiff = 0;
2577#endif
2578 
2579  for( y = 0; y < iHeight; y++ )
2580  {
2581    for( x = 0; x < iWidth; x++ )
2582    {
2583      iTemp = pSrc0[x] - pSrc1[x]; uiTotalDiff += (iTemp*iTemp) >> uiShift;
2584    }
2585    pSrc0 += iStride;
2586    pSrc1 += iStride;
2587  }
2588 
2589  uiShift = 2 * DISTORTION_PRECISION_ADJUSTMENT(g_bitDepthC-8);
2590  iHeight >>= 1;
2591  iWidth  >>= 1;
2592  iStride >>= 1;
2593 
2594  pSrc0  = pcPic0->getCbAddr();
2595  pSrc1  = pcPic1->getCbAddr();
2596 
2597  for( y = 0; y < iHeight; y++ )
2598  {
2599    for( x = 0; x < iWidth; x++ )
2600    {
2601      iTemp = pSrc0[x] - pSrc1[x]; uiTotalDiff += (iTemp*iTemp) >> uiShift;
2602    }
2603    pSrc0 += iStride;
2604    pSrc1 += iStride;
2605  }
2606 
2607  pSrc0  = pcPic0->getCrAddr();
2608  pSrc1  = pcPic1->getCrAddr();
2609 
2610  for( y = 0; y < iHeight; y++ )
2611  {
2612    for( x = 0; x < iWidth; x++ )
2613    {
2614      iTemp = pSrc0[x] - pSrc1[x]; uiTotalDiff += (iTemp*iTemp) >> uiShift;
2615    }
2616    pSrc0 += iStride;
2617    pSrc1 += iStride;
2618  }
2619 
2620  return uiTotalDiff;
2621}
2622
2623#if VERBOSE_RATE
2624static const Char* nalUnitTypeToString(NalUnitType type)
2625{
2626  switch (type)
2627  {
2628    case NAL_UNIT_CODED_SLICE_TRAIL_R: return "TRAIL_R";
2629    case NAL_UNIT_CODED_SLICE_TRAIL_N: return "TRAIL_N";
2630    case NAL_UNIT_CODED_SLICE_TSA_R:      return "TSA_R";
2631    case NAL_UNIT_CODED_SLICE_TSA_N: return "TSA_N";
2632    case NAL_UNIT_CODED_SLICE_STSA_R: return "STSA_R";
2633    case NAL_UNIT_CODED_SLICE_STSA_N: return "STSA_N";
2634    case NAL_UNIT_CODED_SLICE_BLA_W_LP:   return "BLA_W_LP";
2635    case NAL_UNIT_CODED_SLICE_BLA_W_RADL: return "BLA_W_RADL";
2636    case NAL_UNIT_CODED_SLICE_BLA_N_LP: return "BLA_N_LP";
2637    case NAL_UNIT_CODED_SLICE_IDR_W_RADL: return "IDR_W_RADL";
2638    case NAL_UNIT_CODED_SLICE_IDR_N_LP: return "IDR_N_LP";
2639    case NAL_UNIT_CODED_SLICE_CRA: return "CRA";
2640    case NAL_UNIT_CODED_SLICE_RADL_R:     return "RADL_R";
2641    case NAL_UNIT_CODED_SLICE_RADL_N:     return "RADL_N";
2642    case NAL_UNIT_CODED_SLICE_RASL_R:     return "RASL_R";
2643    case NAL_UNIT_CODED_SLICE_RASL_N:     return "RASL_N";
2644    case NAL_UNIT_VPS: return "VPS";
2645    case NAL_UNIT_SPS: return "SPS";
2646    case NAL_UNIT_PPS: return "PPS";
2647    case NAL_UNIT_ACCESS_UNIT_DELIMITER: return "AUD";
2648    case NAL_UNIT_EOS: return "EOS";
2649    case NAL_UNIT_EOB: return "EOB";
2650    case NAL_UNIT_FILLER_DATA: return "FILLER";
2651    case NAL_UNIT_PREFIX_SEI:             return "SEI";
2652    case NAL_UNIT_SUFFIX_SEI:             return "SEI";
2653    default: return "UNK";
2654  }
2655}
2656#endif
2657
2658Void TEncGOP::xCalculateAddPSNR( TComPic* pcPic, TComPicYuv* pcPicD, const AccessUnit& accessUnit, Double dEncTime )
2659{
2660  Int     x, y;
2661  UInt64 uiSSDY  = 0;
2662  UInt64 uiSSDU  = 0;
2663  UInt64 uiSSDV  = 0;
2664 
2665  Double  dYPSNR  = 0.0;
2666  Double  dUPSNR  = 0.0;
2667  Double  dVPSNR  = 0.0;
2668 
2669  //===== calculate PSNR =====
2670  Pel*  pOrg    = pcPic ->getPicYuvOrg()->getLumaAddr();
2671  Pel*  pRec    = pcPicD->getLumaAddr();
2672  Int   iStride = pcPicD->getStride();
2673 
2674  Int   iWidth;
2675  Int   iHeight;
2676 
2677  iWidth  = pcPicD->getWidth () - m_pcEncTop->getPad(0);
2678  iHeight = pcPicD->getHeight() - m_pcEncTop->getPad(1);
2679 
2680  Int   iSize   = iWidth*iHeight;
2681 
2682  for( y = 0; y < iHeight; y++ )
2683  {
2684    for( x = 0; x < iWidth; x++ )
2685    {
2686      Int iDiff = (Int)( pOrg[x] - pRec[x] );
2687      uiSSDY   += iDiff * iDiff;
2688    }
2689    pOrg += iStride;
2690    pRec += iStride;
2691  }
2692 
2693#if H_3D_VSO
2694#if H_3D_VSO_SYNTH_DIST_OUT
2695  if ( m_pcRdCost->getUseRenModel() )
2696  {
2697    unsigned int maxval = 255 * (1<<(g_uiBitDepth + g_uiBitIncrement -8));
2698    Double fRefValueY = (double) maxval * maxval * iSize;
2699    Double fRefValueC = fRefValueY / 4.0;
2700    TRenModel*  pcRenModel = m_pcEncTop->getEncTop()->getRenModel();
2701    Int64 iDistVSOY, iDistVSOU, iDistVSOV;
2702    pcRenModel->getTotalSSE( iDistVSOY, iDistVSOU, iDistVSOV );
2703    dYPSNR = ( iDistVSOY ? 10.0 * log10( fRefValueY / (Double) iDistVSOY ) : 99.99 );
2704    dUPSNR = ( iDistVSOU ? 10.0 * log10( fRefValueC / (Double) iDistVSOU ) : 99.99 );
2705    dVPSNR = ( iDistVSOV ? 10.0 * log10( fRefValueC / (Double) iDistVSOV ) : 99.99 );
2706  }
2707  else
2708  {
2709#endif
2710#endif
2711    iHeight >>= 1;
2712  iWidth  >>= 1;
2713  iStride >>= 1;
2714  pOrg  = pcPic ->getPicYuvOrg()->getCbAddr();
2715  pRec  = pcPicD->getCbAddr();
2716 
2717  for( y = 0; y < iHeight; y++ )
2718  {
2719    for( x = 0; x < iWidth; x++ )
2720    {
2721      Int iDiff = (Int)( pOrg[x] - pRec[x] );
2722      uiSSDU   += iDiff * iDiff;
2723    }
2724    pOrg += iStride;
2725    pRec += iStride;
2726  }
2727 
2728  pOrg  = pcPic ->getPicYuvOrg()->getCrAddr();
2729  pRec  = pcPicD->getCrAddr();
2730 
2731  for( y = 0; y < iHeight; y++ )
2732  {
2733    for( x = 0; x < iWidth; x++ )
2734    {
2735      Int iDiff = (Int)( pOrg[x] - pRec[x] );
2736      uiSSDV   += iDiff * iDiff;
2737    }
2738    pOrg += iStride;
2739    pRec += iStride;
2740  }
2741 
2742  Int maxvalY = 255 << (g_bitDepthY-8);
2743  Int maxvalC = 255 << (g_bitDepthC-8);
2744  Double fRefValueY = (Double) maxvalY * maxvalY * iSize;
2745  Double fRefValueC = (Double) maxvalC * maxvalC * iSize / 4.0;
2746  dYPSNR            = ( uiSSDY ? 10.0 * log10( fRefValueY / (Double)uiSSDY ) : 99.99 );
2747  dUPSNR            = ( uiSSDU ? 10.0 * log10( fRefValueC / (Double)uiSSDU ) : 99.99 );
2748  dVPSNR            = ( uiSSDV ? 10.0 * log10( fRefValueC / (Double)uiSSDV ) : 99.99 );
2749#if H_3D_VSO
2750#if H_3D_VSO_SYNTH_DIST_OUT
2751}
2752#endif
2753#endif
2754  /* calculate the size of the access unit, excluding:
2755   *  - any AnnexB contributions (start_code_prefix, zero_byte, etc.,)
2756   *  - SEI NAL units
2757   */
2758  UInt numRBSPBytes = 0;
2759  for (AccessUnit::const_iterator it = accessUnit.begin(); it != accessUnit.end(); it++)
2760  {
2761    UInt numRBSPBytes_nal = UInt((*it)->m_nalUnitData.str().size());
2762#if VERBOSE_RATE
2763    printf("*** %6s numBytesInNALunit: %u\n", nalUnitTypeToString((*it)->m_nalUnitType), numRBSPBytes_nal);
2764#endif
2765    if ((*it)->m_nalUnitType != NAL_UNIT_PREFIX_SEI && (*it)->m_nalUnitType != NAL_UNIT_SUFFIX_SEI)
2766    {
2767      numRBSPBytes += numRBSPBytes_nal;
2768    }
2769  }
2770
2771  UInt uibits = numRBSPBytes * 8;
2772  m_vRVM_RP.push_back( uibits );
2773
2774  //===== add PSNR =====
2775#if H_MV
2776  m_pcEncTop->getAnalyzeAll()->addResult (dYPSNR, dUPSNR, dVPSNR, (Double)uibits);
2777#else
2778  m_gcAnalyzeAll.addResult (dYPSNR, dUPSNR, dVPSNR, (Double)uibits);
2779#endif
2780  TComSlice*  pcSlice = pcPic->getSlice(0);
2781  if (pcSlice->isIntra())
2782  {
2783#if H_MV
2784    m_pcEncTop->getAnalyzeI()->addResult (dYPSNR, dUPSNR, dVPSNR, (Double)uibits);
2785#else
2786    m_gcAnalyzeI.addResult (dYPSNR, dUPSNR, dVPSNR, (Double)uibits);
2787#endif
2788  }
2789  if (pcSlice->isInterP())
2790  {
2791#if H_MV
2792    m_pcEncTop->getAnalyzeP()->addResult (dYPSNR, dUPSNR, dVPSNR, (Double)uibits);
2793#else
2794    m_gcAnalyzeP.addResult (dYPSNR, dUPSNR, dVPSNR, (Double)uibits);
2795#endif
2796  }
2797  if (pcSlice->isInterB())
2798  {
2799#if H_MV
2800    m_pcEncTop->getAnalyzeB()->addResult (dYPSNR, dUPSNR, dVPSNR, (Double)uibits);
2801#else
2802    m_gcAnalyzeB.addResult (dYPSNR, dUPSNR, dVPSNR, (Double)uibits);
2803#endif
2804  }
2805
2806  Char c = (pcSlice->isIntra() ? 'I' : pcSlice->isInterP() ? 'P' : 'B');
2807  if (!pcSlice->isReferenced()) c += 32;
2808
2809#if ADAPTIVE_QP_SELECTION
2810#if H_MV
2811  printf("Layer %3d   POC %4d TId: %1d ( %c-SLICE, nQP %d QP %d ) %10d  bits",
2812    pcSlice->getLayerId(),
2813    pcSlice->getPOC(),
2814    pcSlice->getTLayer(),
2815    c,
2816    pcSlice->getSliceQpBase(),
2817    pcSlice->getSliceQp(),
2818    uibits );
2819#else
2820  printf("POC %4d TId: %1d ( %c-SLICE, nQP %d QP %d ) %10d bits",
2821         pcSlice->getPOC(),
2822         pcSlice->getTLayer(),
2823         c,
2824         pcSlice->getSliceQpBase(),
2825         pcSlice->getSliceQp(),
2826         uibits );
2827#endif
2828#else
2829#if H_MV
2830  printf("Layer %3d   POC %4d TId: %1d ( %c-SLICE, QP %d ) %10d bits",
2831    pcSlice->getLayerId(),
2832    pcSlice->getPOC()-pcSlice->getLastIDR(),
2833    pcSlice->getTLayer(),
2834    c,
2835    pcSlice->getSliceQp(),
2836    uibits );
2837#else
2838  printf("POC %4d TId: %1d ( %c-SLICE, QP %d ) %10d bits",
2839         pcSlice->getPOC()-pcSlice->getLastIDR(),
2840         pcSlice->getTLayer(),
2841         c,
2842         pcSlice->getSliceQp(),
2843         uibits );
2844#endif
2845#endif
2846
2847  printf(" [Y %6.4lf dB    U %6.4lf dB    V %6.4lf dB]", dYPSNR, dUPSNR, dVPSNR );
2848  printf(" [ET %5.0f ]", dEncTime );
2849 
2850  for (Int iRefList = 0; iRefList < 2; iRefList++)
2851  {
2852    printf(" [L%d ", iRefList);
2853    for (Int iRefIndex = 0; iRefIndex < pcSlice->getNumRefIdx(RefPicList(iRefList)); iRefIndex++)
2854    {
2855#if H_MV
2856      if( pcSlice->getLayerId() != pcSlice->getRefLayerId( RefPicList(iRefList), iRefIndex ) )
2857      {
2858        printf( "V%d ", pcSlice->getRefLayerId( RefPicList(iRefList), iRefIndex ) );
2859      }
2860      else
2861      {
2862#endif
2863      printf ("%d ", pcSlice->getRefPOC(RefPicList(iRefList), iRefIndex)-pcSlice->getLastIDR());
2864#if H_MV
2865      }
2866#endif
2867    }
2868    printf("]");
2869  }
2870}
2871
2872
2873Void reinterlace(Pel* top, Pel* bottom, Pel* dst, UInt stride, UInt width, UInt height, bool isTff)
2874{
2875 
2876  for (Int y = 0; y < height; y++)
2877  {
2878    for (Int x = 0; x < width; x++)
2879    {
2880      dst[x] = isTff ? top[x] : bottom[x];
2881      dst[stride+x] = isTff ? bottom[x] : top[x];
2882    }
2883    top += stride;
2884    bottom += stride;
2885    dst += stride*2;
2886  }
2887}
2888
2889
2890Void TEncGOP::xCalculateInterlacedAddPSNR( TComPic* pcPicOrgTop, TComPic* pcPicOrgBottom, TComPicYuv* pcPicRecTop, TComPicYuv* pcPicRecBottom, const AccessUnit& accessUnit, Double dEncTime )
2891{
2892#if  H_MV
2893  assert( 0 ); // Field coding and MV need to be aligned.
2894#else
2895  Int     x, y;
2896 
2897  UInt64 uiSSDY_in  = 0;
2898  UInt64 uiSSDU_in  = 0;
2899  UInt64 uiSSDV_in  = 0;
2900 
2901  Double  dYPSNR_in  = 0.0;
2902  Double  dUPSNR_in  = 0.0;
2903  Double  dVPSNR_in  = 0.0;
2904 
2905  /*------ INTERLACED PSNR -----------*/
2906 
2907  /* Luma */
2908 
2909  Pel*  pOrgTop = pcPicOrgTop->getPicYuvOrg()->getLumaAddr();
2910  Pel*  pOrgBottom = pcPicOrgBottom->getPicYuvOrg()->getLumaAddr();
2911  Pel*  pRecTop = pcPicRecTop->getLumaAddr();
2912  Pel*  pRecBottom = pcPicRecBottom->getLumaAddr();
2913 
2914  Int   iWidth;
2915  Int   iHeight;
2916  Int iStride;
2917 
2918  iWidth  = pcPicOrgTop->getPicYuvOrg()->getWidth () - m_pcEncTop->getPad(0);
2919  iHeight = pcPicOrgTop->getPicYuvOrg()->getHeight() - m_pcEncTop->getPad(1);
2920  iStride = pcPicOrgTop->getPicYuvOrg()->getStride();
2921  Int   iSize   = iWidth*iHeight;
2922  bool isTff = pcPicOrgTop->isTopField();
2923 
2924  TComPicYuv* pcOrgInterlaced = new TComPicYuv;
2925  pcOrgInterlaced->create( iWidth, iHeight << 1, g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiMaxCUDepth );
2926 
2927  TComPicYuv* pcRecInterlaced = new TComPicYuv;
2928  pcRecInterlaced->create( iWidth, iHeight << 1, g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiMaxCUDepth );
2929 
2930  Pel* pOrgInterlaced = pcOrgInterlaced->getLumaAddr();
2931  Pel* pRecInterlaced = pcRecInterlaced->getLumaAddr();
2932 
2933  //=== Interlace fields ====
2934  reinterlace(pOrgTop, pOrgBottom, pOrgInterlaced, iStride, iWidth, iHeight, isTff);
2935  reinterlace(pRecTop, pRecBottom, pRecInterlaced, iStride, iWidth, iHeight, isTff);
2936 
2937  //===== calculate PSNR =====
2938  for( y = 0; y < iHeight << 1; y++ )
2939  {
2940    for( x = 0; x < iWidth; x++ )
2941    {
2942      Int iDiff = (Int)( pOrgInterlaced[x] - pRecInterlaced[x] );
2943      uiSSDY_in   += iDiff * iDiff;
2944    }
2945    pOrgInterlaced += iStride;
2946    pRecInterlaced += iStride;
2947  }
2948 
2949  /*Chroma*/
2950 
2951  iHeight >>= 1;
2952  iWidth  >>= 1;
2953  iStride >>= 1;
2954 
2955  pOrgTop = pcPicOrgTop->getPicYuvOrg()->getCbAddr();
2956  pOrgBottom = pcPicOrgBottom->getPicYuvOrg()->getCbAddr();
2957  pRecTop = pcPicRecTop->getCbAddr();
2958  pRecBottom = pcPicRecBottom->getCbAddr();
2959  pOrgInterlaced = pcOrgInterlaced->getCbAddr();
2960  pRecInterlaced = pcRecInterlaced->getCbAddr();
2961 
2962  //=== Interlace fields ====
2963  reinterlace(pOrgTop, pOrgBottom, pOrgInterlaced, iStride, iWidth, iHeight, isTff);
2964  reinterlace(pRecTop, pRecBottom, pRecInterlaced, iStride, iWidth, iHeight, isTff);
2965 
2966  //===== calculate PSNR =====
2967  for( y = 0; y < iHeight << 1; y++ )
2968  {
2969    for( x = 0; x < iWidth; x++ )
2970    {
2971      Int iDiff = (Int)( pOrgInterlaced[x] - pRecInterlaced[x] );
2972      uiSSDU_in   += iDiff * iDiff;
2973    }
2974    pOrgInterlaced += iStride;
2975    pRecInterlaced += iStride;
2976  }
2977 
2978  pOrgTop = pcPicOrgTop->getPicYuvOrg()->getCrAddr();
2979  pOrgBottom = pcPicOrgBottom->getPicYuvOrg()->getCrAddr();
2980  pRecTop = pcPicRecTop->getCrAddr();
2981  pRecBottom = pcPicRecBottom->getCrAddr();
2982  pOrgInterlaced = pcOrgInterlaced->getCrAddr();
2983  pRecInterlaced = pcRecInterlaced->getCrAddr();
2984 
2985  //=== Interlace fields ====
2986  reinterlace(pOrgTop, pOrgBottom, pOrgInterlaced, iStride, iWidth, iHeight, isTff);
2987  reinterlace(pRecTop, pRecBottom, pRecInterlaced, iStride, iWidth, iHeight, isTff);
2988 
2989  //===== calculate PSNR =====
2990  for( y = 0; y < iHeight << 1; y++ )
2991  {
2992    for( x = 0; x < iWidth; x++ )
2993    {
2994      Int iDiff = (Int)( pOrgInterlaced[x] - pRecInterlaced[x] );
2995      uiSSDV_in   += iDiff * iDiff;
2996    }
2997    pOrgInterlaced += iStride;
2998    pRecInterlaced += iStride;
2999  }
3000 
3001  Int maxvalY = 255 << (g_bitDepthY-8);
3002  Int maxvalC = 255 << (g_bitDepthC-8);
3003  Double fRefValueY = (Double) maxvalY * maxvalY * iSize*2;
3004  Double fRefValueC = (Double) maxvalC * maxvalC * iSize*2 / 4.0;
3005  dYPSNR_in            = ( uiSSDY_in ? 10.0 * log10( fRefValueY / (Double)uiSSDY_in ) : 99.99 );
3006  dUPSNR_in            = ( uiSSDU_in ? 10.0 * log10( fRefValueC / (Double)uiSSDU_in ) : 99.99 );
3007  dVPSNR_in            = ( uiSSDV_in ? 10.0 * log10( fRefValueC / (Double)uiSSDV_in ) : 99.99 );
3008 
3009  /* calculate the size of the access unit, excluding:
3010   *  - any AnnexB contributions (start_code_prefix, zero_byte, etc.,)
3011   *  - SEI NAL units
3012   */
3013  UInt numRBSPBytes = 0;
3014  for (AccessUnit::const_iterator it = accessUnit.begin(); it != accessUnit.end(); it++)
3015  {
3016    UInt numRBSPBytes_nal = UInt((*it)->m_nalUnitData.str().size());
3017   
3018    if ((*it)->m_nalUnitType != NAL_UNIT_PREFIX_SEI && (*it)->m_nalUnitType != NAL_UNIT_SUFFIX_SEI)
3019      numRBSPBytes += numRBSPBytes_nal;
3020  }
3021 
3022  UInt uibits = numRBSPBytes * 8 ;
3023 
3024  //===== add PSNR =====
3025  m_gcAnalyzeAll_in.addResult (dYPSNR_in, dUPSNR_in, dVPSNR_in, (Double)uibits);
3026 
3027  printf("\n                                      Interlaced frame %d: [Y %6.4lf dB    U %6.4lf dB    V %6.4lf dB]", pcPicOrgBottom->getPOC()/2 , dYPSNR_in, dUPSNR_in, dVPSNR_in );
3028 
3029  pcOrgInterlaced->destroy();
3030  delete pcOrgInterlaced;
3031  pcRecInterlaced->destroy();
3032  delete pcRecInterlaced;
3033#endif
3034}
3035/** Function for deciding the nal_unit_type.
3036 * \param pocCurr POC of the current picture
3037 * \returns the nal unit type of the picture
3038 * This function checks the configuration and returns the appropriate nal_unit_type for the picture.
3039 */
3040NalUnitType TEncGOP::getNalUnitType(Int pocCurr, Int lastIDR, Bool isField)
3041{
3042  if (pocCurr == 0)
3043  {
3044    return NAL_UNIT_CODED_SLICE_IDR_W_RADL;
3045  }
3046#if EFFICIENT_FIELD_IRAP
3047  if(isField && pocCurr == 1)
3048  {
3049    // to avoid the picture becoming an IRAP
3050    return NAL_UNIT_CODED_SLICE_TRAIL_R;
3051  }
3052#endif
3053
3054#if ALLOW_RECOVERY_POINT_AS_RAP
3055  if(m_pcCfg->getDecodingRefreshType() != 3 && (pocCurr - isField) % m_pcCfg->getIntraPeriod() == 0)
3056#else
3057  if ((pocCurr - isField) % m_pcCfg->getIntraPeriod() == 0)
3058#endif
3059  {
3060    if (m_pcCfg->getDecodingRefreshType() == 1)
3061    {
3062      return NAL_UNIT_CODED_SLICE_CRA;
3063    }
3064    else if (m_pcCfg->getDecodingRefreshType() == 2)
3065    {
3066      return NAL_UNIT_CODED_SLICE_IDR_W_RADL;
3067    }
3068  }
3069  if(m_pocCRA>0)
3070  {
3071    if(pocCurr<m_pocCRA)
3072    {
3073      // All leading pictures are being marked as TFD pictures here since current encoder uses all
3074      // reference pictures while encoding leading pictures. An encoder can ensure that a leading
3075      // picture can be still decodable when random accessing to a CRA/CRANT/BLA/BLANT picture by
3076      // controlling the reference pictures used for encoding that leading picture. Such a leading
3077      // picture need not be marked as a TFD picture.
3078      return NAL_UNIT_CODED_SLICE_RASL_R;
3079    }
3080  }
3081  if (lastIDR>0)
3082  {
3083    if (pocCurr < lastIDR)
3084    {
3085      return NAL_UNIT_CODED_SLICE_RADL_R;
3086    }
3087  }
3088  return NAL_UNIT_CODED_SLICE_TRAIL_R;
3089}
3090
3091Double TEncGOP::xCalculateRVM()
3092{
3093  Double dRVM = 0;
3094 
3095  if( m_pcCfg->getGOPSize() == 1 && m_pcCfg->getIntraPeriod() != 1 && m_pcCfg->getFramesToBeEncoded() > RVM_VCEGAM10_M * 2 )
3096  {
3097    // calculate RVM only for lowdelay configurations
3098    std::vector<Double> vRL , vB;
3099    size_t N = m_vRVM_RP.size();
3100    vRL.resize( N );
3101    vB.resize( N );
3102   
3103    Int i;
3104    Double dRavg = 0 , dBavg = 0;
3105    vB[RVM_VCEGAM10_M] = 0;
3106    for( i = RVM_VCEGAM10_M + 1 ; i < N - RVM_VCEGAM10_M + 1 ; i++ )
3107    {
3108      vRL[i] = 0;
3109      for( Int j = i - RVM_VCEGAM10_M ; j <= i + RVM_VCEGAM10_M - 1 ; j++ )
3110        vRL[i] += m_vRVM_RP[j];
3111      vRL[i] /= ( 2 * RVM_VCEGAM10_M );
3112      vB[i] = vB[i-1] + m_vRVM_RP[i] - vRL[i];
3113      dRavg += m_vRVM_RP[i];
3114      dBavg += vB[i];
3115    }
3116   
3117    dRavg /= ( N - 2 * RVM_VCEGAM10_M );
3118    dBavg /= ( N - 2 * RVM_VCEGAM10_M );
3119   
3120    Double dSigamB = 0;
3121    for( i = RVM_VCEGAM10_M + 1 ; i < N - RVM_VCEGAM10_M + 1 ; i++ )
3122    {
3123      Double tmp = vB[i] - dBavg;
3124      dSigamB += tmp * tmp;
3125    }
3126    dSigamB = sqrt( dSigamB / ( N - 2 * RVM_VCEGAM10_M ) );
3127   
3128    Double f = sqrt( 12.0 * ( RVM_VCEGAM10_M - 1 ) / ( RVM_VCEGAM10_M + 1 ) );
3129   
3130    dRVM = dSigamB / dRavg * f;
3131  }
3132 
3133  return( dRVM );
3134}
3135
3136/** Attaches the input bitstream to the stream in the output NAL unit
3137    Updates rNalu to contain concatenated bitstream. rpcBitstreamRedirect is cleared at the end of this function call.
3138 *  \param codedSliceData contains the coded slice data (bitstream) to be concatenated to rNalu
3139 *  \param rNalu          target NAL unit
3140 */
3141Void TEncGOP::xAttachSliceDataToNalUnit (OutputNALUnit& rNalu, TComOutputBitstream*& codedSliceData)
3142{
3143  // Byte-align
3144  rNalu.m_Bitstream.writeByteAlignment();   // Slice header byte-alignment
3145
3146  // Perform bitstream concatenation
3147  if (codedSliceData->getNumberOfWrittenBits() > 0)
3148    {
3149    rNalu.m_Bitstream.addSubstream(codedSliceData);
3150  }
3151
3152  m_pcEntropyCoder->setBitstream(&rNalu.m_Bitstream);
3153
3154  codedSliceData->clear();
3155}
3156
3157// Function will arrange the long-term pictures in the decreasing order of poc_lsb_lt,
3158// and among the pictures with the same lsb, it arranges them in increasing delta_poc_msb_cycle_lt value
3159Void TEncGOP::arrangeLongtermPicturesInRPS(TComSlice *pcSlice, TComList<TComPic*>& rcListPic)
3160{
3161  TComReferencePictureSet *rps = pcSlice->getRPS();
3162  if(!rps->getNumberOfLongtermPictures())
3163  {
3164    return;
3165  }
3166
3167  // Arrange long-term reference pictures in the correct order of LSB and MSB,
3168  // and assign values for pocLSBLT and MSB present flag
3169  Int longtermPicsPoc[MAX_NUM_REF_PICS], longtermPicsLSB[MAX_NUM_REF_PICS], indices[MAX_NUM_REF_PICS];
3170  Int longtermPicsMSB[MAX_NUM_REF_PICS];
3171  Bool mSBPresentFlag[MAX_NUM_REF_PICS];
3172  ::memset(longtermPicsPoc, 0, sizeof(longtermPicsPoc));    // Store POC values of LTRP
3173  ::memset(longtermPicsLSB, 0, sizeof(longtermPicsLSB));    // Store POC LSB values of LTRP
3174  ::memset(longtermPicsMSB, 0, sizeof(longtermPicsMSB));    // Store POC LSB values of LTRP
3175  ::memset(indices        , 0, sizeof(indices));            // Indices to aid in tracking sorted LTRPs
3176  ::memset(mSBPresentFlag , 0, sizeof(mSBPresentFlag));     // Indicate if MSB needs to be present
3177
3178  // Get the long-term reference pictures
3179  Int offset = rps->getNumberOfNegativePictures() + rps->getNumberOfPositivePictures();
3180  Int i, ctr = 0;
3181  Int maxPicOrderCntLSB = 1 << pcSlice->getSPS()->getBitsForPOC();
3182  for(i = rps->getNumberOfPictures() - 1; i >= offset; i--, ctr++)
3183  {
3184    longtermPicsPoc[ctr] = rps->getPOC(i);                                  // LTRP POC
3185    longtermPicsLSB[ctr] = getLSB(longtermPicsPoc[ctr], maxPicOrderCntLSB); // LTRP POC LSB
3186    indices[ctr]      = i; 
3187    longtermPicsMSB[ctr] = longtermPicsPoc[ctr] - longtermPicsLSB[ctr];
3188  }
3189  Int numLongPics = rps->getNumberOfLongtermPictures();
3190  assert(ctr == numLongPics);
3191
3192  // Arrange pictures in decreasing order of MSB;
3193  for(i = 0; i < numLongPics; i++)
3194  {
3195    for(Int j = 0; j < numLongPics - 1; j++)
3196    {
3197      if(longtermPicsMSB[j] < longtermPicsMSB[j+1])
3198      {
3199        std::swap(longtermPicsPoc[j], longtermPicsPoc[j+1]);
3200        std::swap(longtermPicsLSB[j], longtermPicsLSB[j+1]);
3201        std::swap(longtermPicsMSB[j], longtermPicsMSB[j+1]);
3202        std::swap(indices[j]        , indices[j+1]        );
3203      }
3204    }
3205  }
3206
3207  for(i = 0; i < numLongPics; i++)
3208  {
3209    // Check if MSB present flag should be enabled.
3210    // Check if the buffer contains any pictures that have the same LSB.
3211    TComList<TComPic*>::iterator  iterPic = rcListPic.begin(); 
3212    TComPic*                      pcPic;
3213    while ( iterPic != rcListPic.end() )
3214    {
3215      pcPic = *iterPic;
3216      if( (getLSB(pcPic->getPOC(), maxPicOrderCntLSB) == longtermPicsLSB[i])   &&     // Same LSB
3217                                      (pcPic->getSlice(0)->isReferenced())     &&    // Reference picture
3218                                        (pcPic->getPOC() != longtermPicsPoc[i])    )  // Not the LTRP itself
3219      {
3220        mSBPresentFlag[i] = true;
3221        break;
3222      }
3223      iterPic++;     
3224    }
3225  }
3226
3227  // tempArray for usedByCurr flag
3228  Bool tempArray[MAX_NUM_REF_PICS]; ::memset(tempArray, 0, sizeof(tempArray));
3229  for(i = 0; i < numLongPics; i++)
3230  {
3231    tempArray[i] = rps->getUsed(indices[i]);
3232  }
3233  // Now write the final values;
3234  ctr = 0;
3235  Int currMSB = 0, currLSB = 0;
3236  // currPicPoc = currMSB + currLSB
3237  currLSB = getLSB(pcSlice->getPOC(), maxPicOrderCntLSB); 
3238  currMSB = pcSlice->getPOC() - currLSB;
3239
3240  for(i = rps->getNumberOfPictures() - 1; i >= offset; i--, ctr++)
3241  {
3242    rps->setPOC                   (i, longtermPicsPoc[ctr]);
3243    rps->setDeltaPOC              (i, - pcSlice->getPOC() + longtermPicsPoc[ctr]);
3244    rps->setUsed                  (i, tempArray[ctr]);
3245    rps->setPocLSBLT              (i, longtermPicsLSB[ctr]);
3246    rps->setDeltaPocMSBCycleLT    (i, (currMSB - (longtermPicsPoc[ctr] - longtermPicsLSB[ctr])) / maxPicOrderCntLSB);
3247    rps->setDeltaPocMSBPresentFlag(i, mSBPresentFlag[ctr]);     
3248
3249    assert(rps->getDeltaPocMSBCycleLT(i) >= 0);   // Non-negative value
3250  }
3251  for(i = rps->getNumberOfPictures() - 1, ctr = 1; i >= offset; i--, ctr++)
3252  {
3253    for(Int j = rps->getNumberOfPictures() - 1 - ctr; j >= offset; j--)
3254    {
3255      // Here at the encoder we know that we have set the full POC value for the LTRPs, hence we
3256      // don't have to check the MSB present flag values for this constraint.
3257      assert( rps->getPOC(i) != rps->getPOC(j) ); // If assert fails, LTRP entry repeated in RPS!!!
3258    }
3259  }
3260}
3261
3262/** Function for finding the position to insert the first of APS and non-nested BP, PT, DU info SEI messages.
3263 * \param accessUnit Access Unit of the current picture
3264 * This function finds the position to insert the first of APS and non-nested BP, PT, DU info SEI messages.
3265 */
3266Int TEncGOP::xGetFirstSeiLocation(AccessUnit &accessUnit)
3267{
3268  // Find the location of the first SEI message
3269  AccessUnit::iterator it;
3270  Int seiStartPos = 0;
3271  for(it = accessUnit.begin(); it != accessUnit.end(); it++, seiStartPos++)
3272  {
3273     if ((*it)->isSei() || (*it)->isVcl())
3274     {
3275       break;
3276     }               
3277  }
3278//  assert(it != accessUnit.end());  // Triggers with some legit configurations
3279  return seiStartPos;
3280}
3281
3282Void TEncGOP::dblMetric( TComPic* pcPic, UInt uiNumSlices )
3283{
3284  TComPicYuv* pcPicYuvRec = pcPic->getPicYuvRec();
3285  Pel* Rec    = pcPicYuvRec->getLumaAddr( 0 );
3286  Pel* tempRec = Rec;
3287  Int  stride = pcPicYuvRec->getStride();
3288  UInt log2maxTB = pcPic->getSlice(0)->getSPS()->getQuadtreeTULog2MaxSize();
3289  UInt maxTBsize = (1<<log2maxTB);
3290  const UInt minBlockArtSize = 8;
3291  const UInt picWidth = pcPicYuvRec->getWidth();
3292  const UInt picHeight = pcPicYuvRec->getHeight();
3293  const UInt noCol = (picWidth>>log2maxTB);
3294  const UInt noRows = (picHeight>>log2maxTB);
3295  assert(noCol > 1);
3296  assert(noRows > 1);
3297  UInt64 *colSAD = (UInt64*)malloc(noCol*sizeof(UInt64));
3298  UInt64 *rowSAD = (UInt64*)malloc(noRows*sizeof(UInt64));
3299  UInt colIdx = 0;
3300  UInt rowIdx = 0;
3301  Pel p0, p1, p2, q0, q1, q2;
3302 
3303  Int qp = pcPic->getSlice(0)->getSliceQp();
3304  Int bitdepthScale = 1 << (g_bitDepthY-8);
3305  Int beta = TComLoopFilter::getBeta( qp ) * bitdepthScale;
3306  const Int thr2 = (beta>>2);
3307  const Int thr1 = 2*bitdepthScale;
3308  UInt a = 0;
3309 
3310  memset(colSAD, 0, noCol*sizeof(UInt64));
3311  memset(rowSAD, 0, noRows*sizeof(UInt64));
3312 
3313  if (maxTBsize > minBlockArtSize)
3314  {
3315    // Analyze vertical artifact edges
3316    for(Int c = maxTBsize; c < picWidth; c += maxTBsize)
3317    {
3318      for(Int r = 0; r < picHeight; r++)
3319      {
3320        p2 = Rec[c-3];
3321        p1 = Rec[c-2];
3322        p0 = Rec[c-1];
3323        q0 = Rec[c];
3324        q1 = Rec[c+1];
3325        q2 = Rec[c+2];
3326        a = ((abs(p2-(p1<<1)+p0)+abs(q0-(q1<<1)+q2))<<1);
3327        if ( thr1 < a && a < thr2)
3328        {
3329          colSAD[colIdx] += abs(p0 - q0);
3330        }
3331        Rec += stride;
3332      }
3333      colIdx++;
3334      Rec = tempRec;
3335    }
3336   
3337    // Analyze horizontal artifact edges
3338    for(Int r = maxTBsize; r < picHeight; r += maxTBsize)
3339    {
3340      for(Int c = 0; c < picWidth; c++)
3341      {
3342        p2 = Rec[c + (r-3)*stride];
3343        p1 = Rec[c + (r-2)*stride];
3344        p0 = Rec[c + (r-1)*stride];
3345        q0 = Rec[c + r*stride];
3346        q1 = Rec[c + (r+1)*stride];
3347        q2 = Rec[c + (r+2)*stride];
3348        a = ((abs(p2-(p1<<1)+p0)+abs(q0-(q1<<1)+q2))<<1);
3349        if (thr1 < a && a < thr2)
3350        {
3351          rowSAD[rowIdx] += abs(p0 - q0);
3352        }
3353      }
3354      rowIdx++;
3355    }
3356  }
3357 
3358  UInt64 colSADsum = 0;
3359  UInt64 rowSADsum = 0;
3360  for(Int c = 0; c < noCol-1; c++)
3361  {
3362    colSADsum += colSAD[c];
3363  }
3364  for(Int r = 0; r < noRows-1; r++)
3365  {
3366    rowSADsum += rowSAD[r];
3367  }
3368 
3369  colSADsum <<= 10;
3370  rowSADsum <<= 10;
3371  colSADsum /= (noCol-1);
3372  colSADsum /= picHeight;
3373  rowSADsum /= (noRows-1);
3374  rowSADsum /= picWidth;
3375 
3376  UInt64 avgSAD = ((colSADsum + rowSADsum)>>1);
3377  avgSAD >>= (g_bitDepthY-8);
3378 
3379  if ( avgSAD > 2048 )
3380  {
3381    avgSAD >>= 9;
3382    Int offset = Clip3(2,6,(Int)avgSAD);
3383    for (Int i=0; i<uiNumSlices; i++)
3384    {
3385      pcPic->getSlice(i)->setDeblockingFilterOverrideFlag(true);
3386      pcPic->getSlice(i)->setDeblockingFilterDisable(false);
3387      pcPic->getSlice(i)->setDeblockingFilterBetaOffsetDiv2( offset );
3388      pcPic->getSlice(i)->setDeblockingFilterTcOffsetDiv2( offset );
3389    }
3390  }
3391  else
3392  {
3393    for (Int i=0; i<uiNumSlices; i++)
3394    {
3395      pcPic->getSlice(i)->setDeblockingFilterOverrideFlag(false);
3396      pcPic->getSlice(i)->setDeblockingFilterDisable(        pcPic->getSlice(i)->getPPS()->getPicDisableDeblockingFilterFlag() );
3397      pcPic->getSlice(i)->setDeblockingFilterBetaOffsetDiv2( pcPic->getSlice(i)->getPPS()->getDeblockingFilterBetaOffsetDiv2() );
3398      pcPic->getSlice(i)->setDeblockingFilterTcOffsetDiv2(   pcPic->getSlice(i)->getPPS()->getDeblockingFilterTcOffsetDiv2()   );
3399    }
3400  }
3401 
3402  free(colSAD);
3403  free(rowSAD);
3404}
3405
3406#if H_MV
3407Void TEncGOP::xSetRefPicListModificationsMv( std::vector<TComPic*> tempPicLists[2], TComSlice* pcSlice, UInt iGOPid )
3408{ 
3409 
3410  if( pcSlice->getSliceType() == I_SLICE || !(pcSlice->getPPS()->getListsModificationPresentFlag()) || pcSlice->getNumActiveRefLayerPics() == 0 )
3411  {
3412    return;
3413  }
3414 
3415  GOPEntry ge = m_pcCfg->getGOPEntry( (pcSlice->getRapPicFlag() && ( pcSlice->getLayerId( ) > 0) ) ? MAX_GOP : iGOPid );
3416  assert( ge.m_numActiveRefLayerPics == pcSlice->getNumActiveRefLayerPics() ); 
3417
3418  Int numPicsInTempList     = pcSlice->getNumRpsCurrTempList(); 
3419
3420  // GT: check if SliceType should be checked here.
3421  for (Int li = 0; li < 2; li ++) // Loop over lists L0 and L1
3422  {
3423    Int numPicsInFinalRefList = pcSlice->getNumRefIdx( ( li == 0 ) ? REF_PIC_LIST_0 : REF_PIC_LIST_1 ); 
3424           
3425    Int finalIdxToTempIdxMap[16];
3426    for( Int k = 0; k < 16; k++ )
3427    {
3428      finalIdxToTempIdxMap[ k ] = -1;
3429    }
3430
3431    Bool isModified = false;
3432    if ( numPicsInTempList > 1 )
3433    {
3434      for( Int k = 0; k < pcSlice->getNumActiveRefLayerPics(); k++ )
3435      {
3436        // get position in temp. list
3437        Int refPicLayerId = pcSlice->getRefPicLayerId(k);
3438        Int idxInTempList = 0; 
3439        for (; idxInTempList < numPicsInTempList; idxInTempList++)
3440        {
3441          if ( (tempPicLists[li][idxInTempList])->getLayerId() == refPicLayerId )
3442          {
3443            break; 
3444          }
3445        }
3446
3447        Int idxInFinalList = ge.m_interViewRefPosL[ li ][ k ];
3448       
3449        // Add negative from behind
3450        idxInFinalList = ( idxInFinalList < 0 )? ( numPicsInTempList + idxInFinalList ) : idxInFinalList; 
3451       
3452        Bool curIsModified = ( idxInFinalList != idxInTempList ) && ( ( idxInTempList < numPicsInFinalRefList ) || ( idxInFinalList < numPicsInFinalRefList ) ) ;
3453        if ( curIsModified )
3454        {
3455          isModified = true; 
3456          assert( finalIdxToTempIdxMap[ idxInFinalList ] == -1 ); // Assert when two inter layer reference pictures are sorted to the same position
3457        }
3458        finalIdxToTempIdxMap[ idxInFinalList ] = idxInTempList;             
3459      }
3460    }
3461
3462    TComRefPicListModification* refPicListModification = pcSlice->getRefPicListModification();
3463    refPicListModification->setRefPicListModificationFlagL( li, isModified ); 
3464
3465    if( isModified )
3466    {
3467      Int refIdx = 0;
3468     
3469      for( Int i = 0; i < numPicsInFinalRefList; i++ )
3470      {
3471        if( finalIdxToTempIdxMap[i] >= 0 ) 
3472        {
3473          refPicListModification->setRefPicSetIdxL( li, i, finalIdxToTempIdxMap[i] );
3474        }
3475        else
3476        {
3477          ///* Fill gaps with temporal references *///
3478          // Forward inter layer reference pictures
3479          while( ( refIdx < numPicsInTempList ) && ( tempPicLists[li][refIdx]->getLayerId() != getLayerId())  )
3480          {
3481            refIdx++; 
3482          }
3483          refPicListModification->setRefPicSetIdxL( li, i, refIdx );
3484          refIdx++;
3485        }
3486      }
3487    }
3488  }
3489}
3490#endif
3491//! \}
Note: See TracBrowser for help on using the repository browser.