source: 3DVCSoftware/branches/HTM-8.2-dev0-MediaTek/source/App/TAppEncoder/TAppEncTop.cpp @ 628

Last change on this file since 628 was 622, checked in by tech, 11 years ago

Merged 8.0-dev0@621 (MV-HEVC 5 HLS).

  • Property svn:eol-style set to native
File size: 53.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-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_MV
79  Int maxTempLayer = -1; 
80  for (Int j = 0; j < m_numberOfLayers; j++)
81  {
82    maxTempLayer = max( m_maxTempLayerMvc[ j ], maxTempLayer ); 
83  }
84
85  vps.setMaxTLayers                       ( maxTempLayer );
86  if ( maxTempLayer )
87  {
88    vps.setTemporalNestingFlag(true);
89  }
90#if H_MV5
91  vps.setMaxLayersMinus1( m_numberOfLayers - 1);
92#else
93  vps.setMaxLayers( m_numberOfLayers );
94#endif
95  for(Int i = 0; i < MAX_TLAYER; i++)
96  {
97    Int maxNumReOrderPics  = 0; 
98    Int maxDecPicBuffering = 0;
99    for (Int j = 0; j < m_numberOfLayers; j++)
100    {
101      maxNumReOrderPics  = max( maxNumReOrderPics,  m_numReorderPicsMvc    [ j ][ i ] );     
102      maxDecPicBuffering = max( maxDecPicBuffering, m_maxDecPicBufferingMvc[ j ][ i ] );     
103    }
104
105    vps.setNumReorderPics                 ( maxNumReOrderPics  ,i );
106    vps.setMaxDecPicBuffering             ( maxDecPicBuffering ,i );
107  }
108#else
109  vps.setMaxTLayers                       ( m_maxTempLayer );
110  if (m_maxTempLayer == 1)
111  {
112    vps.setTemporalNestingFlag(true);
113  }
114  vps.setMaxLayers                        ( 1 );
115  for(Int i = 0; i < MAX_TLAYER; i++)
116  {
117    vps.setNumReorderPics                 ( m_numReorderPics[i], i );
118    vps.setMaxDecPicBuffering             ( m_maxDecPicBuffering[i], i );
119  }
120#endif
121#if H_MV
122  xSetLayerIds             ( vps );   
123  xSetDimensionIdAndLength ( vps );
124  xSetDependencies( vps );
125  xSetProfileTierLevel     ( vps ); 
126#if H_MV5
127  xSetRepFormat            ( vps ); 
128#endif
129  xSetLayerSets            ( vps ); 
130#if H_MV5
131  xSetVPSVUI               ( vps ); 
132#endif
133#if H_3D
134#if !H_MV5
135  vps.initViewIndex(); 
136#endif
137  xSetVPSExtension2        ( vps ); 
138  m_ivPicLists.setVPS      ( &vps ); 
139#endif
140
141
142#if H_MV5
143  for(Int layerIdInVps = 0; layerIdInVps < m_numberOfLayers; layerIdInVps++)
144#else
145  for(Int layer = 0; layer < m_numberOfLayers; layer++)
146#endif
147  {
148    m_frameRcvd                 .push_back(0);
149    m_acTEncTopList             .push_back(new TEncTop); 
150    m_acTVideoIOYuvInputFileList.push_back(new TVideoIOYuv);
151    m_acTVideoIOYuvReconFileList.push_back(new TVideoIOYuv);
152    m_picYuvRec                 .push_back(new TComList<TComPicYuv*>) ;
153#if H_MV5   
154    m_ivPicLists.push_back( m_acTEncTopList[ layerIdInVps ]->getListPic()  ); 
155    TEncTop& m_cTEncTop = *m_acTEncTopList[ layerIdInVps ];  // It is not a member, but this name helps avoiding code duplication !!!
156
157    Int layerId = vps.getLayerIdInNuh( layerIdInVps );
158    m_cTEncTop.setLayerIdInVps                 ( layerIdInVps ); 
159    m_cTEncTop.setLayerId                      ( layerId );   
160    m_cTEncTop.setViewId                       ( vps.getViewId      (  layerId ) );
161    m_cTEncTop.setViewIndex                    ( vps.getViewIndex   (  layerId ) );
162#else
163    m_ivPicLists.push_back( m_acTEncTopList[ layer ]->getListPic()  ); 
164    TEncTop& m_cTEncTop = *m_acTEncTopList[ layer ];  // It is not a member, but this name helps avoiding code duplication !!!
165   
166    m_cTEncTop.setLayerIdInVps                 ( layer ); 
167    m_cTEncTop.setLayerId                      ( vps.getLayerIdInNuh( layer ) );   
168    m_cTEncTop.setViewId                       ( vps.getViewId      ( layer ) );
169
170#endif
171#if H_3D
172#if H_MV5
173    Bool isDepth = ( vps.getDepthId     ( layerId ) != 0 ) ;
174#else
175    Bool isDepth = ( vps.getDepthId     ( layer ) != 0 ) ;
176    m_cTEncTop.setViewIndex                    ( vps.getViewIndex   ( layer ) );
177#endif
178    m_cTEncTop.setIsDepth                      ( isDepth );
179    //====== Camera Parameters =========
180    m_cTEncTop.setCameraParameters             ( &m_cCameraData );     
181    m_cTEncTop.setCamParPrecision              ( isDepth ? false : m_cCameraData.getCamParsCodedPrecision  () );
182    m_cTEncTop.setCamParInSliceHeader          ( isDepth ? 0     : m_cCameraData.getVaryingCameraParameters() );
183    m_cTEncTop.setCodedScale                   ( isDepth ? 0     : m_cCameraData.getCodedScale             () );
184    m_cTEncTop.setCodedOffset                  ( isDepth ? 0     : m_cCameraData.getCodedOffset            () );
185#if H_3D_VSO
186    //====== VSO =========
187    m_cTEncTop.setRenderModelParameters        ( &m_cRenModStrParser ); 
188    m_cTEncTop.setForceLambdaScaleVSO          ( isDepth ? m_bForceLambdaScaleVSO : false );
189    m_cTEncTop.setLambdaScaleVSO               ( isDepth ? m_dLambdaScaleVSO      : 1     );
190    m_cTEncTop.setVSOMode                      ( isDepth ? m_uiVSOMode            : 0     );
191
192    m_cTEncTop.setAllowNegDist                 ( isDepth ? m_bAllowNegDist        : false );
193
194    // SAIT_VSO_EST_A0033
195    m_cTEncTop.setUseEstimatedVSD              ( isDepth ? m_bUseEstimatedVSD     : false );
196
197    // LGE_WVSO_A0119
198    m_cTEncTop.setUseWVSO                      ( isDepth ? m_bUseWVSO             : false );   
199    m_cTEncTop.setVSOWeight                    ( isDepth ? m_iVSOWeight           : 0     );
200    m_cTEncTop.setVSDWeight                    ( isDepth ? m_iVSDWeight           : 0     );
201    m_cTEncTop.setDWeight                      ( isDepth ? m_iDWeight             : 0     );
202#endif // H_3D_VSO
203#if H_MV5
204#if H_3D_ARP
205    //====== Advanced Inter-view Residual Prediction =========
206    m_cTEncTop.setUseAdvRP                     ( ( isDepth || 0==layerIdInVps ) ? 0 : m_uiUseAdvResPred );
207    m_cTEncTop.setARPStepNum                   ( ( isDepth || 0==layerIdInVps ) ? 1 : H_3D_ARP_WFNR     );
208#endif
209#if H_3D_IC
210    m_cTEncTop.setUseIC                        ( vps.getViewIndex( layerId ) == 0 ? false : m_abUseIC[isDepth ? 1 : 0] );
211#endif
212#else
213#if H_3D_ARP
214    //====== Advanced Inter-view Residual Prediction =========
215    m_cTEncTop.setUseAdvRP                     ( ( isDepth || 0==layer ) ? 0 : m_uiUseAdvResPred );
216    m_cTEncTop.setARPStepNum                   ( ( isDepth || 0==layer ) ? 1 : H_3D_ARP_WFNR     );
217#endif
218#if H_3D_IC
219    m_cTEncTop.setUseIC                        ( vps.getViewIndex( layer ) == 0 ? false : m_abUseIC[isDepth ? 1 : 0] );
220#endif
221#endif
222  //========== Depth intra modes ==========
223#if H_3D_DIM
224    m_cTEncTop.setUseDMM                       ( isDepth ? m_useDMM               : false );
225    m_cTEncTop.setUseRBC                       ( isDepth ? m_useRBC               : false );
226    m_cTEncTop.setUseSDC                       ( isDepth ? m_useSDC               : false );
227    m_cTEncTop.setUseDLT                       ( isDepth ? m_useDLT               : false );
228#endif
229#if H_3D_QTLPC
230    m_cTEncTop.setUseQTL                       ( isDepth ? m_bUseQTL               : false );
231    m_cTEncTop.setUsePC                        ( isDepth ? m_bUsePC                : false );
232#endif
233    //====== Depth Inter SDC =========
234#if LGE_INTER_SDC_E0156
235    m_cTEncTop.setInterSDCEnable               ( isDepth ? m_bDepthInterSDCFlag    : false );
236#endif
237#endif // H_3D
238
239    m_cTEncTop.setIvPicLists                   ( &m_ivPicLists ); 
240#endif // H_MV
241  m_cTEncTop.setVPS(&vps);
242
243  m_cTEncTop.setProfile(m_profile);
244  m_cTEncTop.setLevel(m_levelTier, m_level);
245  m_cTEncTop.setProgressiveSourceFlag(m_progressiveSourceFlag);
246  m_cTEncTop.setInterlacedSourceFlag(m_interlacedSourceFlag);
247  m_cTEncTop.setNonPackedConstraintFlag(m_nonPackedConstraintFlag);
248  m_cTEncTop.setFrameOnlyConstraintFlag(m_frameOnlyConstraintFlag);
249 
250  m_cTEncTop.setFrameRate                    ( m_iFrameRate );
251  m_cTEncTop.setFrameSkip                    ( m_FrameSkip );
252  m_cTEncTop.setSourceWidth                  ( m_iSourceWidth );
253  m_cTEncTop.setSourceHeight                 ( m_iSourceHeight );
254  m_cTEncTop.setConformanceWindow            ( m_confLeft, m_confRight, m_confTop, m_confBottom );
255  m_cTEncTop.setFramesToBeEncoded            ( m_framesToBeEncoded );
256 
257  //====== Coding Structure ========
258  m_cTEncTop.setIntraPeriod                  ( m_iIntraPeriod );
259  m_cTEncTop.setDecodingRefreshType          ( m_iDecodingRefreshType );
260  m_cTEncTop.setGOPSize                      ( m_iGOPSize );
261#if H_MV
262#if H_MV5
263m_cTEncTop.setGopList                      ( m_GOPListMvc[layerIdInVps] );
264  m_cTEncTop.setExtraRPSs                    ( m_extraRPSsMvc[layerIdInVps] );
265  for(Int i = 0; i < MAX_TLAYER; i++)
266  {
267    m_cTEncTop.setNumReorderPics             ( m_numReorderPicsMvc[layerIdInVps][i], i );
268    m_cTEncTop.setMaxDecPicBuffering         ( m_maxDecPicBufferingMvc[layerIdInVps][i], i );
269  }
270#else
271  m_cTEncTop.setGopList                      ( m_GOPListMvc[layer] );
272  m_cTEncTop.setExtraRPSs                    ( m_extraRPSsMvc[layer] );
273  for(Int i = 0; i < MAX_TLAYER; i++)
274  {
275    m_cTEncTop.setNumReorderPics             ( m_numReorderPicsMvc[layer][i], i );
276    m_cTEncTop.setMaxDecPicBuffering         ( m_maxDecPicBufferingMvc[layer][i], i );
277  }
278#endif
279#else
280  m_cTEncTop.setGopList                      ( m_GOPList );
281  m_cTEncTop.setExtraRPSs                    ( m_extraRPSs );
282  for(Int i = 0; i < MAX_TLAYER; i++)
283  {
284    m_cTEncTop.setNumReorderPics             ( m_numReorderPics[i], i );
285    m_cTEncTop.setMaxDecPicBuffering         ( m_maxDecPicBuffering[i], i );
286  }
287#endif
288  for( UInt uiLoop = 0; uiLoop < MAX_TLAYER; ++uiLoop )
289  {
290    m_cTEncTop.setLambdaModifier( uiLoop, m_adLambdaModifier[ uiLoop ] );
291  }
292#if H_MV
293#if H_MV5
294  m_cTEncTop.setQP                           ( m_iQP[layerIdInVps] );
295#else
296  m_cTEncTop.setQP                           ( m_iQP[layer] );
297#endif
298#else
299  m_cTEncTop.setQP                           ( m_iQP );
300#endif
301
302  m_cTEncTop.setPad                          ( m_aiPad );
303
304#if H_MV
305#if H_MV5
306  m_cTEncTop.setMaxTempLayer                 ( m_maxTempLayerMvc[layerIdInVps] );
307#else
308  m_cTEncTop.setMaxTempLayer                 ( m_maxTempLayerMvc[layer] );
309#endif
310#else
311  m_cTEncTop.setMaxTempLayer                 ( m_maxTempLayer );
312#endif
313  m_cTEncTop.setUseAMP( m_enableAMP );
314 
315  //===== Slice ========
316 
317  //====== Loop/Deblock Filter ========
318#if H_MV
319#if H_MV5
320  m_cTEncTop.setLoopFilterDisable            ( m_bLoopFilterDisable[layerIdInVps]);
321#else
322  m_cTEncTop.setLoopFilterDisable            ( m_bLoopFilterDisable[layer]);
323#endif
324#else
325  m_cTEncTop.setLoopFilterDisable            ( m_bLoopFilterDisable       );
326#endif
327  m_cTEncTop.setLoopFilterOffsetInPPS        ( m_loopFilterOffsetInPPS );
328  m_cTEncTop.setLoopFilterBetaOffset         ( m_loopFilterBetaOffsetDiv2  );
329  m_cTEncTop.setLoopFilterTcOffset           ( m_loopFilterTcOffsetDiv2    );
330  m_cTEncTop.setDeblockingFilterControlPresent( m_DeblockingFilterControlPresent);
331  m_cTEncTop.setDeblockingFilterMetric       ( m_DeblockingFilterMetric );
332
333  //====== Motion search ========
334  m_cTEncTop.setFastSearch                   ( m_iFastSearch  );
335  m_cTEncTop.setSearchRange                  ( m_iSearchRange );
336  m_cTEncTop.setBipredSearchRange            ( m_bipredSearchRange );
337
338  //====== Quality control ========
339  m_cTEncTop.setMaxDeltaQP                   ( m_iMaxDeltaQP  );
340  m_cTEncTop.setMaxCuDQPDepth                ( m_iMaxCuDQPDepth  );
341
342  m_cTEncTop.setChromaCbQpOffset               ( m_cbQpOffset     );
343  m_cTEncTop.setChromaCrQpOffset            ( m_crQpOffset  );
344
345#if ADAPTIVE_QP_SELECTION
346  m_cTEncTop.setUseAdaptQpSelect             ( m_bUseAdaptQpSelect   );
347#endif
348
349  Int lowestQP;
350  lowestQP =  - 6*(g_bitDepthY - 8); // XXX: check
351
352#if H_MV
353#if H_MV5
354  if ((m_iMaxDeltaQP == 0 ) && (m_iQP[layerIdInVps] == lowestQP) && (m_useLossless == true))
355#else
356  if ((m_iMaxDeltaQP == 0 ) && (m_iQP[layer] == lowestQP) && (m_useLossless == true))
357#endif
358#else
359  if ((m_iMaxDeltaQP == 0 ) && (m_iQP == lowestQP) && (m_useLossless == true))
360#endif
361  {
362    m_bUseAdaptiveQP = false;
363  }
364  m_cTEncTop.setUseAdaptiveQP                ( m_bUseAdaptiveQP  );
365  m_cTEncTop.setQPAdaptationRange            ( m_iQPAdaptationRange );
366 
367  //====== Tool list ========
368  m_cTEncTop.setUseSBACRD                    ( m_bUseSBACRD   );
369  m_cTEncTop.setDeltaQpRD                    ( m_uiDeltaQpRD  );
370  m_cTEncTop.setUseASR                       ( m_bUseASR      );
371  m_cTEncTop.setUseHADME                     ( m_bUseHADME    );
372  m_cTEncTop.setUseLossless                  ( m_useLossless );
373#if H_MV
374#if H_MV5
375  m_cTEncTop.setdQPs                         ( m_aidQP[layerIdInVps]   );
376#else
377  m_cTEncTop.setdQPs                         ( m_aidQP[layer]   );
378#endif
379#else
380  m_cTEncTop.setdQPs                         ( m_aidQP        );
381#endif
382  m_cTEncTop.setUseRDOQ                      ( m_useRDOQ     );
383  m_cTEncTop.setUseRDOQTS                    ( m_useRDOQTS   );
384  m_cTEncTop.setRDpenalty                 ( m_rdPenalty );
385  m_cTEncTop.setQuadtreeTULog2MaxSize        ( m_uiQuadtreeTULog2MaxSize );
386  m_cTEncTop.setQuadtreeTULog2MinSize        ( m_uiQuadtreeTULog2MinSize );
387  m_cTEncTop.setQuadtreeTUMaxDepthInter      ( m_uiQuadtreeTUMaxDepthInter );
388  m_cTEncTop.setQuadtreeTUMaxDepthIntra      ( m_uiQuadtreeTUMaxDepthIntra );
389  m_cTEncTop.setUseFastEnc                   ( m_bUseFastEnc  );
390  m_cTEncTop.setUseEarlyCU                   ( m_bUseEarlyCU  ); 
391  m_cTEncTop.setUseFastDecisionForMerge      ( m_useFastDecisionForMerge  );
392  m_cTEncTop.setUseCbfFastMode            ( m_bUseCbfFastMode  );
393  m_cTEncTop.setUseEarlySkipDetection            ( m_useEarlySkipDetection );
394
395  m_cTEncTop.setUseTransformSkip             ( m_useTransformSkip      );
396  m_cTEncTop.setUseTransformSkipFast         ( m_useTransformSkipFast  );
397  m_cTEncTop.setUseConstrainedIntraPred      ( m_bUseConstrainedIntraPred );
398  m_cTEncTop.setPCMLog2MinSize          ( m_uiPCMLog2MinSize);
399  m_cTEncTop.setUsePCM                       ( m_usePCM );
400  m_cTEncTop.setPCMLog2MaxSize               ( m_pcmLog2MaxSize);
401  m_cTEncTop.setMaxNumMergeCand              ( m_maxNumMergeCand );
402 
403
404  //====== Weighted Prediction ========
405  m_cTEncTop.setUseWP                   ( m_useWeightedPred      );
406  m_cTEncTop.setWPBiPred                ( m_useWeightedBiPred   );
407  //====== Parallel Merge Estimation ========
408  m_cTEncTop.setLog2ParallelMergeLevelMinus2 ( m_log2ParallelMergeLevel - 2 );
409
410  //====== Slice ========
411  m_cTEncTop.setSliceMode               ( m_sliceMode                );
412  m_cTEncTop.setSliceArgument           ( m_sliceArgument            );
413
414  //====== Dependent Slice ========
415  m_cTEncTop.setSliceSegmentMode        ( m_sliceSegmentMode         );
416  m_cTEncTop.setSliceSegmentArgument    ( m_sliceSegmentArgument     );
417  Int iNumPartInCU = 1<<(m_uiMaxCUDepth<<1);
418  if(m_sliceSegmentMode==FIXED_NUMBER_OF_LCU)
419  {
420    m_cTEncTop.setSliceSegmentArgument ( m_sliceSegmentArgument * iNumPartInCU );
421  }
422  if(m_sliceMode==FIXED_NUMBER_OF_LCU)
423  {
424    m_cTEncTop.setSliceArgument ( m_sliceArgument * iNumPartInCU );
425  }
426  if(m_sliceMode==FIXED_NUMBER_OF_TILES)
427  {
428    m_cTEncTop.setSliceArgument ( m_sliceArgument );
429  }
430 
431  if(m_sliceMode == 0 )
432  {
433    m_bLFCrossSliceBoundaryFlag = true;
434  }
435  m_cTEncTop.setLFCrossSliceBoundaryFlag( m_bLFCrossSliceBoundaryFlag );
436#if H_MV
437#if H_MV5
438  m_cTEncTop.setUseSAO ( m_bUseSAO[layerIdInVps] );
439#else
440  m_cTEncTop.setUseSAO ( m_bUseSAO[layer] );
441#endif
442#else
443  m_cTEncTop.setUseSAO ( m_bUseSAO );
444#endif
445  m_cTEncTop.setMaxNumOffsetsPerPic (m_maxNumOffsetsPerPic);
446
447  m_cTEncTop.setSaoLcuBoundary (m_saoLcuBoundary);
448  m_cTEncTop.setSaoLcuBasedOptimization (m_saoLcuBasedOptimization);
449  m_cTEncTop.setPCMInputBitDepthFlag  ( m_bPCMInputBitDepthFlag); 
450  m_cTEncTop.setPCMFilterDisableFlag  ( m_bPCMFilterDisableFlag); 
451
452  m_cTEncTop.setDecodedPictureHashSEIEnabled(m_decodedPictureHashSEIEnabled);
453  m_cTEncTop.setRecoveryPointSEIEnabled( m_recoveryPointSEIEnabled );
454  m_cTEncTop.setBufferingPeriodSEIEnabled( m_bufferingPeriodSEIEnabled );
455  m_cTEncTop.setPictureTimingSEIEnabled( m_pictureTimingSEIEnabled );
456  m_cTEncTop.setToneMappingInfoSEIEnabled                 ( m_toneMappingInfoSEIEnabled );
457  m_cTEncTop.setTMISEIToneMapId                           ( m_toneMapId );
458  m_cTEncTop.setTMISEIToneMapCancelFlag                   ( m_toneMapCancelFlag );
459  m_cTEncTop.setTMISEIToneMapPersistenceFlag              ( m_toneMapPersistenceFlag );
460  m_cTEncTop.setTMISEICodedDataBitDepth                   ( m_toneMapCodedDataBitDepth );
461  m_cTEncTop.setTMISEITargetBitDepth                      ( m_toneMapTargetBitDepth );
462  m_cTEncTop.setTMISEIModelID                             ( m_toneMapModelId );
463  m_cTEncTop.setTMISEIMinValue                            ( m_toneMapMinValue );
464  m_cTEncTop.setTMISEIMaxValue                            ( m_toneMapMaxValue );
465  m_cTEncTop.setTMISEISigmoidMidpoint                     ( m_sigmoidMidpoint );
466  m_cTEncTop.setTMISEISigmoidWidth                        ( m_sigmoidWidth );
467  m_cTEncTop.setTMISEIStartOfCodedInterva                 ( m_startOfCodedInterval );
468  m_cTEncTop.setTMISEINumPivots                           ( m_numPivots );
469  m_cTEncTop.setTMISEICodedPivotValue                     ( m_codedPivotValue );
470  m_cTEncTop.setTMISEITargetPivotValue                    ( m_targetPivotValue );
471  m_cTEncTop.setTMISEICameraIsoSpeedIdc                   ( m_cameraIsoSpeedIdc );
472  m_cTEncTop.setTMISEICameraIsoSpeedValue                 ( m_cameraIsoSpeedValue );
473  m_cTEncTop.setTMISEIExposureCompensationValueSignFlag   ( m_exposureCompensationValueSignFlag );
474  m_cTEncTop.setTMISEIExposureCompensationValueNumerator  ( m_exposureCompensationValueNumerator );
475  m_cTEncTop.setTMISEIExposureCompensationValueDenomIdc   ( m_exposureCompensationValueDenomIdc );
476  m_cTEncTop.setTMISEIRefScreenLuminanceWhite             ( m_refScreenLuminanceWhite );
477  m_cTEncTop.setTMISEIExtendedRangeWhiteLevel             ( m_extendedRangeWhiteLevel );
478  m_cTEncTop.setTMISEINominalBlackLevelLumaCodeValue      ( m_nominalBlackLevelLumaCodeValue );
479  m_cTEncTop.setTMISEINominalWhiteLevelLumaCodeValue      ( m_nominalWhiteLevelLumaCodeValue );
480  m_cTEncTop.setTMISEIExtendedWhiteLevelLumaCodeValue     ( m_extendedWhiteLevelLumaCodeValue );
481  m_cTEncTop.setFramePackingArrangementSEIEnabled( m_framePackingSEIEnabled );
482  m_cTEncTop.setFramePackingArrangementSEIType( m_framePackingSEIType );
483  m_cTEncTop.setFramePackingArrangementSEIId( m_framePackingSEIId );
484  m_cTEncTop.setFramePackingArrangementSEIQuincunx( m_framePackingSEIQuincunx );
485  m_cTEncTop.setFramePackingArrangementSEIInterpretation( m_framePackingSEIInterpretation );
486  m_cTEncTop.setDisplayOrientationSEIAngle( m_displayOrientationSEIAngle );
487  m_cTEncTop.setTemporalLevel0IndexSEIEnabled( m_temporalLevel0IndexSEIEnabled );
488  m_cTEncTop.setGradualDecodingRefreshInfoEnabled( m_gradualDecodingRefreshInfoEnabled );
489  m_cTEncTop.setDecodingUnitInfoSEIEnabled( m_decodingUnitInfoSEIEnabled );
490  m_cTEncTop.setSOPDescriptionSEIEnabled( m_SOPDescriptionSEIEnabled );
491  m_cTEncTop.setScalableNestingSEIEnabled( m_scalableNestingSEIEnabled );
492  m_cTEncTop.setUniformSpacingIdr          ( m_iUniformSpacingIdr );
493  m_cTEncTop.setNumColumnsMinus1           ( m_iNumColumnsMinus1 );
494  m_cTEncTop.setNumRowsMinus1              ( m_iNumRowsMinus1 );
495  if(m_iUniformSpacingIdr==0)
496  {
497    m_cTEncTop.setColumnWidth              ( m_pColumnWidth );
498    m_cTEncTop.setRowHeight                ( m_pRowHeight );
499  }
500  m_cTEncTop.xCheckGSParameters();
501  Int uiTilesCount          = (m_iNumRowsMinus1+1) * (m_iNumColumnsMinus1+1);
502  if(uiTilesCount == 1)
503  {
504    m_bLFCrossTileBoundaryFlag = true; 
505  }
506  m_cTEncTop.setLFCrossTileBoundaryFlag( m_bLFCrossTileBoundaryFlag );
507  m_cTEncTop.setWaveFrontSynchro           ( m_iWaveFrontSynchro );
508  m_cTEncTop.setWaveFrontSubstreams        ( m_iWaveFrontSubstreams );
509  m_cTEncTop.setTMVPModeId ( m_TMVPModeId );
510  m_cTEncTop.setUseScalingListId           ( m_useScalingListId  );
511  m_cTEncTop.setScalingListFile            ( m_scalingListFile   );
512  m_cTEncTop.setSignHideFlag(m_signHideFlag);
513#if RATE_CONTROL_LAMBDA_DOMAIN
514  m_cTEncTop.setUseRateCtrl         ( m_RCEnableRateControl );
515  m_cTEncTop.setTargetBitrate       ( m_RCTargetBitrate );
516  m_cTEncTop.setKeepHierBit         ( m_RCKeepHierarchicalBit );
517  m_cTEncTop.setLCULevelRC          ( m_RCLCULevelRC );
518  m_cTEncTop.setUseLCUSeparateModel ( m_RCUseLCUSeparateModel );
519  m_cTEncTop.setInitialQP           ( m_RCInitialQP );
520  m_cTEncTop.setForceIntraQP        ( m_RCForceIntraQP );
521#else
522  m_cTEncTop.setUseRateCtrl     ( m_enableRateCtrl);
523  m_cTEncTop.setTargetBitrate   ( m_targetBitrate);
524  m_cTEncTop.setNumLCUInUnit    ( m_numLCUInUnit);
525#endif
526  m_cTEncTop.setTransquantBypassEnableFlag(m_TransquantBypassEnableFlag);
527  m_cTEncTop.setCUTransquantBypassFlagValue(m_CUTransquantBypassFlagValue);
528  m_cTEncTop.setUseRecalculateQPAccordingToLambda( m_recalculateQPAccordingToLambda );
529  m_cTEncTop.setUseStrongIntraSmoothing( m_useStrongIntraSmoothing );
530  m_cTEncTop.setActiveParameterSetsSEIEnabled ( m_activeParameterSetsSEIEnabled ); 
531  m_cTEncTop.setVuiParametersPresentFlag( m_vuiParametersPresentFlag );
532  m_cTEncTop.setAspectRatioIdc( m_aspectRatioIdc );
533  m_cTEncTop.setSarWidth( m_sarWidth );
534  m_cTEncTop.setSarHeight( m_sarHeight );
535  m_cTEncTop.setOverscanInfoPresentFlag( m_overscanInfoPresentFlag );
536  m_cTEncTop.setOverscanAppropriateFlag( m_overscanAppropriateFlag );
537  m_cTEncTop.setVideoSignalTypePresentFlag( m_videoSignalTypePresentFlag );
538  m_cTEncTop.setVideoFormat( m_videoFormat );
539  m_cTEncTop.setVideoFullRangeFlag( m_videoFullRangeFlag );
540  m_cTEncTop.setColourDescriptionPresentFlag( m_colourDescriptionPresentFlag );
541  m_cTEncTop.setColourPrimaries( m_colourPrimaries );
542  m_cTEncTop.setTransferCharacteristics( m_transferCharacteristics );
543  m_cTEncTop.setMatrixCoefficients( m_matrixCoefficients );
544  m_cTEncTop.setChromaLocInfoPresentFlag( m_chromaLocInfoPresentFlag );
545  m_cTEncTop.setChromaSampleLocTypeTopField( m_chromaSampleLocTypeTopField );
546  m_cTEncTop.setChromaSampleLocTypeBottomField( m_chromaSampleLocTypeBottomField );
547  m_cTEncTop.setNeutralChromaIndicationFlag( m_neutralChromaIndicationFlag );
548  m_cTEncTop.setDefaultDisplayWindow( m_defDispWinLeftOffset, m_defDispWinRightOffset, m_defDispWinTopOffset, m_defDispWinBottomOffset );
549  m_cTEncTop.setFrameFieldInfoPresentFlag( m_frameFieldInfoPresentFlag );
550  m_cTEncTop.setPocProportionalToTimingFlag( m_pocProportionalToTimingFlag );
551  m_cTEncTop.setNumTicksPocDiffOneMinus1   ( m_numTicksPocDiffOneMinus1    );
552  m_cTEncTop.setBitstreamRestrictionFlag( m_bitstreamRestrictionFlag );
553  m_cTEncTop.setTilesFixedStructureFlag( m_tilesFixedStructureFlag );
554  m_cTEncTop.setMotionVectorsOverPicBoundariesFlag( m_motionVectorsOverPicBoundariesFlag );
555  m_cTEncTop.setMinSpatialSegmentationIdc( m_minSpatialSegmentationIdc );
556  m_cTEncTop.setMaxBytesPerPicDenom( m_maxBytesPerPicDenom );
557  m_cTEncTop.setMaxBitsPerMinCuDenom( m_maxBitsPerMinCuDenom );
558  m_cTEncTop.setLog2MaxMvLengthHorizontal( m_log2MaxMvLengthHorizontal );
559  m_cTEncTop.setLog2MaxMvLengthVertical( m_log2MaxMvLengthVertical );
560#if H_MV
561  }
562#endif
563#if H_3D_VSO
564  if ( m_bUseVSO )
565  {
566    if ( m_uiVSOMode == 4 )
567    {
568#if H_3D_VSO_EARLY_SKIP
569      m_cRendererModel.create( m_cRenModStrParser.getNumOfBaseViews(), m_cRenModStrParser.getNumOfModels(), m_iSourceWidth, g_uiMaxCUHeight , LOG2_DISP_PREC_LUT, 0, m_bVSOEarlySkip );
570#else
571      m_cRendererModel.create( m_cRenModStrParser.getNumOfBaseViews(), m_cRenModStrParser.getNumOfModels(), m_iSourceWidth, g_uiMaxCUHeight , LOG2_DISP_PREC_LUT, 0 );
572#endif
573      for ( Int layer = 0; layer < m_numberOfLayers ; layer++ )
574      {
575        TEncTop* pcEncTop =  m_acTEncTopList[ layer ]; 
576        Int iViewNum      = pcEncTop->getViewIndex(); 
577        Int iContent      = pcEncTop->getIsDepth() ? 1 : 0; 
578        Int iNumOfModels  = m_cRenModStrParser.getNumOfModelsForView(iViewNum, iContent);
579
580        Bool bUseVSO      = (iNumOfModels != 0);
581
582        pcEncTop->setUseVSO( bUseVSO );
583        pcEncTop->getRdCost()->setRenModel( bUseVSO ? &m_cRendererModel : NULL );
584
585        for (Int iCurModel = 0; iCurModel < iNumOfModels; iCurModel++ )
586        {
587          Int iModelNum; Int iLeftViewNum; Int iRightViewNum; Int iDump; Int iOrgRefNum; Int iBlendMode;
588
589          m_cRenModStrParser.getSingleModelData  ( iViewNum, iContent, iCurModel, iModelNum, iBlendMode, iLeftViewNum, iRightViewNum, iOrgRefNum, iDump ) ;
590          m_cRendererModel  .createSingleModel   ( iViewNum, iContent, iModelNum, iLeftViewNum, iRightViewNum, (iOrgRefNum != -1), iBlendMode );
591        }           
592      }
593    }
594    else
595    {
596      AOT(true);
597    }
598  }
599#endif
600}
601
602Void TAppEncTop::xCreateLib()
603{
604#if H_MV
605  // initialize global variables
606  initROM();
607#if H_3D_DIM_DMM
608  initWedgeLists( true );
609#endif
610
611  for( Int layer=0; layer < m_numberOfLayers; layer++)
612  {
613    m_acTVideoIOYuvInputFileList[layer]->open( m_pchInputFileList[layer],     false, m_inputBitDepthY, m_inputBitDepthC, m_internalBitDepthY, m_internalBitDepthC );  // read  mode
614    m_acTVideoIOYuvInputFileList[layer]->skipFrames( m_FrameSkip, m_iSourceWidth - m_aiPad[0], m_iSourceHeight - m_aiPad[1]);
615
616    if (m_pchReconFileList[layer])
617    {
618      m_acTVideoIOYuvReconFileList[layer]->open( m_pchReconFileList[layer], true, m_outputBitDepthY, m_outputBitDepthC, m_internalBitDepthY, m_internalBitDepthC);  // write mode
619    }
620    m_acTEncTopList[layer]->create();
621  }
622#else
623  // Video I/O
624  m_cTVideoIOYuvInputFile.open( m_pchInputFile,     false, m_inputBitDepthY, m_inputBitDepthC, m_internalBitDepthY, m_internalBitDepthC );  // read  mode
625  m_cTVideoIOYuvInputFile.skipFrames(m_FrameSkip, m_iSourceWidth - m_aiPad[0], m_iSourceHeight - m_aiPad[1]);
626
627  if (m_pchReconFile)
628    m_cTVideoIOYuvReconFile.open(m_pchReconFile, true, m_outputBitDepthY, m_outputBitDepthC, m_internalBitDepthY, m_internalBitDepthC);  // write mode
629 
630  // Neo Decoder
631  m_cTEncTop.create();
632#endif
633}
634
635Void TAppEncTop::xDestroyLib()
636{
637#if H_MV
638  // destroy ROM
639  destroyROM();
640
641  for(Int layer=0; layer<m_numberOfLayers; layer++)
642  {
643    m_acTVideoIOYuvInputFileList[layer]->close();
644    m_acTVideoIOYuvReconFileList[layer]->close();
645    delete m_acTVideoIOYuvInputFileList[layer] ; 
646    m_acTVideoIOYuvInputFileList[layer] = NULL;
647    delete m_acTVideoIOYuvReconFileList[layer] ; 
648    m_acTVideoIOYuvReconFileList[layer] = NULL;
649    m_acTEncTopList[layer]->deletePicBuffer();
650    m_acTEncTopList[layer]->destroy();
651    delete m_acTEncTopList[layer] ; 
652    m_acTEncTopList[layer] = NULL;
653    delete m_picYuvRec[layer] ; 
654    m_picYuvRec[layer] = NULL;
655  }
656#else
657  // Video I/O
658  m_cTVideoIOYuvInputFile.close();
659  m_cTVideoIOYuvReconFile.close();
660 
661  // Neo Decoder
662  m_cTEncTop.destroy();
663#endif
664}
665
666Void TAppEncTop::xInitLib()
667{
668#if H_MV
669  for(Int layer=0; layer<m_numberOfLayers; layer++)
670  {
671    m_acTEncTopList[layer]->init( );
672  }
673#else
674  m_cTEncTop.init();
675#endif
676}
677
678// ====================================================================================================================
679// Public member functions
680// ====================================================================================================================
681
682/**
683 - create internal class
684 - initialize internal variable
685 - until the end of input YUV file, call encoding function in TEncTop class
686 - delete allocated buffers
687 - destroy internal class
688 .
689 */
690Void TAppEncTop::encode()
691{
692  fstream bitstreamFile(m_pchBitstreamFile, fstream::binary | fstream::out);
693  if (!bitstreamFile)
694  {
695    fprintf(stderr, "\nfailed to open bitstream file `%s' for writing\n", m_pchBitstreamFile);
696    exit(EXIT_FAILURE);
697  }
698
699  TComPicYuv*       pcPicYuvOrg = new TComPicYuv;
700  TComPicYuv*       pcPicYuvRec = NULL;
701 
702  // initialize internal class & member variables
703  xInitLibCfg();
704  xCreateLib();
705  xInitLib();
706 
707  // main encoder loop
708#if H_MV
709  Bool  allEos = false;
710  std::vector<Bool>  eos ;
711  std::vector<Bool>  flush ; 
712 
713  Int gopSize    = 1;
714  Int maxGopSize = 0;
715  maxGopSize = (std::max)(maxGopSize, m_acTEncTopList[0]->getGOPSize()); 
716 
717  for(Int layer=0; layer < m_numberOfLayers; layer++ )
718  {
719    eos  .push_back( false );
720    flush.push_back( false );
721  }
722#else
723  Int   iNumEncoded = 0;
724  Bool  bEos = false;
725#endif
726 
727  list<AccessUnit> outputAccessUnits; ///< list of access units to write out.  is populated by the encoding process
728
729  // allocate original YUV buffer
730  pcPicYuvOrg->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth );
731 
732#if H_MV
733  while ( !allEos )
734  {
735    for(Int layer=0; layer < m_numberOfLayers; layer++ )
736    {
737      Int frmCnt = 0;
738      while ( !eos[layer] && !(frmCnt == gopSize))
739      {
740        // get buffers
741        xGetBuffer(pcPicYuvRec, layer);
742
743        // read input YUV file
744        m_acTVideoIOYuvInputFileList[layer]->read      ( pcPicYuvOrg, m_aiPad );
745        m_acTEncTopList             [layer]->initNewPic( pcPicYuvOrg );
746
747        // increase number of received frames
748        m_frameRcvd[layer]++;
749       
750        frmCnt++;
751
752        eos[layer] = (m_frameRcvd[layer] == m_framesToBeEncoded);
753        allEos = allEos||eos[layer];
754
755        // if end of file (which is only detected on a read failure) flush the encoder of any queued pictures
756        if (m_acTVideoIOYuvInputFileList[layer]->isEof())
757        {
758          flush          [layer] = true;
759          eos            [layer] = true;
760          m_frameRcvd    [layer]--;
761          m_acTEncTopList[layer]->setFramesToBeEncoded(m_frameRcvd[layer]);
762        }
763      }
764    }
765    for ( Int gopId=0; gopId < gopSize; gopId++ )
766    {
767#if H_3D
768      UInt iNextPoc = m_acTEncTopList[0] -> getFrameId( gopId );
769      if ( iNextPoc < m_framesToBeEncoded )
770      {
771        m_cCameraData.update( iNextPoc );
772      }
773#endif
774      for(Int layer=0; layer < m_numberOfLayers; layer++ )
775      {
776#if H_3D_VSO       
777          if( m_bUseVSO && m_bUseEstimatedVSD && iNextPoc < m_framesToBeEncoded )
778          {
779            m_cCameraData.setDispCoeff( iNextPoc, m_acTEncTopList[layer]->getViewIndex() );
780            m_acTEncTopList[layer]  ->setDispCoeff( m_cCameraData.getDispCoeff() );
781          }
782#endif
783        Int   iNumEncoded = 0;
784
785        // call encoding function for one frame         
786        m_acTEncTopList[layer]->encode( eos[layer], flush[layer] ? 0 : pcPicYuvOrg, *m_picYuvRec[layer], outputAccessUnits, iNumEncoded, gopId );       
787        xWriteOutput(bitstreamFile, iNumEncoded, outputAccessUnits, layer);
788        outputAccessUnits.clear();
789      }
790    }
791    gopSize = maxGopSize;
792  }
793  for(Int layer=0; layer < m_numberOfLayers; layer++ )
794  {
795    m_acTEncTopList[layer]->printSummary( m_acTEncTopList[layer]->getNumAllPicCoded() );
796  }
797#else
798  while ( !bEos )
799  {
800    // get buffers
801    xGetBuffer(pcPicYuvRec);
802
803    // read input YUV file
804    m_cTVideoIOYuvInputFile.read( pcPicYuvOrg, m_aiPad );
805
806    // increase number of received frames
807    m_iFrameRcvd++;
808
809    bEos = (m_iFrameRcvd == m_framesToBeEncoded);
810
811    Bool flush = 0;
812    // if end of file (which is only detected on a read failure) flush the encoder of any queued pictures
813    if (m_cTVideoIOYuvInputFile.isEof())
814    {
815      flush = true;
816      bEos = true;
817      m_iFrameRcvd--;
818      m_cTEncTop.setFramesToBeEncoded(m_iFrameRcvd);
819    }
820
821    // call encoding function for one frame
822    m_cTEncTop.encode( bEos, flush ? 0 : pcPicYuvOrg, m_cListPicYuvRec, outputAccessUnits, iNumEncoded );
823   
824    // write bistream to file if necessary
825    if ( iNumEncoded > 0 )
826    {
827      xWriteOutput(bitstreamFile, iNumEncoded, outputAccessUnits);
828      outputAccessUnits.clear();
829    }
830  }
831
832  m_cTEncTop.printSummary();
833#endif
834
835  // delete original YUV buffer
836  pcPicYuvOrg->destroy();
837  delete pcPicYuvOrg;
838  pcPicYuvOrg = NULL;
839 
840#if !H_MV
841  // delete used buffers in encoder class
842  m_cTEncTop.deletePicBuffer();
843#endif
844
845  // delete buffers & classes
846  xDeleteBuffer();
847  xDestroyLib();
848 
849  printRateSummary();
850
851#if H_3D_REN_MAX_DEV_OUT
852  Double dMaxDispDiff = m_cCameraData.getMaxShiftDeviation(); 
853
854  if ( !(dMaxDispDiff < 0) )
855  { 
856    printf("\n Max. possible shift error: %12.3f samples.\n", dMaxDispDiff );
857  }
858#endif
859
860  return;
861}
862
863// ====================================================================================================================
864// Protected member functions
865// ====================================================================================================================
866
867/**
868 - application has picture buffer list with size of GOP
869 - picture buffer list acts as ring buffer
870 - end of the list has the latest picture
871 .
872 */
873#if H_MV
874Void TAppEncTop::xGetBuffer( TComPicYuv*& rpcPicYuvRec, UInt layer)
875#else
876Void TAppEncTop::xGetBuffer( TComPicYuv*& rpcPicYuvRec)
877#endif
878{
879  assert( m_iGOPSize > 0 );
880 
881  // org. buffer
882#if H_MV
883  if ( m_picYuvRec[layer]->size() == (UInt)m_iGOPSize )
884  {
885    rpcPicYuvRec = m_picYuvRec[layer]->popFront();
886#else
887  if ( m_cListPicYuvRec.size() == (UInt)m_iGOPSize )
888  {
889    rpcPicYuvRec = m_cListPicYuvRec.popFront();
890#endif
891
892  }
893  else
894  {
895    rpcPicYuvRec = new TComPicYuv;
896   
897    rpcPicYuvRec->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth );
898
899  }
900#if H_MV
901  m_picYuvRec[layer]->pushBack( rpcPicYuvRec );
902#else
903  m_cListPicYuvRec.pushBack( rpcPicYuvRec );
904#endif
905}
906
907Void TAppEncTop::xDeleteBuffer( )
908{
909#if H_MV
910  for(Int layer=0; layer<m_picYuvRec.size(); layer++)
911  {
912    if(m_picYuvRec[layer])
913    {
914      TComList<TComPicYuv*>::iterator iterPicYuvRec  = m_picYuvRec[layer]->begin();
915      Int iSize = Int( m_picYuvRec[layer]->size() );
916#else
917  TComList<TComPicYuv*>::iterator iterPicYuvRec  = m_cListPicYuvRec.begin();
918 
919  Int iSize = Int( m_cListPicYuvRec.size() );
920#endif
921
922  for ( Int i = 0; i < iSize; i++ )
923  {
924    TComPicYuv*  pcPicYuvRec  = *(iterPicYuvRec++);
925    pcPicYuvRec->destroy();
926    delete pcPicYuvRec; pcPicYuvRec = NULL;
927  }
928
929#if H_MV
930    }
931  }
932#endif 
933}
934
935/** \param iNumEncoded  number of encoded frames
936 */
937#if H_MV
938Void TAppEncTop::xWriteOutput(std::ostream& bitstreamFile, Int iNumEncoded, std::list<AccessUnit>& accessUnits, UInt layerId)
939#else
940Void TAppEncTop::xWriteOutput(std::ostream& bitstreamFile, Int iNumEncoded, const std::list<AccessUnit>& accessUnits)
941#endif
942{
943  Int i;
944 
945#if H_MV
946  if( iNumEncoded > 0 )
947  {
948    TComList<TComPicYuv*>::iterator iterPicYuvRec = m_picYuvRec[layerId]->end();
949#else
950  TComList<TComPicYuv*>::iterator iterPicYuvRec = m_cListPicYuvRec.end();
951  list<AccessUnit>::const_iterator iterBitstream = accessUnits.begin();
952#endif
953
954  for ( i = 0; i < iNumEncoded; i++ )
955  {
956    --iterPicYuvRec;
957  }
958 
959  for ( i = 0; i < iNumEncoded; i++ )
960  {
961    TComPicYuv*  pcPicYuvRec  = *(iterPicYuvRec++);
962#if H_MV
963      if (m_pchReconFileList[layerId])
964      {
965        m_acTVideoIOYuvReconFileList[layerId]->write( pcPicYuvRec, m_confLeft, m_confRight, m_confTop, m_confBottom );
966      }
967    }
968  }
969  if( ! accessUnits.empty() )
970  {
971    list<AccessUnit>::iterator aUIter;
972    for( aUIter = accessUnits.begin(); aUIter != accessUnits.end(); aUIter++ )
973    {
974      const vector<unsigned>& stats = writeAnnexB(bitstreamFile, *aUIter);
975      rateStatsAccum(*aUIter, stats);
976    }
977  }
978#else
979    if (m_pchReconFile)
980    {
981      m_cTVideoIOYuvReconFile.write( pcPicYuvRec, m_confLeft, m_confRight, m_confTop, m_confBottom );
982    }
983
984    const AccessUnit& au = *(iterBitstream++);
985    const vector<UInt>& stats = writeAnnexB(bitstreamFile, au);
986    rateStatsAccum(au, stats);
987  }
988#endif
989}
990
991/**
992 *
993 */
994void TAppEncTop::rateStatsAccum(const AccessUnit& au, const std::vector<UInt>& annexBsizes)
995{
996  AccessUnit::const_iterator it_au = au.begin();
997  vector<UInt>::const_iterator it_stats = annexBsizes.begin();
998
999  for (; it_au != au.end(); it_au++, it_stats++)
1000  {
1001    switch ((*it_au)->m_nalUnitType)
1002    {
1003    case NAL_UNIT_CODED_SLICE_TRAIL_R:
1004    case NAL_UNIT_CODED_SLICE_TRAIL_N:
1005    case NAL_UNIT_CODED_SLICE_TLA_R:
1006    case NAL_UNIT_CODED_SLICE_TSA_N:
1007    case NAL_UNIT_CODED_SLICE_STSA_R:
1008    case NAL_UNIT_CODED_SLICE_STSA_N:
1009    case NAL_UNIT_CODED_SLICE_BLA_W_LP:
1010    case NAL_UNIT_CODED_SLICE_BLA_W_RADL:
1011    case NAL_UNIT_CODED_SLICE_BLA_N_LP:
1012    case NAL_UNIT_CODED_SLICE_IDR_W_RADL:
1013    case NAL_UNIT_CODED_SLICE_IDR_N_LP:
1014    case NAL_UNIT_CODED_SLICE_CRA:
1015    case NAL_UNIT_CODED_SLICE_RADL_N:
1016    case NAL_UNIT_CODED_SLICE_RADL_R:
1017    case NAL_UNIT_CODED_SLICE_RASL_N:
1018    case NAL_UNIT_CODED_SLICE_RASL_R:
1019    case NAL_UNIT_VPS:
1020    case NAL_UNIT_SPS:
1021    case NAL_UNIT_PPS:
1022      m_essentialBytes += *it_stats;
1023      break;
1024    default:
1025      break;
1026    }
1027
1028    m_totalBytes += *it_stats;
1029  }
1030}
1031
1032void TAppEncTop::printRateSummary()
1033{
1034#if H_MV
1035  Double time = (Double) m_frameRcvd[0] / m_iFrameRate;
1036  printf("\n");
1037#else
1038  Double time = (Double) m_iFrameRcvd / m_iFrameRate;
1039#endif
1040  printf("Bytes written to file: %u (%.3f kbps)\n", m_totalBytes, 0.008 * m_totalBytes / time);
1041#if VERBOSE_RATE
1042  printf("Bytes for SPS/PPS/Slice (Incl. Annex B): %u (%.3f kbps)\n", m_essentialBytes, 0.008 * m_essentialBytes / time);
1043#endif
1044}
1045
1046#if H_3D_DIM_DLT
1047Void TAppEncTop::xAnalyzeInputBaseDepth(UInt layer, UInt uiNumFrames, TComVPS* vps)
1048{
1049  TComPicYuv*       pcDepthPicYuvOrg = new TComPicYuv;
1050  // allocate original YUV buffer
1051  pcDepthPicYuvOrg->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth );
1052 
1053  TVideoIOYuv* depthVideoFile = new TVideoIOYuv;
1054 
1055  UInt uiMaxDepthValue = ((1 << g_bitDepthY)-1);
1056 
1057  Bool abValidDepths[256];
1058 
1059  depthVideoFile->open( m_pchInputFileList[layer], false, m_inputBitDepthY, m_inputBitDepthC, m_internalBitDepthY, m_internalBitDepthC );  // read  mode
1060 
1061  // initialize boolean array
1062  for(Int p=0; p<=uiMaxDepthValue; p++)
1063    abValidDepths[p] = false;
1064 
1065  Int iHeight   = pcDepthPicYuvOrg->getHeight();
1066  Int iWidth    = pcDepthPicYuvOrg->getWidth();
1067  Int iStride   = pcDepthPicYuvOrg->getStride();
1068 
1069  Pel* pInDM    = pcDepthPicYuvOrg->getLumaAddr();
1070 
1071  for(Int uiFrame=0; uiFrame < uiNumFrames; uiFrame++ )
1072  {
1073    depthVideoFile->read( pcDepthPicYuvOrg, m_aiPad );
1074   
1075    // check all pixel values
1076    for (Int i=0; i<iHeight; i++)
1077    {
1078      Int rowOffset = i*iStride;
1079     
1080      for (Int j=0; j<iWidth; j++)
1081      {
1082        Pel depthValue = pInDM[rowOffset+j];
1083        abValidDepths[depthValue] = true;
1084      }
1085    }
1086  }
1087 
1088  depthVideoFile->close();
1089  delete depthVideoFile; 
1090 
1091  pcDepthPicYuvOrg->destroy();
1092  delete pcDepthPicYuvOrg;
1093 
1094  // convert boolean array to idx2Depth LUT
1095  Int* aiIdx2DepthValue = (Int*) calloc(uiMaxDepthValue, sizeof(Int));
1096  Int iNumDepthValues = 0;
1097  for(Int p=0; p<=uiMaxDepthValue; p++)
1098  {
1099    if( abValidDepths[p] == true)
1100    {
1101      aiIdx2DepthValue[iNumDepthValues++] = p;
1102    }
1103  }
1104 
1105  if( uiNumFrames == 0 || numBitsForValue(iNumDepthValues) == g_bitDepthY )
1106  {
1107    // don't use DLT
1108    vps->setUseDLTFlag(layer, false);
1109  }
1110 
1111  // assign LUT
1112  if( vps->getUseDLTFlag(layer) )
1113    vps->setDepthLUTs(layer, aiIdx2DepthValue, iNumDepthValues);
1114 
1115  // free temporary memory
1116  free(aiIdx2DepthValue);
1117}
1118#endif
1119
1120#if H_MV
1121Void TAppEncTop::xSetDimensionIdAndLength( TComVPS& vps )
1122{   
1123#if H_MV5
1124  vps.setScalabilityMaskFlag( m_scalabilityMask ); 
1125#else
1126  vps.setScalabilityMask( m_scalabilityMask ); 
1127#endif
1128  for( Int dim = 0; dim < m_dimIds.size(); dim++ )
1129  {
1130    vps.setDimensionIdLen( dim, m_dimensionIdLen[ dim ] );
1131#if H_MV5
1132    for( Int layer = 0; layer <= vps.getMaxLayersMinus1(); layer++ )
1133#else
1134    for( Int layer = 0; layer < vps.getMaxLayers(); layer++ )
1135#endif
1136
1137    {       
1138      vps.setDimensionId( layer, dim, m_dimIds[ dim ][ layer ] );       
1139    } 
1140  }
1141
1142#if H_MV5
1143  Int maxViewId = xGetMax( m_viewId ); 
1144
1145  Int viewIdLenMinus1 = std::max( gCeilLog2( maxViewId + 1 ) - 1, 0 ) ; 
1146  const Int maxViewIdLenMinus1 = ( 1 << 4 ) - 1; 
1147  assert( viewIdLenMinus1 <= maxViewIdLenMinus1  ); 
1148  vps.setViewIdLenMinus1( viewIdLenMinus1 ); 
1149  for (Int i = 0; i < m_iNumberOfViews; i++)
1150  {
1151    vps.setViewIdVal( i, m_viewId[ i] ); 
1152  }
1153
1154  assert( m_iNumberOfViews == vps.getNumViews() ); 
1155#endif
1156}
1157
1158Void TAppEncTop::xSetDependencies( TComVPS& vps )
1159{
1160  // Direct dependency flags + dependency types
1161  for( Int depLayer = 1; depLayer < MAX_NUM_LAYERS; depLayer++ )
1162  {
1163    for( Int refLayer = 0; refLayer < MAX_NUM_LAYERS; refLayer++ )
1164    {
1165      vps.setDirectDependencyFlag( depLayer, refLayer, false); 
1166      vps.setDirectDependencyType( depLayer, refLayer,    -1 ); 
1167    }
1168    }
1169  for( Int depLayer = 1; depLayer < m_numberOfLayers; depLayer++ )
1170  {
1171    Int numRefLayers = (Int) m_directRefLayers[depLayer].size(); 
1172    assert(  numRefLayers == (Int) m_dependencyTypes[depLayer].size() ); 
1173    for( Int i = 0; i < numRefLayers; i++ )
1174    {
1175      Int refLayer = m_directRefLayers[depLayer][i]; 
1176      vps.setDirectDependencyFlag( depLayer, refLayer, true); 
1177      vps.setDirectDependencyType( depLayer, refLayer,m_dependencyTypes[depLayer][i]); 
1178    }
1179  }
1180
1181  // Max temporal id for inter layer reference pictures + presence flag
1182#if H_MV5
1183  Bool maxTidRefPresentFlag = false; 
1184#endif
1185  for ( Int refLayerIdInVps = 0; refLayerIdInVps < m_numberOfLayers; refLayerIdInVps++)
1186    {
1187    Int maxTid = -1; 
1188    for ( Int curLayerIdInVps = 1; curLayerIdInVps < m_numberOfLayers; curLayerIdInVps++)
1189      {
1190      for( Int i = 0; i < getGOPSize(); i++ ) 
1191      {       
1192        GOPEntry geCur =  m_GOPListMvc[curLayerIdInVps][i];
1193        GOPEntry geRef =  m_GOPListMvc[refLayerIdInVps][i];
1194       
1195        for (Int j = 0; j < geCur.m_numActiveRefLayerPics; j++)
1196        {       
1197          if ( m_directRefLayers[ curLayerIdInVps ][ geCur.m_interLayerPredLayerIdc[ j ]] == refLayerIdInVps )
1198          {
1199            maxTid = std::max( maxTid, geRef.m_temporalId ); 
1200          }
1201        }
1202      }
1203    }
1204    vps.setMaxTidIlRefPicPlus1( refLayerIdInVps, maxTid + 1 );
1205#if H_MV5
1206    maxTidRefPresentFlag = maxTidRefPresentFlag || ( maxTid != 6 );   
1207#endif
1208  }
1209
1210#if H_MV5
1211  vps.setMaxTidRefPresentFlag( maxTidRefPresentFlag );
1212#endif
1213  // Max one active ref layer flag
1214  Bool maxOneActiveRefLayerFlag = true; 
1215#if H_MV5
1216  for ( Int layerIdInVps = 1; layerIdInVps < m_numberOfLayers && maxOneActiveRefLayerFlag; layerIdInVps++)
1217#else
1218  for ( Int currLayerIdInVps = 1; currLayerIdInVps < m_numberOfLayers && maxOneActiveRefLayerFlag; currLayerIdInVps++)
1219#endif
1220  {
1221    for( Int i = 0; i < ( getGOPSize() + 1) && maxOneActiveRefLayerFlag; i++ ) 
1222    {       
1223#if H_MV5
1224      GOPEntry ge =  m_GOPListMvc[layerIdInVps][ ( i < getGOPSize()  ? i : MAX_GOP ) ]; 
1225#else
1226      GOPEntry ge =  m_GOPListMvc[currLayerIdInVps][ ( i < getGOPSize()  ? i : MAX_GOP ) ]; 
1227#endif
1228      maxOneActiveRefLayerFlag =  maxOneActiveRefLayerFlag && (ge.m_numActiveRefLayerPics <= 1); 
1229    }           
1230}
1231
1232  vps.setMaxOneActiveRefLayerFlag( maxOneActiveRefLayerFlag );
1233 
1234 
1235#if H_MV5
1236  // All Ref layers active flag
1237  Bool allRefLayersActiveFlag = true; 
1238  for ( Int layerIdInVps = 1; layerIdInVps < m_numberOfLayers && allRefLayersActiveFlag; layerIdInVps++)
1239  {   
1240    for( Int i = 0; i < ( getGOPSize() + 1) && allRefLayersActiveFlag; i++ ) 
1241    {       
1242      GOPEntry ge =  m_GOPListMvc[layerIdInVps][ ( i < getGOPSize()  ? i : MAX_GOP ) ]; 
1243      allRefLayersActiveFlag = allRefLayersActiveFlag && (ge.m_numActiveRefLayerPics == m_directRefLayers[ layerIdInVps ].size() ); 
1244    }           
1245  }
1246
1247  vps.setAllRefLayersActiveFlag( allRefLayersActiveFlag );
1248
1249  // Currently cross layer irap aligned is always true.   
1250  vps.setCrossLayerIrapAlignedFlag( true ); 
1251#endif
1252  vps.setRefLayers(); 
1253}; 
1254
1255#if H_MV5
1256GOPEntry* TAppEncTop::xGetGopEntry( Int layerIdInVps, Int poc )
1257{
1258  GOPEntry* geFound = NULL; 
1259  for( Int i = 0; i < ( getGOPSize() + 1) && geFound == NULL ; i++ ) 
1260  {
1261    GOPEntry* ge = &(m_GOPListMvc[layerIdInVps][ ( i < getGOPSize()  ? i : MAX_GOP ) ]);
1262    if ( ge->m_POC == poc )
1263    {
1264      geFound = ge;       
1265    }
1266  }
1267  assert( geFound != NULL ); 
1268  return geFound; 
1269}
1270#endif
1271
1272Void TAppEncTop::xSetLayerIds( TComVPS& vps )
1273{
1274  vps.setSplittingFlag     ( m_splittingFlag );
1275
1276  Bool nuhLayerIdPresentFlag = !( m_layerIdInNuh.size() == 1 ); 
1277  Int  maxNuhLayerId = nuhLayerIdPresentFlag ? xGetMax( m_layerIdInNuh ) : ( m_numberOfLayers - 1 ) ; 
1278
1279  vps.setVpsMaxLayerId( maxNuhLayerId ); 
1280  vps.setVpsNuhLayerIdPresentFlag( nuhLayerIdPresentFlag ); 
1281
1282  for (Int layer = 0; layer < m_numberOfLayers; layer++ )
1283  {
1284    vps.setLayerIdInNuh( layer, nuhLayerIdPresentFlag ? m_layerIdInNuh[ layer ] : layer ); 
1285    vps.setLayerIdInVps( vps.getLayerIdInNuh( layer ), layer ); 
1286  }
1287}
1288
1289Int TAppEncTop::xGetMax( std::vector<Int>& vec )
1290{
1291  Int maxVec = 0; 
1292  for ( Int i = 0; i < vec.size(); i++)   
1293  {
1294    maxVec = max( vec[i], maxVec ); 
1295  }
1296  return maxVec;
1297}
1298
1299Void TAppEncTop::xSetProfileTierLevel( TComVPS& vps )
1300{ 
1301  const Int vpsNumProfileTierLevelMinus1 = 0; //TBD
1302  vps.setVpsNumProfileTierLevelMinus1( vpsNumProfileTierLevelMinus1 ); 
1303 
1304  for (Int i = 0; i <= vps.getVpsNumProfileTierLevelMinus1(); i++ )
1305  {
1306    vps.setVpsProfilePresentFlag( i, true ); 
1307  }
1308}
1309
1310#if H_MV5
1311
1312Void TAppEncTop::xSetRepFormat( TComVPS& vps )
1313{
1314  vps.setRepFormatIdxPresentFlag( true ); 
1315  vps.setVpsNumRepFormatsMinus1 ( 0    ); 
1316
1317  TComRepFormat* repFormat = new TComRepFormat; 
1318
1319  repFormat->setBitDepthVpsChromaMinus8   ( g_bitDepthC - 8 ); 
1320  repFormat->setBitDepthVpsLumaMinus8     ( g_bitDepthY - 8 );
1321  repFormat->setChromaFormatVpsIdc        ( CHROMA_420      );
1322  repFormat->setPicHeightVpsInLumaSamples ( m_iSourceHeight );
1323  repFormat->setPicWidthVpsInLumaSamples  ( m_iSourceWidth  );   
1324  // ToDo not supported yet.
1325  //repFormat->setSeparateColourPlaneVpsFlag( );
1326
1327  assert( vps.getRepFormat( 0 ) == NULL ); 
1328  vps.setRepFormat( 0 , repFormat );
1329
1330  for(Int i = 0; i <= vps.getMaxLayersMinus1(); i++ )
1331  {
1332    vps.setVpsRepFormatIdx( i , 0 ); 
1333  }
1334}
1335#endif
1336
1337Void TAppEncTop::xSetLayerSets( TComVPS& vps )
1338{   
1339  // Layer sets
1340  vps.setVpsNumLayerSetsMinus1   ( m_vpsNumLayerSets - 1 ); 
1341  vps.setVpsNumberLayerSetsMinus1( vps.getVpsNumLayerSetsMinus1() ); 
1342   
1343  for (Int lsIdx = 0; lsIdx < m_vpsNumLayerSets; lsIdx++ )
1344  {
1345    for( Int layerId = 0; layerId < MAX_NUM_LAYER_IDS; layerId++ )
1346    {
1347      vps.setLayerIdIncludedFlag( false, lsIdx, layerId ); 
1348    }
1349    for ( Int i = 0; i < m_layerIdsInSets[lsIdx].size(); i++)
1350    {       
1351      vps.setLayerIdIncludedFlag( true, lsIdx, vps.getLayerIdInNuh( m_layerIdsInSets[lsIdx][i] ) ); 
1352    } 
1353  }
1354
1355  Int numAddOuputLayerSets = (Int) m_outputLayerSetIdx.size(); 
1356  // Additional output layer sets + profileLevelTierIdx
1357  vps.setDefaultOneTargetOutputLayerFlag   ( m_defaultOneTargetOutputLayerFlag ); 
1358  vps.setMoreOutputLayerSetsThanDefaultFlag( numAddOuputLayerSets       != 0 );   
1359  vps.setNumAddOutputLayerSetsMinus1       ( numAddOuputLayerSets - 1        ); 
1360
1361  for (Int lsIdx = 1; lsIdx < m_vpsNumLayerSets; lsIdx++)
1362  {
1363    vps.setProfileLevelTierIdx( lsIdx, m_profileLevelTierIdx[ lsIdx ] ); 
1364  }
1365
1366  for (Int addOutLs = 0; addOutLs < numAddOuputLayerSets; addOutLs++ )
1367  {
1368    vps.setProfileLevelTierIdx( m_vpsNumLayerSets + addOutLs, m_profileLevelTierIdx[ addOutLs ] ); 
1369
1370    Int refLayerSetIdx = m_outputLayerSetIdx[ addOutLs ];     
1371    vps.setOutputLayerSetIdxMinus1( m_vpsNumLayerSets + addOutLs, refLayerSetIdx - 1 ); 
1372
1373    for (Int i = 0; i < m_layerIdsInSets[ refLayerSetIdx].size(); i++ )
1374    {
1375      Bool outputLayerFlag = false; 
1376      for (Int j = 0; j < m_layerIdsInAddOutputLayerSet[ addOutLs ].size(); j++ )
1377      {
1378        if (  m_layerIdsInAddOutputLayerSet[addOutLs][ j ] == m_layerIdsInSets[ refLayerSetIdx][ i ] )
1379        {
1380          outputLayerFlag = true; 
1381          break; 
1382        }
1383      }
1384      vps.setOutputLayerFlag( m_vpsNumLayerSets + addOutLs, i, outputLayerFlag );       
1385    }
1386  }
1387}
1388#if H_MV5
1389
1390Void TAppEncTop::xSetVPSVUI( TComVPS& vps )
1391{
1392  vps.setVpsVuiPresentFlag( m_vpsVuiPresentFlag ); 
1393
1394  if ( m_vpsVuiPresentFlag )
1395  {
1396    TComVPSVUI* pcVPSVUI = vps.getVPSVUI(  ); 
1397
1398    assert( pcVPSVUI ); 
1399
1400    pcVPSVUI->setBitRatePresentVpsFlag( m_bitRatePresentVpsFlag );
1401    pcVPSVUI->setPicRatePresentVpsFlag( m_picRatePresentVpsFlag );
1402
1403    if( pcVPSVUI->getBitRatePresentVpsFlag( )  ||  pcVPSVUI->getPicRatePresentVpsFlag( ) )
1404    {
1405      for( Int i = 0; i  <=  vps.getVpsNumberLayerSetsMinus1(); i++ )
1406      {
1407        for( Int j = 0; j  <=  vps.getMaxTLayers(); j++ ) 
1408        {
1409          if( pcVPSVUI->getBitRatePresentVpsFlag( ) && m_bitRatePresentFlag[i].size() > j )
1410          {
1411            pcVPSVUI->setBitRatePresentFlag( i, j, m_bitRatePresentFlag[i][j] );           
1412          }
1413          if( pcVPSVUI->getPicRatePresentVpsFlag( ) && m_picRatePresentFlag[i].size() > j   )
1414          {
1415            pcVPSVUI->setPicRatePresentFlag( i, j, m_picRatePresentFlag[i][j] );
1416          }
1417          if( pcVPSVUI->getBitRatePresentFlag( i, j )  && m_avgBitRate[i].size() > j )
1418          {
1419            pcVPSVUI->setAvgBitRate( i, j, m_avgBitRate[i][j] );         
1420          }
1421          if( pcVPSVUI->getBitRatePresentFlag( i, j )  && m_maxBitRate[i].size() > j )
1422          {
1423            pcVPSVUI->setMaxBitRate( i, j, m_maxBitRate[i][j] );
1424          }
1425          if( pcVPSVUI->getPicRatePresentFlag( i, j ) && m_constantPicRateIdc[i].size() > j )
1426          {
1427            pcVPSVUI->setConstantPicRateIdc( i, j, m_constantPicRateIdc[i][j] );
1428          }
1429          if( pcVPSVUI->getPicRatePresentFlag( i, j ) && m_avgPicRate[i].size() > j )
1430          {
1431            pcVPSVUI->setAvgPicRate( i, j, m_avgPicRate[i][j] );
1432          }
1433        }
1434      }
1435    }
1436
1437    for( Int i = 1; i  <=  vps.getMaxLayersMinus1(); i++ )
1438    {
1439      for( Int  j = 0; j < vps.getNumDirectRefLayers( vps.getLayerIdInNuh( i ) ); j++ ) 
1440      {
1441        if ( m_tileBoundariesAlignedFlag[i].size() > j )
1442        {
1443          pcVPSVUI->setTileBoundariesAlignedFlag( i, j, m_tileBoundariesAlignedFlag[i][j]);
1444        }
1445      }
1446    }
1447
1448    pcVPSVUI->setIlpRestrictedRefLayersFlag( m_ilpRestrictedRefLayersFlag );
1449
1450    if( pcVPSVUI->getIlpRestrictedRefLayersFlag( ) )
1451    {
1452      for( Int i = 1; i  <=  vps.getMaxLayersMinus1(); i++ )
1453      {
1454        for( Int j = 0; j < vps.getNumDirectRefLayers( vps.getLayerIdInNuh( i ) ); j++ )
1455        {
1456          if ( m_minSpatialSegmentOffsetPlus1[i].size() > j )
1457          {       
1458            pcVPSVUI->setMinSpatialSegmentOffsetPlus1( i, j, m_minSpatialSegmentOffsetPlus1[i][j] );
1459          }
1460          if( pcVPSVUI->getMinSpatialSegmentOffsetPlus1( i, j ) > 0 )
1461          {
1462            if ( m_ctuBasedOffsetEnabledFlag[i].size() > j )
1463            {       
1464              pcVPSVUI->setCtuBasedOffsetEnabledFlag( i, j, m_ctuBasedOffsetEnabledFlag[i][j] );
1465            }
1466            if( pcVPSVUI->getCtuBasedOffsetEnabledFlag( i, j ) )
1467            {
1468              if ( m_minHorizontalCtuOffsetPlus1[i].size() > j )
1469              {
1470                pcVPSVUI->setMinHorizontalCtuOffsetPlus1( i, j, m_minHorizontalCtuOffsetPlus1[i][j] );
1471              }
1472            }
1473          }
1474        }
1475      }
1476    }     
1477  }
1478}
1479#endif
1480#endif
1481#if H_3D
1482Void TAppEncTop::xSetVPSExtension2( TComVPS& vps )
1483{
1484#if H_MV5
1485
1486  for ( Int layer = 0; layer <= vps.getMaxLayersMinus1(); layer++ )
1487#else
1488  for ( Int layer = 0; layer < vps.getMaxLayers(); layer++ )
1489#endif
1490  {
1491    Bool isDepth      = ( vps.getDepthId( layer ) == 1 ) ;
1492    Bool isLayerZero  = ( layer == 0 ); 
1493
1494#if H_3D_ARP
1495    vps.setUseAdvRP        ( layer, ( isDepth || isLayerZero ) ? 0 : m_uiUseAdvResPred );
1496    vps.setARPStepNum      ( layer, ( isDepth || isLayerZero ) ? 1 : H_3D_ARP_WFNR     );
1497#endif 
1498
1499#if H_3D_DIM
1500    vps.setVpsDepthModesFlag( layer, isDepth && !isLayerZero && (m_useDMM || m_useRBC || m_useSDC || m_useDLT ) );
1501#if H_3D_DIM_DLT
1502    vps.setUseDLTFlag( layer , isDepth && m_useDLT );
1503    if( vps.getUseDLTFlag( layer ) )
1504    {
1505      xAnalyzeInputBaseDepth(layer, max(m_iIntraPeriod, 24), &vps);
1506    }
1507#endif
1508#endif
1509
1510#if H_3D_IV_MERGE
1511    vps.setIvMvPredFlag         ( layer, !isLayerZero && !isDepth && m_ivMvPredFlag ); 
1512#endif
1513#if H_3D_NBDV_REF
1514    vps.setDepthRefinementFlag  ( layer, !isLayerZero && !isDepth && m_depthRefinementFlag );         
1515#endif
1516#if H_3D_VSP
1517    vps.setViewSynthesisPredFlag( layer, !isLayerZero && !isDepth && m_viewSynthesisPredFlag );         
1518#endif     
1519#if LGE_INTER_SDC_E0156
1520    vps.setInterSDCFlag( layer, !isLayerZero && isDepth && m_bDepthInterSDCFlag );
1521#endif
1522  } 
1523#if H_3D
1524  vps.setIvMvScalingFlag( m_ivMvScalingFlag );   
1525#endif
1526}
1527#endif
1528//! \}
Note: See TracBrowser for help on using the repository browser.