source: 3DVCSoftware/branches/HTM-10.0-Fix/source/App/TAppEncoder/TAppEncTop.cpp @ 860

Last change on this file since 860 was 833, checked in by tech, 11 years ago

Merged 9.3-dev0@831.

  • Property svn:eol-style set to native
File size: 67.6 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2013, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TAppEncTop.cpp
35    \brief    Encoder application class
36*/
37
38#include <list>
39#include <fstream>
40#include <stdlib.h>
41#include <stdio.h>
42#include <fcntl.h>
43#include <assert.h>
44
45#include "TAppEncTop.h"
46#include "TLibEncoder/AnnexBwrite.h"
47
48using namespace std;
49
50//! \ingroup TAppEncoder
51//! \{
52
53// ====================================================================================================================
54// Constructor / destructor / initialization / destroy
55// ====================================================================================================================
56
57TAppEncTop::TAppEncTop()
58{
59#if !H_MV
60  m_iFrameRcvd = 0;
61#endif
62  m_totalBytes = 0;
63  m_essentialBytes = 0;
64}
65
66TAppEncTop::~TAppEncTop()
67{
68}
69
70Void TAppEncTop::xInitLibCfg()
71{
72#if H_MV
73  TComVPS& vps = m_vps;   
74#else
75  TComVPS vps;
76#endif
77 
78#if H_3D
79  vps.createCamPars(m_iNumberOfViews);
80  TComDLT& dlt = m_dlt;
81#endif
82
83#if H_MV
84  Int maxTempLayer = -1; 
85  for (Int j = 0; j < m_numberOfLayers; j++)
86  {
87    maxTempLayer = max( m_maxTempLayerMvc[ j ], maxTempLayer ); 
88  }
89
90  vps.setMaxTLayers                       ( maxTempLayer );
91  if ( maxTempLayer )
92  {
93    vps.setTemporalNestingFlag(true);
94  }
95  vps.setMaxLayersMinus1( m_numberOfLayers - 1);
96  for(Int i = 0; i < MAX_TLAYER; i++)
97  {
98    Int maxNumReOrderPics  = 0; 
99    Int maxDecPicBuffering = 0;
100    for (Int j = 0; j < m_numberOfLayers; j++)
101    {
102      maxNumReOrderPics  = max( maxNumReOrderPics,  m_numReorderPicsMvc    [ j ][ i ] );     
103      maxDecPicBuffering = max( maxDecPicBuffering, m_maxDecPicBufferingMvc[ j ][ i ] );     
104    }
105
106    vps.setNumReorderPics                 ( maxNumReOrderPics  ,i );
107    vps.setMaxDecPicBuffering             ( maxDecPicBuffering ,i );
108  }
109#else
110  vps.setMaxTLayers                       ( m_maxTempLayer );
111  if (m_maxTempLayer == 1)
112  {
113    vps.setTemporalNestingFlag(true);
114  }
115  vps.setMaxLayers                        ( 1 );
116  for(Int i = 0; i < MAX_TLAYER; i++)
117  {
118    vps.setNumReorderPics                 ( m_numReorderPics[i], i );
119    vps.setMaxDecPicBuffering             ( m_maxDecPicBuffering[i], i );
120  }
121#endif
122#if H_MV
123  xSetLayerIds             ( vps );   
124  xSetDimensionIdAndLength ( vps );
125  xSetDependencies( vps );
126  xSetProfileTierLevel     ( vps ); 
127  xSetRepFormat            ( vps ); 
128  xSetLayerSets            ( vps ); 
129  xSetVPSVUI               ( vps ); 
130#if H_3D
131  xSetVPSExtension2        ( vps ); 
132  m_ivPicLists.setVPS      ( &vps );
133  xDeriveDltArray          ( vps, dlt );
134#endif
135
136
137  for(Int layerIdInVps = 0; layerIdInVps < m_numberOfLayers; layerIdInVps++)
138  {
139    m_frameRcvd                 .push_back(0);
140    m_acTEncTopList             .push_back(new TEncTop); 
141    m_acTVideoIOYuvInputFileList.push_back(new TVideoIOYuv);
142    m_acTVideoIOYuvReconFileList.push_back(new TVideoIOYuv);
143    m_picYuvRec                 .push_back(new TComList<TComPicYuv*>) ;
144    m_ivPicLists.push_back( m_acTEncTopList[ layerIdInVps ]->getListPic()  ); 
145    TEncTop& m_cTEncTop = *m_acTEncTopList[ layerIdInVps ];  // It is not a member, but this name helps avoiding code duplication !!!
146
147    Int layerId = vps.getLayerIdInNuh( layerIdInVps );
148    m_cTEncTop.setLayerIdInVps                 ( layerIdInVps ); 
149    m_cTEncTop.setLayerId                      ( layerId );   
150    m_cTEncTop.setViewId                       ( vps.getViewId      (  layerId ) );
151    m_cTEncTop.setViewIndex                    ( vps.getViewIndex   (  layerId ) );
152#if H_3D
153    Bool isDepth = ( vps.getDepthId     ( layerId ) != 0 ) ;
154    m_cTEncTop.setIsDepth                      ( isDepth );
155    //====== Camera Parameters =========
156    m_cTEncTop.setCameraParameters             ( &m_cCameraData );     
157    m_cTEncTop.setCamParPrecision              ( m_cCameraData.getCamParsCodedPrecision  () );
158    m_cTEncTop.setCamParInSliceHeader          ( m_cCameraData.getVaryingCameraParameters() );
159    m_cTEncTop.setCodedScale                   ( m_cCameraData.getCodedScale             () );
160    m_cTEncTop.setCodedOffset                  ( m_cCameraData.getCodedOffset            () );
161#if H_3D_VSO
162    //====== VSO =========
163    m_cTEncTop.setRenderModelParameters        ( &m_cRenModStrParser ); 
164    m_cTEncTop.setForceLambdaScaleVSO          ( isDepth ? m_bForceLambdaScaleVSO : false );
165    m_cTEncTop.setLambdaScaleVSO               ( isDepth ? m_dLambdaScaleVSO      : 1     );
166    m_cTEncTop.setVSOMode                      ( isDepth ? m_uiVSOMode            : 0     );
167
168    m_cTEncTop.setAllowNegDist                 ( isDepth ? m_bAllowNegDist        : false );
169
170    // SAIT_VSO_EST_A0033
171    m_cTEncTop.setUseEstimatedVSD              ( isDepth ? m_bUseEstimatedVSD     : false );
172
173    // LGE_WVSO_A0119
174    m_cTEncTop.setUseWVSO                      ( isDepth ? m_bUseWVSO             : false );   
175    m_cTEncTop.setVSOWeight                    ( isDepth ? m_iVSOWeight           : 0     );
176    m_cTEncTop.setVSDWeight                    ( isDepth ? m_iVSDWeight           : 0     );
177    m_cTEncTop.setDWeight                      ( isDepth ? m_iDWeight             : 0     );
178#endif // H_3D_VSO
179#if H_3D_ARP
180    //====== Advanced Inter-view Residual Prediction =========
181    m_cTEncTop.setUseAdvRP                     ( ( isDepth || 0==layerIdInVps ) ? 0 : m_uiUseAdvResPred );
182    m_cTEncTop.setARPStepNum                   ( ( isDepth || 0==layerIdInVps ) ? 1 : H_3D_ARP_WFNR     );
183#endif
184#if H_3D_SPIVMP
185    m_cTEncTop.setSubPULog2Size                 (( isDepth || 0==layerIdInVps ) ? 0 : m_iSubPULog2Size   );
186#endif
187#if QC_SPIVMP_MPI_G0119
188    m_cTEncTop.setSubPUMPILog2Size              ( !isDepth ? 0 : m_iSubPUMPILog2Size   );
189#endif
190#if H_3D_IC
191    m_cTEncTop.setUseIC                        ( vps.getViewIndex( layerId ) == 0 || isDepth ? false : m_abUseIC );
192#endif
193  //========== Depth intra modes ==========
194#if H_3D_DIM
195    m_cTEncTop.setUseDMM                       ( isDepth ? m_useDMM               : false );
196    m_cTEncTop.setUseSDC                       ( isDepth ? m_useSDC               : false );
197    m_cTEncTop.setUseDLT                       ( isDepth ? m_useDLT               : false );
198#endif
199#if H_3D_QTLPC
200    m_cTEncTop.setUseQTL                       ( isDepth ? m_bUseQTL               : false );
201    m_cTEncTop.setUsePC                        ( isDepth ? m_bUsePC                : false );
202#endif
203    //====== Depth Inter SDC =========
204#if H_3D_INTER_SDC
205    m_cTEncTop.setInterSDCEnable               ( isDepth ? m_bDepthInterSDCFlag    : false );
206#endif
207#if H_3D_DBBP
208    m_cTEncTop.setUseDBBP                      ( vps.getViewIndex( layerId ) == 0 || isDepth ? false : m_bUseDBBP );
209#endif
210#if H_3D_IV_MERGE
211    m_cTEncTop.setUseMPI               ( isDepth ? m_bMPIFlag    : false );
212#endif
213#endif // H_3D
214
215    m_cTEncTop.setIvPicLists                   ( &m_ivPicLists ); 
216#endif  // H_MV
217  m_cTEncTop.setVPS(&vps);
218
219#if H_3D
220  m_cTEncTop.setDLT(&dlt);
221#endif
222
223  m_cTEncTop.setProfile(m_profile);
224  m_cTEncTop.setLevel(m_levelTier, m_level);
225  m_cTEncTop.setProgressiveSourceFlag(m_progressiveSourceFlag);
226  m_cTEncTop.setInterlacedSourceFlag(m_interlacedSourceFlag);
227  m_cTEncTop.setNonPackedConstraintFlag(m_nonPackedConstraintFlag);
228  m_cTEncTop.setFrameOnlyConstraintFlag(m_frameOnlyConstraintFlag);
229 
230  m_cTEncTop.setFrameRate                    ( m_iFrameRate );
231  m_cTEncTop.setFrameSkip                    ( m_FrameSkip );
232  m_cTEncTop.setSourceWidth                  ( m_iSourceWidth );
233  m_cTEncTop.setSourceHeight                 ( m_iSourceHeight );
234  m_cTEncTop.setConformanceWindow            ( m_confLeft, m_confRight, m_confTop, m_confBottom );
235  m_cTEncTop.setFramesToBeEncoded            ( m_framesToBeEncoded );
236 
237  //====== Coding Structure ========
238#if H_MV
239  m_cTEncTop.setIntraPeriod                  ( m_iIntraPeriod[ layerIdInVps ] );
240#else
241  m_cTEncTop.setIntraPeriod                  ( m_iIntraPeriod );
242#endif
243  m_cTEncTop.setDecodingRefreshType          ( m_iDecodingRefreshType );
244  m_cTEncTop.setGOPSize                      ( m_iGOPSize );
245#if H_MV
246m_cTEncTop.setGopList                      ( m_GOPListMvc[layerIdInVps] );
247  m_cTEncTop.setExtraRPSs                    ( m_extraRPSsMvc[layerIdInVps] );
248  for(Int i = 0; i < MAX_TLAYER; i++)
249  {
250    m_cTEncTop.setNumReorderPics             ( m_numReorderPicsMvc[layerIdInVps][i], i );
251    m_cTEncTop.setMaxDecPicBuffering         ( m_maxDecPicBufferingMvc[layerIdInVps][i], i );
252  }
253#else
254  m_cTEncTop.setGopList                      ( m_GOPList );
255  m_cTEncTop.setExtraRPSs                    ( m_extraRPSs );
256  for(Int i = 0; i < MAX_TLAYER; i++)
257  {
258    m_cTEncTop.setNumReorderPics             ( m_numReorderPics[i], i );
259    m_cTEncTop.setMaxDecPicBuffering         ( m_maxDecPicBuffering[i], i );
260  }
261#endif
262  for( UInt uiLoop = 0; uiLoop < MAX_TLAYER; ++uiLoop )
263  {
264    m_cTEncTop.setLambdaModifier( uiLoop, m_adLambdaModifier[ uiLoop ] );
265  }
266#if H_MV
267  m_cTEncTop.setQP                           ( m_iQP[layerIdInVps] );
268#else
269  m_cTEncTop.setQP                           ( m_iQP );
270#endif
271
272  m_cTEncTop.setPad                          ( m_aiPad );
273
274#if H_MV
275  m_cTEncTop.setMaxTempLayer                 ( m_maxTempLayerMvc[layerIdInVps] );
276#else
277  m_cTEncTop.setMaxTempLayer                 ( m_maxTempLayer );
278#endif
279  m_cTEncTop.setUseAMP( m_enableAMP );
280 
281  //===== Slice ========
282 
283  //====== Loop/Deblock Filter ========
284#if H_MV
285  m_cTEncTop.setLoopFilterDisable            ( m_bLoopFilterDisable[layerIdInVps]);
286#else
287  m_cTEncTop.setLoopFilterDisable            ( m_bLoopFilterDisable       );
288#endif
289  m_cTEncTop.setLoopFilterOffsetInPPS        ( m_loopFilterOffsetInPPS );
290  m_cTEncTop.setLoopFilterBetaOffset         ( m_loopFilterBetaOffsetDiv2  );
291  m_cTEncTop.setLoopFilterTcOffset           ( m_loopFilterTcOffsetDiv2    );
292  m_cTEncTop.setDeblockingFilterControlPresent( m_DeblockingFilterControlPresent);
293  m_cTEncTop.setDeblockingFilterMetric       ( m_DeblockingFilterMetric );
294
295  //====== Motion search ========
296  m_cTEncTop.setFastSearch                   ( m_iFastSearch  );
297  m_cTEncTop.setSearchRange                  ( m_iSearchRange );
298  m_cTEncTop.setBipredSearchRange            ( m_bipredSearchRange );
299
300  //====== Quality control ========
301  m_cTEncTop.setMaxDeltaQP                   ( m_iMaxDeltaQP  );
302  m_cTEncTop.setMaxCuDQPDepth                ( m_iMaxCuDQPDepth  );
303
304  m_cTEncTop.setChromaCbQpOffset               ( m_cbQpOffset     );
305  m_cTEncTop.setChromaCrQpOffset            ( m_crQpOffset  );
306
307#if ADAPTIVE_QP_SELECTION
308  m_cTEncTop.setUseAdaptQpSelect             ( m_bUseAdaptQpSelect   );
309#endif
310
311  Int lowestQP;
312  lowestQP =  - 6*(g_bitDepthY - 8); // XXX: check
313
314#if H_MV
315  if ((m_iMaxDeltaQP == 0 ) && (m_iQP[layerIdInVps] == lowestQP) && (m_useLossless == true))
316#else
317  if ((m_iMaxDeltaQP == 0 ) && (m_iQP == lowestQP) && (m_useLossless == true))
318#endif
319  {
320    m_bUseAdaptiveQP = false;
321  }
322  m_cTEncTop.setUseAdaptiveQP                ( m_bUseAdaptiveQP  );
323  m_cTEncTop.setQPAdaptationRange            ( m_iQPAdaptationRange );
324 
325  //====== Tool list ========
326  m_cTEncTop.setUseSBACRD                    ( m_bUseSBACRD   );
327  m_cTEncTop.setDeltaQpRD                    ( m_uiDeltaQpRD  );
328  m_cTEncTop.setUseASR                       ( m_bUseASR      );
329  m_cTEncTop.setUseHADME                     ( m_bUseHADME    );
330  m_cTEncTop.setUseLossless                  ( m_useLossless );
331#if H_MV
332  m_cTEncTop.setdQPs                         ( m_aidQP[layerIdInVps]   );
333#else
334  m_cTEncTop.setdQPs                         ( m_aidQP        );
335#endif
336  m_cTEncTop.setUseRDOQ                      ( m_useRDOQ     );
337  m_cTEncTop.setUseRDOQTS                    ( m_useRDOQTS   );
338  m_cTEncTop.setRDpenalty                 ( m_rdPenalty );
339  m_cTEncTop.setQuadtreeTULog2MaxSize        ( m_uiQuadtreeTULog2MaxSize );
340  m_cTEncTop.setQuadtreeTULog2MinSize        ( m_uiQuadtreeTULog2MinSize );
341  m_cTEncTop.setQuadtreeTUMaxDepthInter      ( m_uiQuadtreeTUMaxDepthInter );
342  m_cTEncTop.setQuadtreeTUMaxDepthIntra      ( m_uiQuadtreeTUMaxDepthIntra );
343  m_cTEncTop.setUseFastEnc                   ( m_bUseFastEnc  );
344  m_cTEncTop.setUseEarlyCU                   ( m_bUseEarlyCU  ); 
345  m_cTEncTop.setUseFastDecisionForMerge      ( m_useFastDecisionForMerge  );
346  m_cTEncTop.setUseCbfFastMode            ( m_bUseCbfFastMode  );
347  m_cTEncTop.setUseEarlySkipDetection            ( m_useEarlySkipDetection );
348
349  m_cTEncTop.setUseTransformSkip             ( m_useTransformSkip      );
350  m_cTEncTop.setUseTransformSkipFast         ( m_useTransformSkipFast  );
351  m_cTEncTop.setUseConstrainedIntraPred      ( m_bUseConstrainedIntraPred );
352  m_cTEncTop.setPCMLog2MinSize          ( m_uiPCMLog2MinSize);
353  m_cTEncTop.setUsePCM                       ( m_usePCM );
354  m_cTEncTop.setPCMLog2MaxSize               ( m_pcmLog2MaxSize);
355  m_cTEncTop.setMaxNumMergeCand              ( m_maxNumMergeCand );
356 
357
358  //====== Weighted Prediction ========
359  m_cTEncTop.setUseWP                   ( m_useWeightedPred      );
360  m_cTEncTop.setWPBiPred                ( m_useWeightedBiPred   );
361  //====== Parallel Merge Estimation ========
362  m_cTEncTop.setLog2ParallelMergeLevelMinus2 ( m_log2ParallelMergeLevel - 2 );
363
364  //====== Slice ========
365  m_cTEncTop.setSliceMode               ( m_sliceMode                );
366  m_cTEncTop.setSliceArgument           ( m_sliceArgument            );
367
368  //====== Dependent Slice ========
369  m_cTEncTop.setSliceSegmentMode        ( m_sliceSegmentMode         );
370  m_cTEncTop.setSliceSegmentArgument    ( m_sliceSegmentArgument     );
371  Int iNumPartInCU = 1<<(m_uiMaxCUDepth<<1);
372  if(m_sliceSegmentMode==FIXED_NUMBER_OF_LCU)
373  {
374    m_cTEncTop.setSliceSegmentArgument ( m_sliceSegmentArgument * iNumPartInCU );
375  }
376  if(m_sliceMode==FIXED_NUMBER_OF_LCU)
377  {
378    m_cTEncTop.setSliceArgument ( m_sliceArgument * iNumPartInCU );
379  }
380  if(m_sliceMode==FIXED_NUMBER_OF_TILES)
381  {
382    m_cTEncTop.setSliceArgument ( m_sliceArgument );
383  }
384 
385  if(m_sliceMode == 0 )
386  {
387    m_bLFCrossSliceBoundaryFlag = true;
388  }
389  m_cTEncTop.setLFCrossSliceBoundaryFlag( m_bLFCrossSliceBoundaryFlag );
390#if H_MV
391  m_cTEncTop.setUseSAO ( m_bUseSAO[layerIdInVps] );
392#else
393  m_cTEncTop.setUseSAO ( m_bUseSAO );
394#endif
395  m_cTEncTop.setMaxNumOffsetsPerPic (m_maxNumOffsetsPerPic);
396
397  m_cTEncTop.setSaoLcuBoundary (m_saoLcuBoundary);
398  m_cTEncTop.setSaoLcuBasedOptimization (m_saoLcuBasedOptimization);
399  m_cTEncTop.setPCMInputBitDepthFlag  ( m_bPCMInputBitDepthFlag); 
400  m_cTEncTop.setPCMFilterDisableFlag  ( m_bPCMFilterDisableFlag); 
401
402  m_cTEncTop.setDecodedPictureHashSEIEnabled(m_decodedPictureHashSEIEnabled);
403  m_cTEncTop.setRecoveryPointSEIEnabled( m_recoveryPointSEIEnabled );
404  m_cTEncTop.setBufferingPeriodSEIEnabled( m_bufferingPeriodSEIEnabled );
405  m_cTEncTop.setPictureTimingSEIEnabled( m_pictureTimingSEIEnabled );
406  m_cTEncTop.setToneMappingInfoSEIEnabled                 ( m_toneMappingInfoSEIEnabled );
407  m_cTEncTop.setTMISEIToneMapId                           ( m_toneMapId );
408  m_cTEncTop.setTMISEIToneMapCancelFlag                   ( m_toneMapCancelFlag );
409  m_cTEncTop.setTMISEIToneMapPersistenceFlag              ( m_toneMapPersistenceFlag );
410  m_cTEncTop.setTMISEICodedDataBitDepth                   ( m_toneMapCodedDataBitDepth );
411  m_cTEncTop.setTMISEITargetBitDepth                      ( m_toneMapTargetBitDepth );
412  m_cTEncTop.setTMISEIModelID                             ( m_toneMapModelId );
413  m_cTEncTop.setTMISEIMinValue                            ( m_toneMapMinValue );
414  m_cTEncTop.setTMISEIMaxValue                            ( m_toneMapMaxValue );
415  m_cTEncTop.setTMISEISigmoidMidpoint                     ( m_sigmoidMidpoint );
416  m_cTEncTop.setTMISEISigmoidWidth                        ( m_sigmoidWidth );
417  m_cTEncTop.setTMISEIStartOfCodedInterva                 ( m_startOfCodedInterval );
418  m_cTEncTop.setTMISEINumPivots                           ( m_numPivots );
419  m_cTEncTop.setTMISEICodedPivotValue                     ( m_codedPivotValue );
420  m_cTEncTop.setTMISEITargetPivotValue                    ( m_targetPivotValue );
421  m_cTEncTop.setTMISEICameraIsoSpeedIdc                   ( m_cameraIsoSpeedIdc );
422  m_cTEncTop.setTMISEICameraIsoSpeedValue                 ( m_cameraIsoSpeedValue );
423  m_cTEncTop.setTMISEIExposureCompensationValueSignFlag   ( m_exposureCompensationValueSignFlag );
424  m_cTEncTop.setTMISEIExposureCompensationValueNumerator  ( m_exposureCompensationValueNumerator );
425  m_cTEncTop.setTMISEIExposureCompensationValueDenomIdc   ( m_exposureCompensationValueDenomIdc );
426  m_cTEncTop.setTMISEIRefScreenLuminanceWhite             ( m_refScreenLuminanceWhite );
427  m_cTEncTop.setTMISEIExtendedRangeWhiteLevel             ( m_extendedRangeWhiteLevel );
428  m_cTEncTop.setTMISEINominalBlackLevelLumaCodeValue      ( m_nominalBlackLevelLumaCodeValue );
429  m_cTEncTop.setTMISEINominalWhiteLevelLumaCodeValue      ( m_nominalWhiteLevelLumaCodeValue );
430  m_cTEncTop.setTMISEIExtendedWhiteLevelLumaCodeValue     ( m_extendedWhiteLevelLumaCodeValue );
431  m_cTEncTop.setFramePackingArrangementSEIEnabled( m_framePackingSEIEnabled );
432  m_cTEncTop.setFramePackingArrangementSEIType( m_framePackingSEIType );
433  m_cTEncTop.setFramePackingArrangementSEIId( m_framePackingSEIId );
434  m_cTEncTop.setFramePackingArrangementSEIQuincunx( m_framePackingSEIQuincunx );
435  m_cTEncTop.setFramePackingArrangementSEIInterpretation( m_framePackingSEIInterpretation );
436  m_cTEncTop.setDisplayOrientationSEIAngle( m_displayOrientationSEIAngle );
437  m_cTEncTop.setTemporalLevel0IndexSEIEnabled( m_temporalLevel0IndexSEIEnabled );
438  m_cTEncTop.setGradualDecodingRefreshInfoEnabled( m_gradualDecodingRefreshInfoEnabled );
439  m_cTEncTop.setDecodingUnitInfoSEIEnabled( m_decodingUnitInfoSEIEnabled );
440  m_cTEncTop.setSOPDescriptionSEIEnabled( m_SOPDescriptionSEIEnabled );
441  m_cTEncTop.setScalableNestingSEIEnabled( m_scalableNestingSEIEnabled );
442  m_cTEncTop.setUniformSpacingIdr          ( m_iUniformSpacingIdr );
443  m_cTEncTop.setNumColumnsMinus1           ( m_iNumColumnsMinus1 );
444  m_cTEncTop.setNumRowsMinus1              ( m_iNumRowsMinus1 );
445  if(m_iUniformSpacingIdr==0)
446  {
447    m_cTEncTop.setColumnWidth              ( m_pColumnWidth );
448    m_cTEncTop.setRowHeight                ( m_pRowHeight );
449  }
450  m_cTEncTop.xCheckGSParameters();
451  Int uiTilesCount          = (m_iNumRowsMinus1+1) * (m_iNumColumnsMinus1+1);
452  if(uiTilesCount == 1)
453  {
454    m_bLFCrossTileBoundaryFlag = true; 
455  }
456  m_cTEncTop.setLFCrossTileBoundaryFlag( m_bLFCrossTileBoundaryFlag );
457  m_cTEncTop.setWaveFrontSynchro           ( m_iWaveFrontSynchro );
458  m_cTEncTop.setWaveFrontSubstreams        ( m_iWaveFrontSubstreams );
459  m_cTEncTop.setTMVPModeId ( m_TMVPModeId );
460  m_cTEncTop.setUseScalingListId           ( m_useScalingListId  );
461  m_cTEncTop.setScalingListFile            ( m_scalingListFile   );
462  m_cTEncTop.setSignHideFlag(m_signHideFlag);
463#if RATE_CONTROL_LAMBDA_DOMAIN
464#if KWU_RC_VIEWRC_E0227 || KWU_RC_MADPRED_E0227
465  if(!m_cTEncTop.getIsDepth())    //only for texture
466  {
467    m_cTEncTop.setUseRateCtrl         ( m_RCEnableRateControl );
468  }
469  else
470  {
471    m_cTEncTop.setUseRateCtrl         ( 0 );
472  }
473#else
474    m_cTEncTop.setUseRateCtrl         ( m_RCEnableRateControl );
475#endif
476#if !KWU_RC_VIEWRC_E0227
477  m_cTEncTop.setTargetBitrate       ( m_RCTargetBitrate );
478#endif
479  m_cTEncTop.setKeepHierBit         ( m_RCKeepHierarchicalBit );
480  m_cTEncTop.setLCULevelRC          ( m_RCLCULevelRC );
481  m_cTEncTop.setUseLCUSeparateModel ( m_RCUseLCUSeparateModel );
482  m_cTEncTop.setInitialQP           ( m_RCInitialQP );
483  m_cTEncTop.setForceIntraQP        ( m_RCForceIntraQP );
484
485#if KWU_RC_MADPRED_E0227
486  if(m_cTEncTop.getUseRateCtrl() && !m_cTEncTop.getIsDepth())
487  {
488    m_cTEncTop.setUseDepthMADPred(layerIdInVps ? m_depthMADPred       : 0);
489
490    if(m_cTEncTop.getUseDepthMADPred())
491    {
492      m_cTEncTop.setCamParam(&m_cCameraData);
493    }
494  }
495#endif
496#if KWU_RC_VIEWRC_E0227
497  if(m_cTEncTop.getUseRateCtrl() && !m_cTEncTop.getIsDepth())
498  {
499    m_cTEncTop.setUseViewWiseRateCtrl(m_viewWiseRateCtrl);
500
501    if(m_iNumberOfViews == 1)
502    {
503      if(m_viewWiseRateCtrl)
504      {
505        m_cTEncTop.setTargetBitrate(m_viewTargetBits[layerIdInVps>>1]);
506      }
507      else
508      {
509        m_cTEncTop.setTargetBitrate       ( m_RCTargetBitrate );
510      }
511    }
512    else
513    {
514      if(m_viewWiseRateCtrl)
515      {
516        m_cTEncTop.setTargetBitrate(m_viewTargetBits[layerIdInVps>>1]);
517      }
518      else
519      {
520        if(m_iNumberOfViews == 2)
521        {
522          if(m_cTEncTop.getViewId() == 0)
523          {
524            m_cTEncTop.setTargetBitrate              ( (m_RCTargetBitrate*80)/100 );
525          }
526          else if(m_cTEncTop.getViewId() == 1)
527          {
528            m_cTEncTop.setTargetBitrate              ( (m_RCTargetBitrate*20)/100 );
529          }
530        }
531        else if(m_iNumberOfViews == 3)
532        {
533          if(m_cTEncTop.getViewId() == 0)
534          {
535            m_cTEncTop.setTargetBitrate              ( (m_RCTargetBitrate*66)/100 );
536          }
537          else if(m_cTEncTop.getViewId() == 1)
538          {
539            m_cTEncTop.setTargetBitrate              ( (m_RCTargetBitrate*17)/100 );
540          }
541          else if(m_cTEncTop.getViewId() == 2)
542          {
543            m_cTEncTop.setTargetBitrate              ( (m_RCTargetBitrate*17)/100 );
544          }
545        }
546        else
547        {
548          m_cTEncTop.setTargetBitrate              ( m_RCTargetBitrate );
549        }
550      }
551    }
552  }
553#endif
554#else
555#if KWU_RC_VIEWRC_E0227 || KWU_RC_MADPRED_E0227
556  if(!m_cTEncTop.getIsDepth())    //only for texture
557  {
558    m_cTEncTop.setUseRateCtrl         ( m_enableRateCtrl );
559    m_cTEncTop.setTargetBitrate       ( m_targetBitrate );
560    m_cTEncTop.setNumLCUInUnit        ( m_numLCUInUnit);
561  }
562  else
563  {
564    m_cTEncTop.setUseRateCtrl         ( 0 );
565  }
566#else
567  m_cTEncTop.setUseRateCtrl         ( m_enableRateCtrl );
568  m_cTEncTop.setTargetBitrate       ( m_targetBitrate );
569  m_cTEncTop.setNumLCUInUnit        ( m_numLCUInUnit);
570#endif
571
572 
573#if KWU_RC_MADPRED_E0227
574  if(m_cTEncTop.getUseRateCtrl() && !m_cTEncTop.getIsDepth())
575  {
576    m_cTEncTop.setUseDepthMADPred(layerIdInVps ? m_depthMADPred       : 0);
577
578    if(m_cTEncTop.getUseDepthMADPred())
579    {
580      m_cTEncTop.setCamParam(&m_cCameraData);
581    }
582  }
583#endif
584
585#if KWU_RC_VIEWRC_E0227
586  if(m_cTEncTop.getUseRateCtrl() && !m_cTEncTop.getIsDepth())
587  {
588    m_cTEncTop.setUseViewWiseRateCtrl(m_viewWiseRateCtrl);
589    if(m_iNumberOfViews == 1)
590    {
591      if(m_viewWiseRateCtrl)
592      {
593        m_cTEncTop.setTargetBitrate(m_viewTargetBits[layerIdInVps>>1]);
594      }
595      else
596      {
597        m_cTEncTop.setTargetBitrate       ( m_targetBitrate );
598      }
599    }
600    else
601    {
602      if(m_viewWiseRateCtrl)
603      {
604        m_cTEncTop.setTargetBitrate(m_viewTargetBits[layerIdInVps>>1]);
605      }
606      else
607      {
608        if(m_iNumberOfViews == 2)
609        {
610          if(m_cTEncTop.getViewId() == 0)
611          {
612            m_cTEncTop.setTargetBitrate              ( (m_targetBitrate*80)/100 );
613          }
614          else if(m_cTEncTop.getViewId() == 1)
615          {
616            m_cTEncTop.setTargetBitrate              ( (m_targetBitrate*20)/100 );
617          }
618        }
619        else if(m_iNumberOfViews == 3)
620        {
621          if(m_cTEncTop.getViewId() == 0)
622          {
623            m_cTEncTop.setTargetBitrate              ( (m_targetBitrate*66)/100 );
624          }
625          else if(m_cTEncTop.getViewId() == 1)
626          {
627            m_cTEncTop.setTargetBitrate              ( (m_targetBitrate*17)/100 );
628          }
629          else if(m_cTEncTop.getViewId() == 2)
630          {
631            m_cTEncTop.setTargetBitrate              ( (m_targetBitrate*17)/100 );
632          }
633        }
634        else
635        {
636          m_cTEncTop.setTargetBitrate              ( m_targetBitrate );
637        }
638      }
639    }
640  }
641#endif
642#endif
643  m_cTEncTop.setTransquantBypassEnableFlag(m_TransquantBypassEnableFlag);
644  m_cTEncTop.setCUTransquantBypassFlagValue(m_CUTransquantBypassFlagValue);
645  m_cTEncTop.setUseRecalculateQPAccordingToLambda( m_recalculateQPAccordingToLambda );
646  m_cTEncTop.setUseStrongIntraSmoothing( m_useStrongIntraSmoothing );
647  m_cTEncTop.setActiveParameterSetsSEIEnabled ( m_activeParameterSetsSEIEnabled ); 
648  m_cTEncTop.setVuiParametersPresentFlag( m_vuiParametersPresentFlag );
649  m_cTEncTop.setAspectRatioIdc( m_aspectRatioIdc );
650  m_cTEncTop.setSarWidth( m_sarWidth );
651  m_cTEncTop.setSarHeight( m_sarHeight );
652  m_cTEncTop.setOverscanInfoPresentFlag( m_overscanInfoPresentFlag );
653  m_cTEncTop.setOverscanAppropriateFlag( m_overscanAppropriateFlag );
654  m_cTEncTop.setVideoSignalTypePresentFlag( m_videoSignalTypePresentFlag );
655  m_cTEncTop.setVideoFormat( m_videoFormat );
656  m_cTEncTop.setVideoFullRangeFlag( m_videoFullRangeFlag );
657  m_cTEncTop.setColourDescriptionPresentFlag( m_colourDescriptionPresentFlag );
658  m_cTEncTop.setColourPrimaries( m_colourPrimaries );
659  m_cTEncTop.setTransferCharacteristics( m_transferCharacteristics );
660  m_cTEncTop.setMatrixCoefficients( m_matrixCoefficients );
661  m_cTEncTop.setChromaLocInfoPresentFlag( m_chromaLocInfoPresentFlag );
662  m_cTEncTop.setChromaSampleLocTypeTopField( m_chromaSampleLocTypeTopField );
663  m_cTEncTop.setChromaSampleLocTypeBottomField( m_chromaSampleLocTypeBottomField );
664  m_cTEncTop.setNeutralChromaIndicationFlag( m_neutralChromaIndicationFlag );
665  m_cTEncTop.setDefaultDisplayWindow( m_defDispWinLeftOffset, m_defDispWinRightOffset, m_defDispWinTopOffset, m_defDispWinBottomOffset );
666  m_cTEncTop.setFrameFieldInfoPresentFlag( m_frameFieldInfoPresentFlag );
667  m_cTEncTop.setPocProportionalToTimingFlag( m_pocProportionalToTimingFlag );
668  m_cTEncTop.setNumTicksPocDiffOneMinus1   ( m_numTicksPocDiffOneMinus1    );
669  m_cTEncTop.setBitstreamRestrictionFlag( m_bitstreamRestrictionFlag );
670  m_cTEncTop.setTilesFixedStructureFlag( m_tilesFixedStructureFlag );
671  m_cTEncTop.setMotionVectorsOverPicBoundariesFlag( m_motionVectorsOverPicBoundariesFlag );
672  m_cTEncTop.setMinSpatialSegmentationIdc( m_minSpatialSegmentationIdc );
673  m_cTEncTop.setMaxBytesPerPicDenom( m_maxBytesPerPicDenom );
674  m_cTEncTop.setMaxBitsPerMinCuDenom( m_maxBitsPerMinCuDenom );
675  m_cTEncTop.setLog2MaxMvLengthHorizontal( m_log2MaxMvLengthHorizontal );
676  m_cTEncTop.setLog2MaxMvLengthVertical( m_log2MaxMvLengthVertical );
677#if H_MV
678  }
679#endif
680#if H_3D_VSO
681  if ( m_bUseVSO )
682  {
683    if ( m_uiVSOMode == 4 )
684    {
685#if H_3D_VSO_EARLY_SKIP
686      m_cRendererModel.create( m_cRenModStrParser.getNumOfBaseViews(), m_cRenModStrParser.getNumOfModels(), m_iSourceWidth, g_uiMaxCUHeight , LOG2_DISP_PREC_LUT, 0, m_bVSOEarlySkip );
687#else
688      m_cRendererModel.create( m_cRenModStrParser.getNumOfBaseViews(), m_cRenModStrParser.getNumOfModels(), m_iSourceWidth, g_uiMaxCUHeight , LOG2_DISP_PREC_LUT, 0 );
689#endif
690      for ( Int layer = 0; layer < m_numberOfLayers ; layer++ )
691      {
692        TEncTop* pcEncTop =  m_acTEncTopList[ layer ]; 
693        Int iViewNum      = pcEncTop->getViewIndex(); 
694        Int iContent      = pcEncTop->getIsDepth() ? 1 : 0; 
695        Int iNumOfModels  = m_cRenModStrParser.getNumOfModelsForView(iViewNum, iContent);
696
697        Bool bUseVSO      = (iNumOfModels != 0);
698
699        pcEncTop->setUseVSO( bUseVSO );
700        pcEncTop->getRdCost()->setRenModel( bUseVSO ? &m_cRendererModel : NULL );
701
702        for (Int iCurModel = 0; iCurModel < iNumOfModels; iCurModel++ )
703        {
704          Int iModelNum; Int iLeftViewNum; Int iRightViewNum; Int iDump; Int iOrgRefNum; Int iBlendMode;
705
706          m_cRenModStrParser.getSingleModelData  ( iViewNum, iContent, iCurModel, iModelNum, iBlendMode, iLeftViewNum, iRightViewNum, iOrgRefNum, iDump ) ;
707          m_cRendererModel  .createSingleModel   ( iViewNum, iContent, iModelNum, iLeftViewNum, iRightViewNum, (iOrgRefNum != -1), iBlendMode );
708        }           
709      }
710    }
711    else
712    {
713      AOT(true);
714    }
715  }
716#endif
717}
718
719Void TAppEncTop::xCreateLib()
720{
721#if H_MV
722  // initialize global variables
723  initROM();
724#if H_3D_DIM_DMM
725  initWedgeLists( true );
726#endif
727
728  for( Int layer=0; layer < m_numberOfLayers; layer++)
729  {
730    m_acTVideoIOYuvInputFileList[layer]->open( m_pchInputFileList[layer],     false, m_inputBitDepthY, m_inputBitDepthC, m_internalBitDepthY, m_internalBitDepthC );  // read  mode
731    m_acTVideoIOYuvInputFileList[layer]->skipFrames( m_FrameSkip, m_iSourceWidth - m_aiPad[0], m_iSourceHeight - m_aiPad[1]);
732
733    if (m_pchReconFileList[layer])
734    {
735      m_acTVideoIOYuvReconFileList[layer]->open( m_pchReconFileList[layer], true, m_outputBitDepthY, m_outputBitDepthC, m_internalBitDepthY, m_internalBitDepthC);  // write mode
736    }
737    m_acTEncTopList[layer]->create();
738  }
739#else
740  // Video I/O
741  m_cTVideoIOYuvInputFile.open( m_pchInputFile,     false, m_inputBitDepthY, m_inputBitDepthC, m_internalBitDepthY, m_internalBitDepthC );  // read  mode
742  m_cTVideoIOYuvInputFile.skipFrames(m_FrameSkip, m_iSourceWidth - m_aiPad[0], m_iSourceHeight - m_aiPad[1]);
743
744  if (m_pchReconFile)
745    m_cTVideoIOYuvReconFile.open(m_pchReconFile, true, m_outputBitDepthY, m_outputBitDepthC, m_internalBitDepthY, m_internalBitDepthC);  // write mode
746 
747  // Neo Decoder
748  m_cTEncTop.create();
749#endif
750}
751
752Void TAppEncTop::xDestroyLib()
753{
754#if H_MV
755  // destroy ROM
756  destroyROM();
757
758  for(Int layer=0; layer<m_numberOfLayers; layer++)
759  {
760    m_acTVideoIOYuvInputFileList[layer]->close();
761    m_acTVideoIOYuvReconFileList[layer]->close();
762    delete m_acTVideoIOYuvInputFileList[layer] ; 
763    m_acTVideoIOYuvInputFileList[layer] = NULL;
764    delete m_acTVideoIOYuvReconFileList[layer] ; 
765    m_acTVideoIOYuvReconFileList[layer] = NULL;
766    m_acTEncTopList[layer]->deletePicBuffer();
767    m_acTEncTopList[layer]->destroy();
768    delete m_acTEncTopList[layer] ; 
769    m_acTEncTopList[layer] = NULL;
770    delete m_picYuvRec[layer] ; 
771    m_picYuvRec[layer] = NULL;
772  }
773#else
774  // Video I/O
775  m_cTVideoIOYuvInputFile.close();
776  m_cTVideoIOYuvReconFile.close();
777 
778  // Neo Decoder
779  m_cTEncTop.destroy();
780#endif
781}
782
783Void TAppEncTop::xInitLib(Bool isFieldCoding)
784{
785#if H_3D
786  for ( Int viewIndex = 0; viewIndex < m_vps.getNumViews(); viewIndex++ )
787  {
788    m_vps.initCamParaVPS( viewIndex, true, m_cCameraData.getCamParsCodedPrecision(), 
789      m_cCameraData.getVaryingCameraParameters(), m_cCameraData.getCodedScale(), m_cCameraData.getCodedOffset() );
790  }
791#endif
792
793#if H_MV
794  for(Int layer=0; layer<m_numberOfLayers; layer++)
795  {
796#if KWU_RC_MADPRED_E0227
797    m_acTEncTopList[layer]->init( isFieldCoding, this );
798#else
799    m_acTEncTopList[layer]->init( isFieldCoding );
800#endif
801  }
802#else
803  m_cTEncTop.init( isFieldCoding );
804#endif
805}
806
807// ====================================================================================================================
808// Public member functions
809// ====================================================================================================================
810
811/**
812 - create internal class
813 - initialize internal variable
814 - until the end of input YUV file, call encoding function in TEncTop class
815 - delete allocated buffers
816 - destroy internal class
817 .
818 */
819Void TAppEncTop::encode()
820{
821  fstream bitstreamFile(m_pchBitstreamFile, fstream::binary | fstream::out);
822  if (!bitstreamFile)
823  {
824    fprintf(stderr, "\nfailed to open bitstream file `%s' for writing\n", m_pchBitstreamFile);
825    exit(EXIT_FAILURE);
826  }
827
828  TComPicYuv*       pcPicYuvOrg = new TComPicYuv;
829  TComPicYuv*       pcPicYuvRec = NULL;
830 
831  // initialize internal class & member variables
832  xInitLibCfg();
833  xCreateLib();
834  xInitLib(m_isField);
835 
836  // main encoder loop
837#if H_MV
838  Bool  allEos = false;
839  std::vector<Bool>  eos ;
840  std::vector<Bool>  flush ; 
841 
842  Int gopSize    = 1;
843  Int maxGopSize = 0;
844  maxGopSize = (std::max)(maxGopSize, m_acTEncTopList[0]->getGOPSize()); 
845 
846  for(Int layer=0; layer < m_numberOfLayers; layer++ )
847  {
848    eos  .push_back( false );
849    flush.push_back( false );
850  }
851#else
852  Int   iNumEncoded = 0;
853  Bool  bEos = false;
854#endif
855 
856  list<AccessUnit> outputAccessUnits; ///< list of access units to write out.  is populated by the encoding process
857
858  // allocate original YUV buffer
859  if( m_isField )
860  {
861    pcPicYuvOrg->create( m_iSourceWidth, m_iSourceHeightOrg, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth );
862  }
863  else
864  {
865  pcPicYuvOrg->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth );
866  }
867 
868#if H_MV
869  while ( !allEos )
870  {
871    for(Int layer=0; layer < m_numberOfLayers; layer++ )
872    {
873      Int frmCnt = 0;
874      while ( !eos[layer] && !(frmCnt == gopSize))
875      {
876        // get buffers
877        xGetBuffer(pcPicYuvRec, layer);
878
879        // read input YUV file
880        m_acTVideoIOYuvInputFileList[layer]->read      ( pcPicYuvOrg, m_aiPad );
881        m_acTEncTopList             [layer]->initNewPic( pcPicYuvOrg );
882
883        // increase number of received frames
884        m_frameRcvd[layer]++;
885       
886        frmCnt++;
887
888        eos[layer] = (m_frameRcvd[layer] == m_framesToBeEncoded);
889        allEos = allEos||eos[layer];
890
891        // if end of file (which is only detected on a read failure) flush the encoder of any queued pictures
892        if (m_acTVideoIOYuvInputFileList[layer]->isEof())
893        {
894          flush          [layer] = true;
895          eos            [layer] = true;
896          m_frameRcvd    [layer]--;
897          m_acTEncTopList[layer]->setFramesToBeEncoded(m_frameRcvd[layer]);
898        }
899      }
900    }
901    for ( Int gopId=0; gopId < gopSize; gopId++ )
902    {
903#if H_3D
904      UInt iNextPoc = m_acTEncTopList[0] -> getFrameId( gopId );
905      if ( iNextPoc < m_framesToBeEncoded )
906      {
907        m_cCameraData.update( iNextPoc );
908      }
909#endif
910      for(Int layer=0; layer < m_numberOfLayers; layer++ )
911      {
912#if H_3D_VSO       
913          if( m_bUseVSO && m_bUseEstimatedVSD && iNextPoc < m_framesToBeEncoded )
914          {
915            m_cCameraData.setDispCoeff( iNextPoc, m_acTEncTopList[layer]->getViewIndex() );
916            m_acTEncTopList[layer]  ->setDispCoeff( m_cCameraData.getDispCoeff() );
917          }
918#endif
919
920#if MTK_DDD_G0063
921          m_acTEncTopList[ layer ]->getSliceEncoder()->setDDDPar( m_cCameraData.getCodedScale()[0][ m_acTEncTopList[layer]->getViewIndex() ], 
922              m_cCameraData.getCodedOffset()[0][ m_acTEncTopList[layer]->getViewIndex() ], 
923              m_cCameraData.getCamParsCodedPrecision() );
924#endif
925        Int   iNumEncoded = 0;
926
927        // call encoding function for one frame         
928        m_acTEncTopList[layer]->encode( eos[layer], flush[layer] ? 0 : pcPicYuvOrg, *m_picYuvRec[layer], outputAccessUnits, iNumEncoded, gopId );       
929        xWriteOutput(bitstreamFile, iNumEncoded, outputAccessUnits, layer);
930        outputAccessUnits.clear();
931      }
932    }
933
934#if !RATE_CONTROL_LAMBDA_DOMAIN && KWU_FIX_URQ
935    for(Int layer=0; layer < m_numberOfLayers; layer++ )
936    {
937      if(m_acTEncTopList[layer]->getUseRateCtrl()  && !m_acTEncTopList[layer]->getIsDepth())
938      {
939        m_acTEncTopList[layer]->getRateCtrl()->updateRCGOPStatus();
940      }
941    }
942#endif
943
944    gopSize = maxGopSize;
945  }
946  for(Int layer=0; layer < m_numberOfLayers; layer++ )
947  {
948    m_acTEncTopList[layer]->printSummary( m_acTEncTopList[layer]->getNumAllPicCoded(), m_isField );
949  }
950#else
951  while ( !bEos )
952  {
953    // get buffers
954    xGetBuffer(pcPicYuvRec);
955
956    // read input YUV file
957    m_cTVideoIOYuvInputFile.read( pcPicYuvOrg, m_aiPad );
958
959    // increase number of received frames
960    m_iFrameRcvd++;
961
962    bEos = (m_isField && (m_iFrameRcvd == (m_framesToBeEncoded >> 1) )) || ( !m_isField && (m_iFrameRcvd == m_framesToBeEncoded) );
963
964    Bool flush = 0;
965    // if end of file (which is only detected on a read failure) flush the encoder of any queued pictures
966    if (m_cTVideoIOYuvInputFile.isEof())
967    {
968      flush = true;
969      bEos = true;
970      m_iFrameRcvd--;
971      m_cTEncTop.setFramesToBeEncoded(m_iFrameRcvd);
972    }
973
974    // call encoding function for one frame
975    if ( m_isField )
976    {
977      m_cTEncTop.encode( bEos, flush ? 0 : pcPicYuvOrg, m_cListPicYuvRec, outputAccessUnits, iNumEncoded, m_isTopFieldFirst);
978    }
979    else
980    {
981    m_cTEncTop.encode( bEos, flush ? 0 : pcPicYuvOrg, m_cListPicYuvRec, outputAccessUnits, iNumEncoded );
982    }
983   
984    // write bistream to file if necessary
985    if ( iNumEncoded > 0 )
986    {
987      xWriteOutput(bitstreamFile, iNumEncoded, outputAccessUnits);
988      outputAccessUnits.clear();
989    }
990  }
991
992  m_cTEncTop.printSummary(m_isField);
993#endif
994
995  // delete original YUV buffer
996  pcPicYuvOrg->destroy();
997  delete pcPicYuvOrg;
998  pcPicYuvOrg = NULL;
999 
1000#if !H_MV
1001  // delete used buffers in encoder class
1002  m_cTEncTop.deletePicBuffer();
1003#endif
1004
1005  // delete buffers & classes
1006  xDeleteBuffer();
1007  xDestroyLib();
1008 
1009  printRateSummary();
1010
1011#if H_3D_REN_MAX_DEV_OUT
1012  Double dMaxDispDiff = m_cCameraData.getMaxShiftDeviation(); 
1013
1014  if ( !(dMaxDispDiff < 0) )
1015  { 
1016    printf("\n Max. possible shift error: %12.3f samples.\n", dMaxDispDiff );
1017  }
1018#endif
1019
1020  return;
1021}
1022
1023// ====================================================================================================================
1024// Protected member functions
1025// ====================================================================================================================
1026
1027/**
1028 - application has picture buffer list with size of GOP
1029 - picture buffer list acts as ring buffer
1030 - end of the list has the latest picture
1031 .
1032 */
1033#if H_MV
1034Void TAppEncTop::xGetBuffer( TComPicYuv*& rpcPicYuvRec, UInt layer)
1035#else
1036Void TAppEncTop::xGetBuffer( TComPicYuv*& rpcPicYuvRec)
1037#endif
1038{
1039  assert( m_iGOPSize > 0 );
1040 
1041  // org. buffer
1042#if H_MV
1043  if ( m_picYuvRec[layer]->size() == (UInt)m_iGOPSize )
1044  {
1045    rpcPicYuvRec = m_picYuvRec[layer]->popFront();
1046#else
1047  if ( m_cListPicYuvRec.size() == (UInt)m_iGOPSize )
1048  {
1049    rpcPicYuvRec = m_cListPicYuvRec.popFront();
1050#endif
1051
1052  }
1053  else
1054  {
1055    rpcPicYuvRec = new TComPicYuv;
1056   
1057    rpcPicYuvRec->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth );
1058
1059  }
1060#if H_MV
1061  m_picYuvRec[layer]->pushBack( rpcPicYuvRec );
1062#else
1063  m_cListPicYuvRec.pushBack( rpcPicYuvRec );
1064#endif
1065}
1066
1067Void TAppEncTop::xDeleteBuffer( )
1068{
1069#if H_MV
1070  for(Int layer=0; layer<m_picYuvRec.size(); layer++)
1071  {
1072    if(m_picYuvRec[layer])
1073    {
1074      TComList<TComPicYuv*>::iterator iterPicYuvRec  = m_picYuvRec[layer]->begin();
1075      Int iSize = Int( m_picYuvRec[layer]->size() );
1076#else
1077  TComList<TComPicYuv*>::iterator iterPicYuvRec  = m_cListPicYuvRec.begin();
1078 
1079  Int iSize = Int( m_cListPicYuvRec.size() );
1080#endif
1081
1082  for ( Int i = 0; i < iSize; i++ )
1083  {
1084    TComPicYuv*  pcPicYuvRec  = *(iterPicYuvRec++);
1085    pcPicYuvRec->destroy();
1086    delete pcPicYuvRec; pcPicYuvRec = NULL;
1087  }
1088
1089#if H_MV
1090    }
1091  }
1092#endif 
1093}
1094
1095/** \param iNumEncoded  number of encoded frames
1096 */
1097#if H_MV
1098Void TAppEncTop::xWriteOutput(std::ostream& bitstreamFile, Int iNumEncoded, std::list<AccessUnit>& accessUnits, UInt layerId)
1099#else
1100Void TAppEncTop::xWriteOutput(std::ostream& bitstreamFile, Int iNumEncoded, const std::list<AccessUnit>& accessUnits)
1101#endif
1102{
1103  if (m_isField)
1104  {
1105    //Reinterlace fields
1106    Int i;
1107#if H_MV
1108    if( iNumEncoded > 0 )
1109    {
1110      TComList<TComPicYuv*>::iterator iterPicYuvRec = m_picYuvRec[layerId]->end();
1111#else
1112    TComList<TComPicYuv*>::iterator iterPicYuvRec = m_cListPicYuvRec.end();
1113    list<AccessUnit>::const_iterator iterBitstream = accessUnits.begin();
1114#endif
1115
1116    for ( i = 0; i < iNumEncoded; i++ )
1117    {
1118      --iterPicYuvRec;
1119    }
1120
1121    for ( i = 0; i < iNumEncoded/2; i++ )
1122    {
1123      TComPicYuv*  pcPicYuvRecTop  = *(iterPicYuvRec++);
1124      TComPicYuv*  pcPicYuvRecBottom  = *(iterPicYuvRec++);
1125
1126#if H_MV
1127      if (m_pchReconFileList[layerId])
1128      {
1129        m_acTVideoIOYuvReconFileList[layerId]->write( pcPicYuvRecTop, pcPicYuvRecBottom, m_confLeft, m_confRight, m_confTop, m_confBottom, m_isTopFieldFirst );
1130      }
1131    }
1132  }
1133
1134  if( ! accessUnits.empty() )
1135  {
1136    list<AccessUnit>::iterator aUIter;
1137    for( aUIter = accessUnits.begin(); aUIter != accessUnits.end(); aUIter++ )
1138    {
1139      const vector<UInt>& stats = writeAnnexB(bitstreamFile, *aUIter);
1140      rateStatsAccum(*aUIter, stats);
1141    }
1142  }
1143#else
1144      if (m_pchReconFile)
1145      {
1146        m_cTVideoIOYuvReconFile.write( pcPicYuvRecTop, pcPicYuvRecBottom, m_confLeft, m_confRight, m_confTop, m_confBottom, m_isTopFieldFirst );
1147      }
1148
1149      const AccessUnit& auTop = *(iterBitstream++);
1150      const vector<UInt>& statsTop = writeAnnexB(bitstreamFile, auTop);
1151      rateStatsAccum(auTop, statsTop);
1152
1153      const AccessUnit& auBottom = *(iterBitstream++);
1154      const vector<UInt>& statsBottom = writeAnnexB(bitstreamFile, auBottom);
1155      rateStatsAccum(auBottom, statsBottom);
1156    }
1157#endif
1158  }
1159  else
1160  {
1161    Int i;
1162#if H_MV
1163    if( iNumEncoded > 0 )
1164    {
1165      TComList<TComPicYuv*>::iterator iterPicYuvRec = m_picYuvRec[layerId]->end();
1166#else
1167    TComList<TComPicYuv*>::iterator iterPicYuvRec = m_cListPicYuvRec.end();
1168    list<AccessUnit>::const_iterator iterBitstream = accessUnits.begin();
1169#endif
1170
1171    for ( i = 0; i < iNumEncoded; i++ )
1172    {
1173      --iterPicYuvRec;
1174    }
1175
1176    for ( i = 0; i < iNumEncoded; i++ )
1177    {
1178      TComPicYuv*  pcPicYuvRec  = *(iterPicYuvRec++);
1179#if H_MV
1180      if (m_pchReconFileList[layerId])
1181      {
1182        m_acTVideoIOYuvReconFileList[layerId]->write( pcPicYuvRec, m_confLeft, m_confRight, m_confTop, m_confBottom );
1183      }   
1184    }
1185  }
1186  if( ! accessUnits.empty() )
1187  {
1188    list<AccessUnit>::iterator aUIter;
1189    for( aUIter = accessUnits.begin(); aUIter != accessUnits.end(); aUIter++ )
1190    {
1191      const vector<unsigned>& stats = writeAnnexB(bitstreamFile, *aUIter);
1192      rateStatsAccum(*aUIter, stats);
1193    }
1194  }
1195#else
1196      if (m_pchReconFile)
1197      {
1198        m_cTVideoIOYuvReconFile.write( pcPicYuvRec, m_confLeft, m_confRight, m_confTop, m_confBottom );
1199      }
1200
1201      const AccessUnit& au = *(iterBitstream++);
1202      const vector<UInt>& stats = writeAnnexB(bitstreamFile, au);
1203      rateStatsAccum(au, stats);   
1204    }
1205#endif   
1206  }
1207}
1208 
1209/**
1210 *
1211 */
1212void TAppEncTop::rateStatsAccum(const AccessUnit& au, const std::vector<UInt>& annexBsizes)
1213{
1214  AccessUnit::const_iterator it_au = au.begin();
1215  vector<UInt>::const_iterator it_stats = annexBsizes.begin();
1216
1217  for (; it_au != au.end(); it_au++, it_stats++)
1218  {
1219    switch ((*it_au)->m_nalUnitType)
1220    {
1221    case NAL_UNIT_CODED_SLICE_TRAIL_R:
1222    case NAL_UNIT_CODED_SLICE_TRAIL_N:
1223    case NAL_UNIT_CODED_SLICE_TLA_R:
1224    case NAL_UNIT_CODED_SLICE_TSA_N:
1225    case NAL_UNIT_CODED_SLICE_STSA_R:
1226    case NAL_UNIT_CODED_SLICE_STSA_N:
1227    case NAL_UNIT_CODED_SLICE_BLA_W_LP:
1228    case NAL_UNIT_CODED_SLICE_BLA_W_RADL:
1229    case NAL_UNIT_CODED_SLICE_BLA_N_LP:
1230    case NAL_UNIT_CODED_SLICE_IDR_W_RADL:
1231    case NAL_UNIT_CODED_SLICE_IDR_N_LP:
1232    case NAL_UNIT_CODED_SLICE_CRA:
1233    case NAL_UNIT_CODED_SLICE_RADL_N:
1234    case NAL_UNIT_CODED_SLICE_RADL_R:
1235    case NAL_UNIT_CODED_SLICE_RASL_N:
1236    case NAL_UNIT_CODED_SLICE_RASL_R:
1237    case NAL_UNIT_VPS:
1238    case NAL_UNIT_SPS:
1239    case NAL_UNIT_PPS:
1240      m_essentialBytes += *it_stats;
1241      break;
1242    default:
1243      break;
1244    }
1245
1246    m_totalBytes += *it_stats;
1247  }
1248}
1249
1250void TAppEncTop::printRateSummary()
1251{
1252#if H_MV
1253  Double time = (Double) m_frameRcvd[0] / m_iFrameRate;
1254  printf("\n");
1255#else
1256  Double time = (Double) m_iFrameRcvd / m_iFrameRate;
1257#endif
1258  printf("Bytes written to file: %u (%.3f kbps)\n", m_totalBytes, 0.008 * m_totalBytes / time);
1259#if VERBOSE_RATE
1260  printf("Bytes for SPS/PPS/Slice (Incl. Annex B): %u (%.3f kbps)\n", m_essentialBytes, 0.008 * m_essentialBytes / time);
1261#endif
1262}
1263
1264#if H_3D_DIM_DLT
1265Void TAppEncTop::xAnalyzeInputBaseDepth(UInt layer, UInt uiNumFrames, TComVPS* vps, TComDLT* dlt)
1266{
1267  TComPicYuv*       pcDepthPicYuvOrg = new TComPicYuv;
1268  // allocate original YUV buffer
1269  pcDepthPicYuvOrg->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth );
1270 
1271  TVideoIOYuv* depthVideoFile = new TVideoIOYuv;
1272 
1273  UInt uiMaxDepthValue = ((1 << g_bitDepthY)-1);
1274 
1275  Bool abValidDepths[256];
1276 
1277  depthVideoFile->open( m_pchInputFileList[layer], false, m_inputBitDepthY, m_inputBitDepthC, m_internalBitDepthY, m_internalBitDepthC );  // read  mode
1278 
1279  // initialize boolean array
1280  for(Int p=0; p<=uiMaxDepthValue; p++)
1281    abValidDepths[p] = false;
1282 
1283  Int iHeight   = pcDepthPicYuvOrg->getHeight();
1284  Int iWidth    = pcDepthPicYuvOrg->getWidth();
1285  Int iStride   = pcDepthPicYuvOrg->getStride();
1286 
1287  Pel* pInDM    = pcDepthPicYuvOrg->getLumaAddr();
1288 
1289  for(Int uiFrame=0; uiFrame < uiNumFrames; uiFrame++ )
1290  {
1291    depthVideoFile->read( pcDepthPicYuvOrg, m_aiPad );
1292   
1293    // check all pixel values
1294    for (Int i=0; i<iHeight; i++)
1295    {
1296      Int rowOffset = i*iStride;
1297     
1298      for (Int j=0; j<iWidth; j++)
1299      {
1300        Pel depthValue = pInDM[rowOffset+j];
1301        abValidDepths[depthValue] = true;
1302      }
1303    }
1304  }
1305 
1306  depthVideoFile->close();
1307  delete depthVideoFile; 
1308 
1309  pcDepthPicYuvOrg->destroy();
1310  delete pcDepthPicYuvOrg;
1311 
1312  // convert boolean array to idx2Depth LUT
1313  Int* aiIdx2DepthValue = (Int*) calloc(uiMaxDepthValue, sizeof(Int));
1314  Int iNumDepthValues = 0;
1315  for(Int p=0; p<=uiMaxDepthValue; p++)
1316  {
1317    if( abValidDepths[p] == true)
1318    {
1319      aiIdx2DepthValue[iNumDepthValues++] = p;
1320    }
1321  }
1322 
1323  if( uiNumFrames == 0 || numBitsForValue(iNumDepthValues) == g_bitDepthY )
1324  {
1325    dlt->setUseDLTFlag(layer, false);
1326  }
1327 
1328  // assign LUT
1329  if( dlt->getUseDLTFlag(layer) )
1330  {
1331    dlt->setDepthLUTs(layer, aiIdx2DepthValue, iNumDepthValues);
1332  }
1333 
1334  // free temporary memory
1335  free(aiIdx2DepthValue);
1336}
1337#endif
1338
1339#if H_MV
1340Void TAppEncTop::xSetDimensionIdAndLength( TComVPS& vps )
1341{   
1342  vps.setScalabilityMaskFlag( m_scalabilityMask ); 
1343  for( Int dim = 0; dim < m_dimIds.size(); dim++ )
1344  {
1345    vps.setDimensionIdLen( dim, m_dimensionIdLen[ dim ] );
1346    for( Int layer = 0; layer <= vps.getMaxLayersMinus1(); layer++ )
1347
1348    {       
1349      vps.setDimensionId( layer, dim, m_dimIds[ dim ][ layer ] );       
1350    } 
1351  }
1352
1353  Int maxViewId = xGetMax( m_viewId ); 
1354
1355  Int viewIdLen = gCeilLog2( maxViewId + 1 ); 
1356  const Int maxViewIdLen = ( 1 << 4 ) - 1; 
1357  assert( viewIdLen <= maxViewIdLen ); 
1358  vps.setViewIdLen( viewIdLen ); 
1359  for (Int i = 0; i < m_iNumberOfViews; i++)
1360  {
1361    vps.setViewIdVal( i, m_viewId[ i] ); 
1362  }
1363
1364  assert( m_iNumberOfViews == vps.getNumViews() ); 
1365}
1366
1367Void TAppEncTop::xSetDependencies( TComVPS& vps )
1368{
1369  // Direct dependency flags + dependency types
1370  for( Int depLayer = 1; depLayer < MAX_NUM_LAYERS; depLayer++ )
1371  {
1372    for( Int refLayer = 0; refLayer < MAX_NUM_LAYERS; refLayer++ )
1373    {
1374      vps.setDirectDependencyFlag( depLayer, refLayer, false); 
1375      vps.setDirectDependencyType( depLayer, refLayer,    -1 ); 
1376    }
1377    }
1378
1379  Int  defaultDirectDependencyType = -1; 
1380  Bool defaultDirectDependencyFlag = true; 
1381  for( Int depLayer = 1; depLayer < m_numberOfLayers; depLayer++ )
1382  {
1383    Int numRefLayers = (Int) m_directRefLayers[depLayer].size(); 
1384    assert(  numRefLayers == (Int) m_dependencyTypes[depLayer].size() ); 
1385    for( Int i = 0; i < numRefLayers; i++ )
1386    {
1387      Int refLayer = m_directRefLayers[depLayer][i]; 
1388      vps.setDirectDependencyFlag( depLayer, refLayer, true); 
1389      Int curDirectDependencyType = m_dependencyTypes[depLayer][i]; 
1390
1391      if ( defaultDirectDependencyType != -1 )   
1392      {
1393        defaultDirectDependencyFlag = defaultDirectDependencyFlag && (curDirectDependencyType == defaultDirectDependencyType );         
1394      }
1395      else
1396      {
1397        defaultDirectDependencyType = curDirectDependencyType; 
1398      }
1399     
1400      vps.setDirectDependencyType( depLayer, refLayer, curDirectDependencyType);       
1401    }
1402  }
1403
1404  vps.setDefaultDirectDependencyFlag( defaultDirectDependencyFlag );       
1405  vps.setDefaultDirectDependencyType( defaultDirectDependencyFlag ? defaultDirectDependencyType : -1 );       
1406
1407  // Max sub layers, + presence flag
1408  Bool subLayersMaxMinus1PresentFlag = false; 
1409  Int  subLayersMaxMinus1 = -1; 
1410  for (Int curLayerIdInVps = 0; curLayerIdInVps < m_numberOfLayers; curLayerIdInVps++ )
1411  {
1412    Int curSubLayersMaxMinus1 = -1; 
1413    for( Int i = 0; i < getGOPSize(); i++ ) 
1414    {
1415      GOPEntry geCur =  m_GOPListMvc[curLayerIdInVps][i];
1416      curSubLayersMaxMinus1 = std::max( curSubLayersMaxMinus1, geCur.m_temporalId ); 
1417    } 
1418
1419    vps.setSubLayersVpsMaxMinus1( curLayerIdInVps, curSubLayersMaxMinus1 ); 
1420    if ( subLayersMaxMinus1 == -1 )
1421    {
1422      subLayersMaxMinus1 = curSubLayersMaxMinus1; 
1423    }
1424    else
1425    {
1426      subLayersMaxMinus1PresentFlag = subLayersMaxMinus1PresentFlag || ( curSubLayersMaxMinus1 != subLayersMaxMinus1 ); 
1427    }
1428  }
1429
1430  vps.setVpsSubLayersMaxMinus1PresentFlag( subLayersMaxMinus1PresentFlag ); 
1431
1432
1433  // Max temporal id for inter layer reference pictures + presence flag
1434  Bool maxTidRefPresentFlag = false; 
1435  for ( Int refLayerIdInVps = 0; refLayerIdInVps < m_numberOfLayers; refLayerIdInVps++)
1436    {
1437    for ( Int curLayerIdInVps = 1; curLayerIdInVps < m_numberOfLayers; curLayerIdInVps++)
1438      {
1439      Int maxTid = -1; 
1440      for( Int i = 0; i < getGOPSize(); i++ ) 
1441      {       
1442        GOPEntry geCur =  m_GOPListMvc[curLayerIdInVps][i];
1443        GOPEntry geRef =  m_GOPListMvc[refLayerIdInVps][i];
1444       
1445        for (Int j = 0; j < geCur.m_numActiveRefLayerPics; j++)
1446        {       
1447          if ( m_directRefLayers[ curLayerIdInVps ][ geCur.m_interLayerPredLayerIdc[ j ]] == refLayerIdInVps )
1448          {
1449            maxTid = std::max( maxTid, geRef.m_temporalId ); 
1450          }
1451        }
1452      }
1453      vps.setMaxTidIlRefPicsPlus1( refLayerIdInVps, curLayerIdInVps, maxTid + 1 );
1454      maxTidRefPresentFlag = maxTidRefPresentFlag || ( maxTid != 6 );   
1455    }
1456  }
1457
1458  vps.setMaxTidRefPresentFlag( maxTidRefPresentFlag );
1459  // Max one active ref layer flag
1460  Bool maxOneActiveRefLayerFlag = true; 
1461  for ( Int layerIdInVps = 1; layerIdInVps < m_numberOfLayers && maxOneActiveRefLayerFlag; layerIdInVps++)
1462  {
1463    for( Int i = 0; i < ( getGOPSize() + 1) && maxOneActiveRefLayerFlag; i++ ) 
1464    {       
1465      GOPEntry ge =  m_GOPListMvc[layerIdInVps][ ( i < getGOPSize()  ? i : MAX_GOP ) ]; 
1466      maxOneActiveRefLayerFlag =  maxOneActiveRefLayerFlag && (ge.m_numActiveRefLayerPics <= 1); 
1467    }           
1468}
1469
1470  vps.setMaxOneActiveRefLayerFlag( maxOneActiveRefLayerFlag );
1471 
1472  // Poc Lsb Not Present Flag
1473  for ( Int layerIdInVps = 1; layerIdInVps < m_numberOfLayers; layerIdInVps++)
1474  {
1475    if ( m_directRefLayers[ layerIdInVps ].size() == 0 ) 
1476    {   
1477      vps.setPocLsbNotPresentFlag( layerIdInVps,  true ); 
1478    }
1479  }
1480 
1481  // All Ref layers active flag
1482  Bool allRefLayersActiveFlag = true; 
1483  for ( Int layerIdInVps = 1; layerIdInVps < m_numberOfLayers && allRefLayersActiveFlag; layerIdInVps++)
1484  {   
1485    for( Int i = 0; i < ( getGOPSize() + 1) && allRefLayersActiveFlag; i++ ) 
1486    {       
1487      GOPEntry ge =  m_GOPListMvc[layerIdInVps][ ( i < getGOPSize()  ? i : MAX_GOP ) ]; 
1488      Int tId = ge.m_temporalId;  // Should be equal for all layers.
1489     
1490      // check if all reference layers when allRefLayerActiveFlag is equal to 1 are reference layer pictures specified in the gop entry
1491      for (Int k = 0; k < m_directRefLayers[ layerIdInVps].size() && allRefLayersActiveFlag; k++ )
1492      {
1493        Int refLayerIdInVps = vps.getLayerIdInVps( m_directRefLayers[ layerIdInVps ][ k ] ); 
1494        if ( vps.getMaxTidIlRefPicsPlus1(refLayerIdInVps,layerIdInVps) > tId  && vps.getSubLayersVpsMaxMinus1(refLayerIdInVps) >= tId )
1495        {
1496          Bool gopEntryFoundFlag = false; 
1497          for( Int l = 0; l < ge.m_numActiveRefLayerPics && !gopEntryFoundFlag; l++ )
1498          {
1499            gopEntryFoundFlag = gopEntryFoundFlag || ( ge.m_interLayerPredLayerIdc[l] == k ); 
1500          }         
1501          allRefLayersActiveFlag = allRefLayersActiveFlag && gopEntryFoundFlag; 
1502        }       
1503      }
1504
1505      // check if all inter layer reference pictures specified in the gop entry are valid reference layer pictures when allRefLayerActiveFlag is equal to 1
1506      // (Should actually always be true)
1507      Bool maxTidIlRefAndSubLayerMaxVaildFlag = true; 
1508      for( Int l = 0; l < ge.m_numActiveRefLayerPics; l++ )
1509      {   
1510        Bool referenceLayerFoundFlag = false; 
1511        for (Int k = 0; k < m_directRefLayers[ layerIdInVps].size(); k++ )
1512        {
1513          Int refLayerIdInVps = vps.getLayerIdInVps( m_directRefLayers[ layerIdInVps ][ k ] ); 
1514
1515          if ( vps.getMaxTidIlRefPicsPlus1(refLayerIdInVps,layerIdInVps) > tId  && vps.getSubLayersVpsMaxMinus1(refLayerIdInVps) >= tId )
1516          {         
1517            referenceLayerFoundFlag = referenceLayerFoundFlag || ( ge.m_interLayerPredLayerIdc[l] == k ); 
1518          }         
1519        }
1520       maxTidIlRefAndSubLayerMaxVaildFlag = maxTidIlRefAndSubLayerMaxVaildFlag && referenceLayerFoundFlag; 
1521      }
1522      assert ( maxTidIlRefAndSubLayerMaxVaildFlag ); // Something wrong with MaxTidIlRefPicsPlus1 or SubLayersVpsMaxMinus1
1523    }           
1524  }
1525
1526  vps.setAllRefLayersActiveFlag( allRefLayersActiveFlag );
1527
1528  vps.setRefLayers(); 
1529}; 
1530
1531GOPEntry* TAppEncTop::xGetGopEntry( Int layerIdInVps, Int poc )
1532{
1533  GOPEntry* geFound = NULL; 
1534  for( Int i = 0; i < ( getGOPSize() + 1) && geFound == NULL ; i++ ) 
1535  {
1536    GOPEntry* ge = &(m_GOPListMvc[layerIdInVps][ ( i < getGOPSize()  ? i : MAX_GOP ) ]);
1537    if ( ge->m_POC == poc )
1538    {
1539      geFound = ge;       
1540    }
1541  }
1542  assert( geFound != NULL ); 
1543  return geFound; 
1544}
1545
1546Void TAppEncTop::xSetLayerIds( TComVPS& vps )
1547{
1548  vps.setSplittingFlag     ( m_splittingFlag );
1549
1550  Bool nuhLayerIdPresentFlag = !( m_layerIdInNuh.size() == 1 ); 
1551  Int  maxNuhLayerId = nuhLayerIdPresentFlag ? xGetMax( m_layerIdInNuh ) : ( m_numberOfLayers - 1 ) ; 
1552
1553  vps.setVpsMaxLayerId( maxNuhLayerId ); 
1554  vps.setVpsNuhLayerIdPresentFlag( nuhLayerIdPresentFlag ); 
1555
1556  for (Int layer = 0; layer < m_numberOfLayers; layer++ )
1557  {
1558    vps.setLayerIdInNuh( layer, nuhLayerIdPresentFlag ? m_layerIdInNuh[ layer ] : layer ); 
1559    vps.setLayerIdInVps( vps.getLayerIdInNuh( layer ), layer ); 
1560  }
1561}
1562
1563Int TAppEncTop::xGetMax( std::vector<Int>& vec )
1564{
1565  Int maxVec = 0; 
1566  for ( Int i = 0; i < vec.size(); i++)   
1567  {
1568    maxVec = max( vec[i], maxVec ); 
1569  }
1570  return maxVec;
1571}
1572
1573Void TAppEncTop::xSetProfileTierLevel( TComVPS& vps )
1574{ 
1575  const Int vpsNumProfileTierLevelMinus1 = 0; //TBD
1576  vps.setVpsNumProfileTierLevelMinus1( vpsNumProfileTierLevelMinus1 ); 
1577 
1578  for (Int i = 0; i <= vps.getVpsNumProfileTierLevelMinus1(); i++ )
1579  {
1580    vps.setVpsProfilePresentFlag( i, true ); 
1581  }
1582}
1583
1584
1585Void TAppEncTop::xSetRepFormat( TComVPS& vps )
1586{
1587  vps.setRepFormatIdxPresentFlag( true ); 
1588  vps.setVpsNumRepFormatsMinus1 ( 0    ); 
1589
1590  TComRepFormat* repFormat = new TComRepFormat; 
1591
1592  repFormat->setBitDepthVpsChromaMinus8   ( g_bitDepthC - 8 ); 
1593  repFormat->setBitDepthVpsLumaMinus8     ( g_bitDepthY - 8 );
1594  repFormat->setChromaFormatVpsIdc        ( CHROMA_420      );
1595  repFormat->setPicHeightVpsInLumaSamples ( m_iSourceHeight );
1596  repFormat->setPicWidthVpsInLumaSamples  ( m_iSourceWidth  );   
1597  repFormat->setChromaAndBitDepthVpsPresentFlag( true );   
1598  // ToDo not supported yet.
1599  //repFormat->setSeparateColourPlaneVpsFlag( );
1600
1601  assert( vps.getRepFormat( 0 ) == NULL ); 
1602  vps.setRepFormat( 0 , repFormat );
1603
1604  for(Int i = 0; i <= vps.getMaxLayersMinus1(); i++ )
1605  {
1606    vps.setVpsRepFormatIdx( i , 0 ); 
1607  }
1608}
1609
1610Void TAppEncTop::xSetDpbSize                ( TComVPS& vps )
1611{
1612  // These settings need to be verified
1613
1614  TComDpbSize* dpbSize = vps.getDpbSize(); 
1615
1616  assert ( dpbSize != 0 ); 
1617
1618  for( Int i = 1; i < vps.getNumOutputLayerSets(); i++ )
1619  { 
1620    std::vector<Int> targetDecLayerIdList = vps.getTargetDecLayerIdList( i ); 
1621    dpbSize->setSubLayerFlagInfoPresentFlag( i, m_subLayerFlagInfoPresentFlag );
1622
1623    if ( dpbSize->getSubLayerFlagInfoPresentFlag( i ) )
1624    {
1625      for( Int j = 0; j  <=  vps.getMaxTLayers() - 1 ; j++ )
1626      {   
1627        Int maxNumReorderPics  = MIN_INT; 
1628        Int maxDecPicBuffering = MIN_INT; 
1629        Int maxLatencyIncrease = MIN_INT; 
1630
1631        Int prevMaxNumReorderPics  = MIN_INT; 
1632        Int prevMaxDecPicBuffering = MIN_INT; 
1633        Int prevMaxLatencyIncrease = MIN_INT; 
1634
1635        assert( vps.getNumSubDpbs( vps.getOutputLayerSetIdxMinus1( i ) + 1 ) == targetDecLayerIdList.size() ); 
1636        for( Int k = 0; k < vps.getNumSubDpbs( vps.getOutputLayerSetIdxMinus1( i ) + 1 ); k++ )   
1637        {
1638          Int layerIdInVps = vps.getLayerIdInVps( targetDecLayerIdList[k] );           
1639          dpbSize->setMaxVpsDecPicBufferingMinus1( i, k, j, m_maxDecPicBufferingMvc[ layerIdInVps ][ j ] - 1 );
1640        }       
1641
1642        for ( Int idx = 0; idx < targetDecLayerIdList.size(); idx++ )
1643        {
1644          Int layerIdInVps = vps.getLayerIdInVps( targetDecLayerIdList[ idx ] ); 
1645          maxNumReorderPics = std::max( maxNumReorderPics, m_numReorderPicsMvc[ layerIdInVps ][ j ] ); 
1646        }
1647        assert( maxNumReorderPics != MIN_INT ); 
1648        dpbSize->setMaxVpsNumReorderPics( i, j, maxNumReorderPics );
1649
1650        // To Be Done !
1651        // dpbSize->setMaxVpsLatencyIncreasePlus1( i, j, uiCode );
1652
1653        if( j > 0 ) 
1654        {
1655          dpbSize->setSubLayerDpbInfoPresentFlag( i, j, prevMaxDecPicBuffering == maxDecPicBuffering && prevMaxLatencyIncrease == maxLatencyIncrease && prevMaxNumReorderPics == maxNumReorderPics );
1656        }       
1657
1658        prevMaxNumReorderPics   = maxNumReorderPics; 
1659        prevMaxDecPicBuffering  = maxDecPicBuffering; 
1660        prevMaxLatencyIncrease  = maxLatencyIncrease; 
1661      } 
1662    } 
1663  } 
1664}
1665
1666
1667Void TAppEncTop::xSetLayerSets( TComVPS& vps )
1668{   
1669  // Layer sets
1670  vps.setVpsNumLayerSetsMinus1   ( m_vpsNumLayerSets - 1 ); 
1671  vps.setVpsNumberLayerSetsMinus1( vps.getVpsNumLayerSetsMinus1() ); 
1672   
1673  for (Int lsIdx = 0; lsIdx < m_vpsNumLayerSets; lsIdx++ )
1674  {
1675    for( Int layerId = 0; layerId < MAX_NUM_LAYER_IDS; layerId++ )
1676    {
1677      vps.setLayerIdIncludedFlag( false, lsIdx, layerId ); 
1678    }
1679    for ( Int i = 0; i < m_layerIdsInSets[lsIdx].size(); i++)
1680    {       
1681      vps.setLayerIdIncludedFlag( true, lsIdx, vps.getLayerIdInNuh( m_layerIdsInSets[lsIdx][i] ) ); 
1682    } 
1683  }
1684  vps.deriveLayerSetLayerIdList(); 
1685
1686  Int numAddOuputLayerSets = (Int) m_outputLayerSetIdx.size(); 
1687  // Additional output layer sets + profileLevelTierIdx
1688  vps.setDefaultOneTargetOutputLayerIdc   ( m_defaultOneTargetOutputLayerIdc ); 
1689  vps.setMoreOutputLayerSetsThanDefaultFlag( numAddOuputLayerSets       != 0 );   
1690  vps.setNumAddOutputLayerSetsMinus1       ( numAddOuputLayerSets - 1        ); 
1691
1692
1693
1694  for (Int lsIdx = 0; lsIdx < m_vpsNumLayerSets; lsIdx++)
1695  {
1696    if ( lsIdx > 0 ) 
1697    {
1698      vps.setProfileLevelTierIdx( lsIdx, m_profileLevelTierIdx[ lsIdx ] ); 
1699    } 
1700
1701    vps.setOutputLayerSetIdxMinus1( lsIdx, lsIdx - 1 ); 
1702
1703    for (Int i = 0; i < m_layerIdsInSets[ lsIdx ].size(); i++ )
1704    { 
1705      vps.setOutputLayerFlag( lsIdx, i, vps.inferOutputLayerFlag( lsIdx, i ));       
1706    }
1707  }
1708
1709  for (Int addOutLs = 0; addOutLs < numAddOuputLayerSets; addOutLs++ )
1710  {
1711    vps.setProfileLevelTierIdx( m_vpsNumLayerSets + addOutLs, m_profileLevelTierIdx[ addOutLs ] ); 
1712
1713    Int refLayerSetIdx = m_outputLayerSetIdx[ addOutLs ];     
1714    vps.setOutputLayerSetIdxMinus1( m_vpsNumLayerSets + addOutLs, refLayerSetIdx - 1 ); 
1715
1716    for (Int i = 0; i < m_layerIdsInSets[ refLayerSetIdx].size(); i++ )
1717    {
1718      Bool outputLayerFlag = false; 
1719      for (Int j = 0; j < m_layerIdsInAddOutputLayerSet[ addOutLs ].size(); j++ )
1720      {
1721        if (  m_layerIdsInAddOutputLayerSet[addOutLs][ j ] == m_layerIdsInSets[ refLayerSetIdx][ i ] )
1722        {
1723          outputLayerFlag = true; 
1724          break; 
1725        }
1726      }
1727      vps.setOutputLayerFlag( m_vpsNumLayerSets + addOutLs, i, outputLayerFlag );       
1728    }
1729  }
1730  vps.deriveTargetLayerIdLists(); 
1731}
1732
1733Void TAppEncTop::xSetVPSVUI( TComVPS& vps )
1734{
1735  vps.setVpsVuiPresentFlag( m_vpsVuiPresentFlag ); 
1736
1737  if ( m_vpsVuiPresentFlag )
1738  {
1739    TComVPSVUI* pcVPSVUI = vps.getVPSVUI(  ); 
1740
1741    assert( pcVPSVUI ); 
1742
1743
1744    // All this stuff could actually be derived by the encoder,
1745    // however preliminary setting it from input parameters
1746
1747    pcVPSVUI->setCrossLayerPicTypeAlignedFlag( m_crossLayerPicTypeAlignedFlag );
1748    pcVPSVUI->setCrossLayerIrapAlignedFlag   ( m_crossLayerIrapAlignedFlag    );
1749
1750    pcVPSVUI->setBitRatePresentVpsFlag( m_bitRatePresentVpsFlag );
1751    pcVPSVUI->setPicRatePresentVpsFlag( m_picRatePresentVpsFlag );
1752
1753    if( pcVPSVUI->getBitRatePresentVpsFlag( )  ||  pcVPSVUI->getPicRatePresentVpsFlag( ) )
1754    {
1755      for( Int i = 0; i  <=  vps.getVpsNumberLayerSetsMinus1(); i++ )
1756      {
1757        for( Int j = 0; j  <=  vps.getMaxTLayers(); j++ ) 
1758        {
1759          if( pcVPSVUI->getBitRatePresentVpsFlag( ) && m_bitRatePresentFlag[i].size() > j )
1760          {
1761            pcVPSVUI->setBitRatePresentFlag( i, j, m_bitRatePresentFlag[i][j] );           
1762          }
1763          if( pcVPSVUI->getPicRatePresentVpsFlag( ) && m_picRatePresentFlag[i].size() > j   )
1764          {
1765            pcVPSVUI->setPicRatePresentFlag( i, j, m_picRatePresentFlag[i][j] );
1766          }
1767          if( pcVPSVUI->getBitRatePresentFlag( i, j )  && m_avgBitRate[i].size() > j )
1768          {
1769            pcVPSVUI->setAvgBitRate( i, j, m_avgBitRate[i][j] );         
1770          }
1771          if( pcVPSVUI->getBitRatePresentFlag( i, j )  && m_maxBitRate[i].size() > j )
1772          {
1773            pcVPSVUI->setMaxBitRate( i, j, m_maxBitRate[i][j] );
1774          }
1775          if( pcVPSVUI->getPicRatePresentFlag( i, j ) && m_constantPicRateIdc[i].size() > j )
1776          {
1777            pcVPSVUI->setConstantPicRateIdc( i, j, m_constantPicRateIdc[i][j] );
1778          }
1779          if( pcVPSVUI->getPicRatePresentFlag( i, j ) && m_avgPicRate[i].size() > j )
1780          {
1781            pcVPSVUI->setAvgPicRate( i, j, m_avgPicRate[i][j] );
1782          }
1783        }
1784      }
1785    }
1786
1787    pcVPSVUI->setTilesNotInUseFlag( m_tilesNotInUseFlag );
1788
1789    if( !pcVPSVUI->getTilesNotInUseFlag() ) 
1790    {     
1791      for( Int i = 0; i  <=  vps.getMaxLayersMinus1(); i++ )
1792      {
1793        pcVPSVUI->setTilesInUseFlag( i, m_tilesInUseFlag[ i ] );
1794        if( pcVPSVUI->getTilesInUseFlag( i ) ) 
1795        {
1796          pcVPSVUI->setLoopFilterNotAcrossTilesFlag( i, m_loopFilterNotAcrossTilesFlag[ i ] );
1797        }
1798      } 
1799
1800      for( Int i = 1; i  <=  vps.getMaxLayersMinus1(); i++ ) 
1801      {
1802        for( Int j = 0; j < vps.getNumDirectRefLayers( vps.getLayerIdInNuh( i ) ) ; j++ )
1803        { 
1804          Int layerIdx = vps.getLayerIdInVps( vps.getRefLayerId(vps.getLayerIdInNuh( i ) , j  )); 
1805          if( pcVPSVUI->getTilesInUseFlag( i )  &&  pcVPSVUI->getTilesInUseFlag( layerIdx ) ) 
1806          {
1807            pcVPSVUI->setTileBoundariesAlignedFlag( i, j, m_tileBoundariesAlignedFlag[i][j] );
1808          }
1809        } 
1810      }
1811    } 
1812
1813    pcVPSVUI->setWppNotInUseFlag( m_wppNotInUseFlag );
1814
1815    if( !pcVPSVUI->getWppNotInUseFlag( ) )
1816    {
1817      for( Int i = 1; i  <=  vps.getMaxLayersMinus1(); i++ ) 
1818      {
1819        pcVPSVUI->setWppInUseFlag( i, m_wppInUseFlag[ i ]);
1820      }
1821    }
1822
1823    pcVPSVUI->setIlpRestrictedRefLayersFlag( m_ilpRestrictedRefLayersFlag );
1824
1825    if( pcVPSVUI->getIlpRestrictedRefLayersFlag( ) )
1826    {
1827      for( Int i = 1; i  <=  vps.getMaxLayersMinus1(); i++ )
1828      {
1829        for( Int j = 0; j < vps.getNumDirectRefLayers( vps.getLayerIdInNuh( i ) ); j++ )
1830        {
1831          if ( m_minSpatialSegmentOffsetPlus1[i].size() > j )
1832          {       
1833            pcVPSVUI->setMinSpatialSegmentOffsetPlus1( i, j, m_minSpatialSegmentOffsetPlus1[i][j] );
1834          }
1835          if( pcVPSVUI->getMinSpatialSegmentOffsetPlus1( i, j ) > 0 )
1836          {
1837            if ( m_ctuBasedOffsetEnabledFlag[i].size() > j )
1838            {       
1839              pcVPSVUI->setCtuBasedOffsetEnabledFlag( i, j, m_ctuBasedOffsetEnabledFlag[i][j] );
1840            }
1841            if( pcVPSVUI->getCtuBasedOffsetEnabledFlag( i, j ) )
1842            {
1843              if ( m_minHorizontalCtuOffsetPlus1[i].size() > j )
1844              {
1845                pcVPSVUI->setMinHorizontalCtuOffsetPlus1( i, j, m_minHorizontalCtuOffsetPlus1[i][j] );
1846              }
1847            }
1848          }
1849        }
1850      }
1851    }     
1852    pcVPSVUI->setVideoSignalInfoIdxPresentFlag( true ); 
1853    pcVPSVUI->setVpsNumVideoSignalInfoMinus1  ( 0    ); 
1854
1855    assert ( pcVPSVUI->getVideoSignalInfo( 0 ) == NULL );
1856
1857    TComVideoSignalInfo* videoSignalInfo = new TComVideoSignalInfo; 
1858
1859    videoSignalInfo->setColourPrimariesVps        ( m_colourPrimaries ); 
1860    videoSignalInfo->setMatrixCoeffsVps           ( m_matrixCoefficients ); 
1861    videoSignalInfo->setTransferCharacteristicsVps( m_transferCharacteristics ); 
1862    videoSignalInfo->setVideoVpsFormat            ( m_videoFormat ); 
1863    videoSignalInfo->setVideoFullRangeVpsFlag     ( m_videoFullRangeFlag ); 
1864
1865    pcVPSVUI->setVideoSignalInfo( 0, videoSignalInfo );       
1866
1867    for (Int i = 0; i < m_numberOfLayers; i++)
1868    {     
1869      pcVPSVUI->setVpsVideoSignalInfoIdx( i, 0 ); 
1870    }
1871    pcVPSVUI->setVpsVuiBspHrdPresentFlag( false ); // TBD
1872  }
1873}
1874#endif
1875#if H_3D
1876Void TAppEncTop::xSetVPSExtension2( TComVPS& vps )
1877{
1878  for ( Int layer = 0; layer <= vps.getMaxLayersMinus1(); layer++ )
1879  {
1880    Bool isDepth      = ( vps.getDepthId( layer ) == 1 ) ;
1881    Bool isLayerZero  = ( layer == 0 ); 
1882
1883#if H_3D_ARP
1884    vps.setUseAdvRP        ( layer, ( isDepth || isLayerZero ) ? 0 : m_uiUseAdvResPred );
1885    vps.setARPStepNum      ( layer, ( isDepth || isLayerZero ) ? 1 : H_3D_ARP_WFNR     );
1886#endif 
1887#if H_3D_SPIVMP
1888    if( isDepth )
1889    {
1890      vps.setSubPULog2Size         ( layer, (layer != 1) ? 6: 0 ); 
1891    }
1892    else
1893    {
1894      vps.setSubPULog2Size         ( layer, (!isLayerZero) ? m_iSubPULog2Size: 0 ); 
1895    }
1896#endif
1897
1898#if H_3D_DIM
1899    vps.setVpsDepthModesFlag( layer, isDepth && !isLayerZero && (m_useDMM || m_useSDC || m_useDLT ) );
1900#endif
1901
1902#if H_3D_IV_MERGE
1903    if( isDepth )
1904    {
1905      vps.setIvMvPredFlag         ( layer, (layer != 1) && m_ivMvPredFlag[1] ); 
1906    }
1907    else
1908    {
1909      vps.setIvMvPredFlag         ( layer, !isLayerZero && m_ivMvPredFlag[0] ); 
1910    }
1911#endif
1912#if H_3D_NBDV_REF
1913    vps.setDepthRefinementFlag  ( layer, !isLayerZero && !isDepth && m_depthRefinementFlag );         
1914#endif
1915#if H_3D_VSP
1916    vps.setViewSynthesisPredFlag( layer, !isLayerZero && !isDepth && m_viewSynthesisPredFlag );         
1917#endif
1918#if H_3D_DBBP
1919    vps.setUseDBBP              ( layer, !isLayerZero && !isDepth && m_bUseDBBP );
1920#endif
1921#if H_3D_INTER_SDC
1922    vps.setInterSDCFlag( layer, !isLayerZero && isDepth && m_bDepthInterSDCFlag );
1923#endif
1924#if H_3D_IV_MERGE
1925    vps.setMPIFlag( layer, !isLayerZero && isDepth && m_bMPIFlag );
1926#endif
1927  } 
1928#if QC_SPIVMP_MPI_G0119
1929  vps.setSubPUMPILog2Size( m_iSubPUMPILog2Size );
1930#endif
1931#if H_3D
1932  vps.setIvMvScalingFlag( m_ivMvScalingFlag );   
1933#endif
1934}
1935
1936Void TAppEncTop::xDeriveDltArray( TComVPS& vps, TComDLT& dlt )
1937{
1938  Int  iNumDepthViews  = 0;
1939  Bool bDltPresentFlag = false;
1940
1941  for ( Int layer = 0; layer <= vps.getMaxLayersMinus1(); layer++ )
1942  {
1943    Bool isDepth = ( vps.getDepthId( layer ) == 1 );
1944
1945    if ( isDepth )
1946    {
1947      iNumDepthViews++;
1948    }
1949
1950    dlt.setUseDLTFlag( layer , isDepth && m_useDLT );
1951    if( dlt.getUseDLTFlag( layer ) )
1952    {
1953      xAnalyzeInputBaseDepth(layer, max(m_iIntraPeriod[layer], 24), &vps, &dlt);
1954      bDltPresentFlag = bDltPresentFlag || dlt.getUseDLTFlag(layer);
1955#if H_3D_DELTA_DLT
1956      dlt.setInterViewDltPredEnableFlag(layer, (dlt.getUseDLTFlag(layer) && (layer>1)));
1957#endif
1958    }
1959  }
1960
1961  dlt.setDltPresentFlag( bDltPresentFlag );
1962  dlt.setNumDepthViews ( iNumDepthViews  );
1963}
1964#endif
1965
1966//! \}
Note: See TracBrowser for help on using the repository browser.