source: 3DVCSoftware/trunk/source/Lib/TLibEncoder/TEncGOP.cpp @ 1100

Last change on this file since 1100 was 1084, checked in by tech, 10 years ago

Merged branches/HTM-12.1-dev0@1083.

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