source: SHVCSoftware/branches/SHM-4.1-dev/source/App/TAppEncoder/TAppEncCfg.cpp @ 531

Last change on this file since 531 was 531, checked in by nokia, 11 years ago

JCTVC-O0149: implementation of cross_layer_bla_flag

  • Property svn:eol-style set to native
File size: 124.1 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     TAppEncCfg.cpp
35    \brief    Handle encoder configuration parameters
36*/
37
38#include <stdlib.h>
39#include <cassert>
40#include <cstring>
41#include <string>
42#include "TLibCommon/TComRom.h"
43#include "TAppEncCfg.h"
44
45static istream& operator>>(istream &, Level::Name &);
46static istream& operator>>(istream &, Level::Tier &);
47static istream& operator>>(istream &, Profile::Name &);
48
49#include "TAppCommon/program_options_lite.h"
50#include "TLibEncoder/TEncRateCtrl.h"
51#ifdef WIN32
52#define strdup _strdup
53#endif
54
55using namespace std;
56namespace po = df::program_options_lite;
57
58//! \ingroup TAppEncoder
59//! \{
60
61// ====================================================================================================================
62// Constructor / destructor / initialization / destroy
63// ====================================================================================================================
64
65#if SVC_EXTENSION
66TAppEncCfg::TAppEncCfg()
67: m_pBitstreamFile()
68#if AVC_BASE
69, m_avcBaseLayerFlag(0)
70#endif
71#if N0120_MAX_TID_REF_CFG
72, m_maxTidRefPresentFlag(1)
73#endif
74, m_pColumnWidth()
75, m_pRowHeight()
76, m_scalingListFile()
77, m_elRapSliceBEnabled(0)
78{
79  for(UInt layer=0; layer<MAX_LAYERS; layer++)
80  {
81    m_acLayerCfg[layer].setAppEncCfg(this);
82#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
83    m_ilSampleOnlyPred[layer] = 0;
84#endif
85  }
86  memset( m_scalabilityMask, 0, sizeof(m_scalabilityMask) );
87}
88#else
89TAppEncCfg::TAppEncCfg()
90: m_pchInputFile()
91, m_pchBitstreamFile()
92, m_pchReconFile()
93, m_pchdQPFile()
94, m_pColumnWidth()
95, m_pRowHeight()
96, m_scalingListFile()
97{
98  m_aidQP = NULL;
99  m_startOfCodedInterval = NULL;
100  m_codedPivotValue = NULL;
101  m_targetPivotValue = NULL;
102}
103#endif
104
105TAppEncCfg::~TAppEncCfg()
106{
107#if SVC_EXTENSION
108  free(m_pBitstreamFile);
109#else
110  free(m_pchBitstreamFile);
111  if ( m_aidQP )
112  {
113    delete[] m_aidQP;
114  }
115  if ( m_startOfCodedInterval )
116  {
117    delete[] m_startOfCodedInterval;
118    m_startOfCodedInterval = NULL;
119  }
120   if ( m_codedPivotValue )
121  {
122    delete[] m_codedPivotValue;
123    m_codedPivotValue = NULL;
124  }
125  if ( m_targetPivotValue )
126  {
127    delete[] m_targetPivotValue;
128    m_targetPivotValue = NULL;
129  }
130  free(m_pchInputFile);
131#endif
132#if !SVC_EXTENSION 
133  free(m_pchReconFile);
134  free(m_pchdQPFile);
135#endif
136  free(m_pColumnWidth);
137  free(m_pRowHeight);
138  free(m_scalingListFile);
139}
140
141Void TAppEncCfg::create()
142{
143}
144
145Void TAppEncCfg::destroy()
146{
147#if VPS_EXTN_DIRECT_REF_LAYERS
148#if M0457_PREDICTION_INDICATIONS
149  for(Int layer = 0; layer < MAX_LAYERS; layer++)
150  {
151    if( m_acLayerCfg[layer].m_numSamplePredRefLayers > 0 )
152    {
153      delete [] m_acLayerCfg[layer].m_samplePredRefLayerIds;
154    }
155  }
156  for(Int layer = 0; layer < MAX_LAYERS; layer++)
157  {
158    if( m_acLayerCfg[layer].m_numMotionPredRefLayers > 0 )
159    {
160      delete [] m_acLayerCfg[layer].m_motionPredRefLayerIds;
161    }
162  }
163#else
164  for(Int layer = 0; layer < MAX_LAYERS; layer++)
165  {
166    if( m_acLayerCfg[layer].m_numDirectRefLayers > 0 )
167    {
168      delete [] m_acLayerCfg[layer].m_refLayerIds;
169    }
170  }
171#endif
172  for(Int layer = 0; layer < MAX_LAYERS; layer++)
173  {
174    if( m_acLayerCfg[layer].m_numActiveRefLayers > 0 )
175    {
176      delete [] m_acLayerCfg[layer].m_predLayerIds;
177    }
178  }
179#endif
180}
181
182std::istringstream &operator>>(std::istringstream &in, GOPEntry &entry)     //input
183{
184  in>>entry.m_sliceType;
185  in>>entry.m_POC;
186  in>>entry.m_QPOffset;
187  in>>entry.m_QPFactor;
188  in>>entry.m_tcOffsetDiv2;
189  in>>entry.m_betaOffsetDiv2;
190  in>>entry.m_temporalId;
191  in>>entry.m_numRefPicsActive;
192  in>>entry.m_numRefPics;
193  for ( Int i = 0; i < entry.m_numRefPics; i++ )
194  {
195    in>>entry.m_referencePics[i];
196  }
197  in>>entry.m_interRPSPrediction;
198#if AUTO_INTER_RPS
199  if (entry.m_interRPSPrediction==1)
200  {
201    in>>entry.m_deltaRPS;
202    in>>entry.m_numRefIdc;
203    for ( Int i = 0; i < entry.m_numRefIdc; i++ )
204    {
205      in>>entry.m_refIdc[i];
206    }
207  }
208  else if (entry.m_interRPSPrediction==2)
209  {
210    in>>entry.m_deltaRPS;
211  }
212#else
213  if (entry.m_interRPSPrediction)
214  {
215    in>>entry.m_deltaRPS;
216    in>>entry.m_numRefIdc;
217    for ( Int i = 0; i < entry.m_numRefIdc; i++ )
218    {
219      in>>entry.m_refIdc[i];
220    }
221  }
222#endif
223  return in;
224}
225
226#if AUXILIARY_PICTURES
227static inline ChromaFormat numberToChromaFormat(const Int val)
228{
229  switch (val)
230  {
231    case 400: return CHROMA_400; break;
232    case 420: return CHROMA_420; break;
233    case 422: return CHROMA_422; break;
234    case 444: return CHROMA_444; break;
235    default:  return NUM_CHROMA_FORMAT;
236  }
237}
238#endif
239
240#if SVC_EXTENSION
241void TAppEncCfg::getDirFilename(string& filename, string& dir, const string path)
242{
243  size_t pos = path.find_last_of("\\");
244  if(pos != std::string::npos)
245  {
246    filename.assign(path.begin() + pos + 1, path.end());
247    dir.assign(path.begin(), path.begin() + pos + 1);
248  }
249  else
250  {
251    pos = path.find_last_of("/");
252    if(pos != std::string::npos)
253    {
254      filename.assign(path.begin() + pos + 1, path.end());
255      dir.assign(path.begin(), path.begin() + pos + 1);
256    }
257    else
258    {
259      filename = path;
260      dir.assign("");
261    }
262  }
263}
264#endif
265
266static const struct MapStrToProfile {
267  const Char* str;
268  Profile::Name value;
269} strToProfile[] = {
270  {"none", Profile::NONE},
271  {"main", Profile::MAIN},
272  {"main10", Profile::MAIN10},
273  {"main-still-picture", Profile::MAINSTILLPICTURE},
274};
275
276static const struct MapStrToTier {
277  const Char* str;
278  Level::Tier value;
279} strToTier[] = {
280  {"main", Level::MAIN},
281  {"high", Level::HIGH},
282};
283
284static const struct MapStrToLevel {
285  const Char* str;
286  Level::Name value;
287} strToLevel[] = {
288  {"none",Level::NONE},
289  {"1",   Level::LEVEL1},
290  {"2",   Level::LEVEL2},
291  {"2.1", Level::LEVEL2_1},
292  {"3",   Level::LEVEL3},
293  {"3.1", Level::LEVEL3_1},
294  {"4",   Level::LEVEL4},
295  {"4.1", Level::LEVEL4_1},
296  {"5",   Level::LEVEL5},
297  {"5.1", Level::LEVEL5_1},
298  {"5.2", Level::LEVEL5_2},
299  {"6",   Level::LEVEL6},
300  {"6.1", Level::LEVEL6_1},
301  {"6.2", Level::LEVEL6_2},
302};
303
304template<typename T, typename P>
305static istream& readStrToEnum(P map[], unsigned long mapLen, istream &in, T &val)
306{
307  string str;
308  in >> str;
309
310  for (Int i = 0; i < mapLen; i++)
311  {
312    if (str == map[i].str)
313    {
314      val = map[i].value;
315      goto found;
316    }
317  }
318  /* not found */
319  in.setstate(ios::failbit);
320found:
321  return in;
322}
323
324static istream& operator>>(istream &in, Profile::Name &profile)
325{
326  return readStrToEnum(strToProfile, sizeof(strToProfile)/sizeof(*strToProfile), in, profile);
327}
328
329static istream& operator>>(istream &in, Level::Tier &tier)
330{
331  return readStrToEnum(strToTier, sizeof(strToTier)/sizeof(*strToTier), in, tier);
332}
333
334static istream& operator>>(istream &in, Level::Name &level)
335{
336  return readStrToEnum(strToLevel, sizeof(strToLevel)/sizeof(*strToLevel), in, level);
337}
338
339// ====================================================================================================================
340// Public member functions
341// ====================================================================================================================
342
343/** \param  argc        number of arguments
344    \param  argv        array of arguments
345    \retval             true when success
346 */
347Bool TAppEncCfg::parseCfg( Int argc, Char* argv[] )
348{
349  Bool do_help = false;
350 
351#if SVC_EXTENSION
352  string  cfg_LayerCfgFile   [MAX_LAYERS];
353  string  cfg_BitstreamFile;
354  string* cfg_InputFile      [MAX_LAYERS];
355  string* cfg_ReconFile      [MAX_LAYERS];
356  Double* cfg_fQP            [MAX_LAYERS];
357
358#if REPN_FORMAT_IN_VPS
359  Int*    cfg_repFormatIdx  [MAX_LAYERS];
360#endif
361  Int*    cfg_SourceWidth   [MAX_LAYERS]; 
362  Int*    cfg_SourceHeight  [MAX_LAYERS];
363  Int*    cfg_FrameRate     [MAX_LAYERS];
364  Int*    cfg_IntraPeriod   [MAX_LAYERS];
365  Int*    cfg_conformanceMode  [MAX_LAYERS];
366#if LAYER_CTB
367  // coding unit (CU) definition
368  UInt*      cfg_uiMaxCUWidth[MAX_LAYERS];                                   ///< max. CU width in pixel
369  UInt*      cfg_uiMaxCUHeight[MAX_LAYERS];                                  ///< max. CU height in pixel
370  UInt*      cfg_uiMaxCUDepth[MAX_LAYERS];                                   ///< max. CU depth
371 
372  // transfom unit (TU) definition
373  UInt*      cfg_uiQuadtreeTULog2MaxSize[MAX_LAYERS];
374  UInt*      cfg_uiQuadtreeTULog2MinSize[MAX_LAYERS];
375 
376  UInt*      cfg_uiQuadtreeTUMaxDepthInter[MAX_LAYERS];
377  UInt*      cfg_uiQuadtreeTUMaxDepthIntra[MAX_LAYERS];
378#endif
379#if AUXILIARY_PICTURES
380  Int      cfg_tmpChromaFormatIDC  [MAX_LAYERS];
381  Int      cfg_tmpInputChromaFormat[MAX_LAYERS];
382  Int*     cfg_auxId               [MAX_LAYERS];
383#endif
384#if VPS_EXTN_DIRECT_REF_LAYERS
385#if M0457_PREDICTION_INDICATIONS
386  Int*    cfg_numSamplePredRefLayers  [MAX_LAYERS];
387  string  cfg_samplePredRefLayerIds   [MAX_LAYERS];
388  string* cfg_samplePredRefLayerIdsPtr[MAX_LAYERS];
389  Int*    cfg_numMotionPredRefLayers  [MAX_LAYERS];
390  string  cfg_motionPredRefLayerIds   [MAX_LAYERS];
391  string* cfg_motionPredRefLayerIdsPtr[MAX_LAYERS];
392#else
393  Int*    cfg_numDirectRefLayers [MAX_LAYERS];
394  string  cfg_refLayerIds        [MAX_LAYERS];
395  string* cfg_refLayerIdsPtr     [MAX_LAYERS];
396#endif
397  Int*    cfg_numActiveRefLayers [MAX_LAYERS];
398  string  cfg_predLayerIds       [MAX_LAYERS];
399  string* cfg_predLayerIdsPtr    [MAX_LAYERS];
400#endif
401#if O0098_SCALED_REF_LAYER_ID
402  string    cfg_scaledRefLayerId [MAX_LAYERS];
403#endif
404  string    cfg_scaledRefLayerLeftOffset [MAX_LAYERS];
405  string    cfg_scaledRefLayerTopOffset [MAX_LAYERS];
406  string    cfg_scaledRefLayerRightOffset [MAX_LAYERS];
407  string    cfg_scaledRefLayerBottomOffset [MAX_LAYERS];
408  Int*      cfg_numScaledRefLayerOffsets[MAX_LAYERS];
409
410#if O0098_SCALED_REF_LAYER_ID
411  string*    cfg_scaledRefLayerIdPtr           [MAX_LAYERS];
412#endif
413  string*    cfg_scaledRefLayerLeftOffsetPtr   [MAX_LAYERS];
414  string*    cfg_scaledRefLayerTopOffsetPtr    [MAX_LAYERS];
415  string*    cfg_scaledRefLayerRightOffsetPtr  [MAX_LAYERS];
416  string*    cfg_scaledRefLayerBottomOffsetPtr [MAX_LAYERS];
417#if RC_SHVC_HARMONIZATION
418  Bool*   cfg_RCEnableRateControl  [MAX_LAYERS];
419  Int*    cfg_RCTargetBitRate      [MAX_LAYERS];
420  Bool*   cfg_RCKeepHierarchicalBit[MAX_LAYERS];
421  Bool*   cfg_RCLCULevelRC         [MAX_LAYERS];
422  Bool*   cfg_RCUseLCUSeparateModel[MAX_LAYERS];
423  Int*    cfg_RCInitialQP          [MAX_LAYERS];
424  Bool*   cfg_RCForceIntraQP       [MAX_LAYERS];
425#endif
426#if O0194_DIFFERENT_BITDEPTH_EL_BL
427  Int*    cfg_InputBitDepthY    [MAX_LAYERS];
428  Int*    cfg_InternalBitDepthY [MAX_LAYERS];
429  Int*    cfg_InputBitDepthC    [MAX_LAYERS];
430  Int*    cfg_InternalBitDepthC [MAX_LAYERS];
431  Int*    cfg_OutputBitDepthY   [MAX_LAYERS];
432  Int*    cfg_OutputBitDepthC   [MAX_LAYERS];
433#endif
434#if N0120_MAX_TID_REF_CFG
435  Int*    cfg_maxTidIlRefPicsPlus1[MAX_LAYERS]; 
436#endif
437  for(UInt layer = 0; layer < MAX_LAYERS; layer++)
438  {
439    cfg_InputFile[layer]    = &m_acLayerCfg[layer].m_cInputFile;
440    cfg_ReconFile[layer]    = &m_acLayerCfg[layer].m_cReconFile;
441    cfg_fQP[layer]          = &m_acLayerCfg[layer].m_fQP;
442#if REPN_FORMAT_IN_VPS
443    cfg_repFormatIdx[layer] = &m_acLayerCfg[layer].m_repFormatIdx;
444#endif
445    cfg_SourceWidth[layer]  = &m_acLayerCfg[layer].m_iSourceWidth;
446    cfg_SourceHeight[layer] = &m_acLayerCfg[layer].m_iSourceHeight;
447    cfg_FrameRate[layer]    = &m_acLayerCfg[layer].m_iFrameRate; 
448    cfg_IntraPeriod[layer]  = &m_acLayerCfg[layer].m_iIntraPeriod; 
449    cfg_conformanceMode[layer] = &m_acLayerCfg[layer].m_conformanceMode;
450#if LAYER_CTB
451    // coding unit (CU) definition
452    cfg_uiMaxCUWidth[layer]  = &m_acLayerCfg[layer].m_uiMaxCUWidth;
453    cfg_uiMaxCUHeight[layer] = &m_acLayerCfg[layer].m_uiMaxCUHeight;
454    cfg_uiMaxCUDepth[layer]  = &m_acLayerCfg[layer].m_uiMaxCUDepth;
455
456    // transfom unit (TU) definition.
457    cfg_uiQuadtreeTULog2MaxSize[layer] = &m_acLayerCfg[layer].m_uiQuadtreeTULog2MaxSize;
458    cfg_uiQuadtreeTULog2MinSize[layer] = &m_acLayerCfg[layer].m_uiQuadtreeTULog2MinSize;
459
460    cfg_uiQuadtreeTUMaxDepthInter[layer] = &m_acLayerCfg[layer].m_uiQuadtreeTUMaxDepthInter;
461    cfg_uiQuadtreeTUMaxDepthIntra[layer] = &m_acLayerCfg[layer].m_uiQuadtreeTUMaxDepthIntra;
462#endif
463#if VPS_EXTN_DIRECT_REF_LAYERS
464#if M0457_PREDICTION_INDICATIONS
465    cfg_numSamplePredRefLayers  [layer] = &m_acLayerCfg[layer].m_numSamplePredRefLayers;
466    cfg_samplePredRefLayerIdsPtr[layer] = &cfg_samplePredRefLayerIds[layer];
467    cfg_numMotionPredRefLayers  [layer] = &m_acLayerCfg[layer].m_numMotionPredRefLayers;
468    cfg_motionPredRefLayerIdsPtr[layer] = &cfg_motionPredRefLayerIds[layer];
469#else
470    cfg_numDirectRefLayers  [layer] = &m_acLayerCfg[layer].m_numDirectRefLayers;
471    cfg_refLayerIdsPtr      [layer]  = &cfg_refLayerIds[layer];
472#endif
473    cfg_numActiveRefLayers  [layer] = &m_acLayerCfg[layer].m_numActiveRefLayers;
474    cfg_predLayerIdsPtr     [layer]  = &cfg_predLayerIds[layer];
475#endif
476    cfg_numScaledRefLayerOffsets [layer] = &m_acLayerCfg[layer].m_numScaledRefLayerOffsets;
477    for(Int i = 0; i < MAX_LAYERS; i++)
478    {
479#if O0098_SCALED_REF_LAYER_ID
480      cfg_scaledRefLayerIdPtr          [layer] = &cfg_scaledRefLayerId[layer]          ;
481#endif
482      cfg_scaledRefLayerLeftOffsetPtr  [layer] = &cfg_scaledRefLayerLeftOffset[layer]  ;
483      cfg_scaledRefLayerTopOffsetPtr   [layer] = &cfg_scaledRefLayerTopOffset[layer]   ;
484      cfg_scaledRefLayerRightOffsetPtr [layer] = &cfg_scaledRefLayerRightOffset[layer] ;
485      cfg_scaledRefLayerBottomOffsetPtr[layer] = &cfg_scaledRefLayerBottomOffset[layer];
486    }
487#if RC_SHVC_HARMONIZATION
488    cfg_RCEnableRateControl[layer]   = &m_acLayerCfg[layer].m_RCEnableRateControl;
489    cfg_RCTargetBitRate[layer]       = &m_acLayerCfg[layer].m_RCTargetBitrate;
490    cfg_RCKeepHierarchicalBit[layer] = &m_acLayerCfg[layer].m_RCKeepHierarchicalBit;
491    cfg_RCLCULevelRC[layer]          = &m_acLayerCfg[layer].m_RCLCULevelRC;
492    cfg_RCUseLCUSeparateModel[layer] = &m_acLayerCfg[layer].m_RCUseLCUSeparateModel;
493    cfg_RCInitialQP[layer]           = &m_acLayerCfg[layer].m_RCInitialQP;
494    cfg_RCForceIntraQP[layer]        = &m_acLayerCfg[layer].m_RCForceIntraQP;
495#endif
496#if O0194_DIFFERENT_BITDEPTH_EL_BL
497  cfg_InputBitDepthY   [layer] = &m_acLayerCfg[layer].m_inputBitDepthY;
498  cfg_InternalBitDepthY[layer] = &m_acLayerCfg[layer].m_internalBitDepthY;
499  cfg_InputBitDepthC   [layer] = &m_acLayerCfg[layer].m_inputBitDepthC;
500  cfg_InternalBitDepthC[layer] = &m_acLayerCfg[layer].m_internalBitDepthC;
501  cfg_OutputBitDepthY  [layer] = &m_acLayerCfg[layer].m_outputBitDepthY;
502  cfg_OutputBitDepthC  [layer] = &m_acLayerCfg[layer].m_outputBitDepthC;
503#endif
504#if N0120_MAX_TID_REF_CFG
505    cfg_maxTidIlRefPicsPlus1[layer] = &m_acLayerCfg[layer].m_maxTidIlRefPicsPlus1; 
506#endif
507#if AUXILIARY_PICTURES
508    cfg_auxId[layer]                = &m_acLayerCfg[layer].m_auxId; 
509#endif
510  }
511#if AVC_BASE
512  string  cfg_BLInputFile;
513#endif
514#if AVC_SYNTAX
515  string  cfg_BLSyntaxFile;
516#endif
517#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
518  string  cfg_tileSets;
519#endif
520#else //SVC_EXTENSION
521  string cfg_InputFile;
522  string cfg_BitstreamFile;
523  string cfg_ReconFile;
524  string cfg_dQPFile;
525#endif //SVC_EXTENSION
526  string cfg_ColumnWidth;
527  string cfg_RowHeight;
528  string cfg_ScalingListFile;
529  string cfg_startOfCodedInterval;
530  string cfg_codedPivotValue;
531  string cfg_targetPivotValue;
532  po::Options opts;
533  opts.addOptions()
534  ("help", do_help, false, "this help text")
535  ("c", po::parseConfigFile, "configuration file name")
536 
537  // File, I/O and source parameters
538#if SVC_EXTENSION
539  ("InputFile%d,-i%d",        cfg_InputFile,  string(""), MAX_LAYERS, "original YUV input file name for layer %d")
540  ("ReconFile%d,-o%d",        cfg_ReconFile,  string(""), MAX_LAYERS, "reconstruction YUV input file name for layer %d")
541  ("LayerConfig%d,-lc%d",     cfg_LayerCfgFile, string(""), MAX_LAYERS, "layer %d configuration file name")
542  ("SourceWidth%d,-wdt%d",    cfg_SourceWidth, 0, MAX_LAYERS, "Source picture width for layer %d")
543  ("SourceHeight%d,-hgt%d",   cfg_SourceHeight, 0, MAX_LAYERS, "Source picture height for layer %d")
544  ("FrameRate%d,-fr%d",       cfg_FrameRate,  0, MAX_LAYERS, "Frame rate for layer %d")
545  ("LambdaModifier%d,-LM%d",  m_adLambdaModifier, ( double )1.0, MAX_TLAYER, "Lambda modifier for temporal layer %d")
546#if O0215_PHASE_ALIGNMENT
547  ("PhaseAlignment",          m_phaseAlignFlag, false, "indicate the sample location alignment between layers (0: zero position aligned, 1: central position aligned)")
548#endif
549#if REPN_FORMAT_IN_VPS
550  ("RepFormatIdx%d",          cfg_repFormatIdx, -1, MAX_LAYERS, "Index to the representation format structure used from the VPS")
551#endif
552#if VPS_EXTN_DIRECT_REF_LAYERS
553#if M0457_PREDICTION_INDICATIONS
554  ("NumSamplePredRefLayers%d",cfg_numSamplePredRefLayers, -1, MAX_LAYERS, "Number of sample prediction reference layers")
555  ("SamplePredRefLayerIds%d", cfg_samplePredRefLayerIdsPtr, string(""), MAX_LAYERS, "sample pred reference layer IDs")
556  ("NumMotionPredRefLayers%d",cfg_numMotionPredRefLayers, -1, MAX_LAYERS, "Number of motion prediction reference layers")
557  ("MotionPredRefLayerIds%d", cfg_motionPredRefLayerIdsPtr, string(""), MAX_LAYERS, "motion pred reference layer IDs")
558#else
559  ("NumDirectRefLayers%d",    cfg_numDirectRefLayers, -1, MAX_LAYERS, "Number of direct reference layers")
560  ("RefLayerIds%d",           cfg_refLayerIdsPtr, string(""), MAX_LAYERS, "direct reference layer IDs")
561#endif
562  ("NumActiveRefLayers%d",    cfg_numActiveRefLayers, -1, MAX_LAYERS, "Number of active reference layers")
563  ("PredLayerIds%d",          cfg_predLayerIdsPtr, string(""), MAX_LAYERS, "inter-layer prediction layer IDs")
564#endif
565  ("NumLayers",               m_numLayers, 1, "Number of layers to code")
566#if AUXILIARY_PICTURES
567  ("InputChromaFormat%d",     cfg_tmpInputChromaFormat,  420, MAX_LAYERS, "InputChromaFormatIDC for layer %d")
568  ("ChromaFormatIDC%d,-cf",   cfg_tmpChromaFormatIDC,    420, MAX_LAYERS, "ChromaFormatIDC (400|420|422|444 or set 0 (default) for same as InputChromaFormat) for layer %d")
569  ("AuxId%d",                 cfg_auxId,                 0,   MAX_LAYERS, "Auxilary picture ID for layer %d (0: Not aux pic, 1: Alpha plane, 2: Depth picture, 3: Cb enh, 4: Cr enh")
570#endif
571  ("ConformanceMode%d",       cfg_conformanceMode,0, MAX_LAYERS, "Window conformance mode (0: no cropping, 1:automatic padding, 2: padding, 3:cropping")
572#if SCALABILITY_MASK_E0104
573  ("ScalabilityMask1",        m_scalabilityMask[1], 0, "scalability_mask[1] (multiview)")
574  ("ScalabilityMask2",        m_scalabilityMask[2], 1, "scalability_mask[2] (scalable)" )
575#if AUXILIARY_PICTURES
576  ("ScalabilityMask3",        m_scalabilityMask[3], 0, "scalability_mask[3] (auxiliary pictures)" )
577#endif
578#else
579  ("ScalabilityMask0",        m_scalabilityMask[0], 0, "scalability_mask[0] (multiview)")
580  ("ScalabilityMask1",        m_scalabilityMask[1], 1, "scalability_mask[1] (scalable)" )
581#endif
582  ("BitstreamFile,b",         cfg_BitstreamFile, string(""), "Bitstream output file name")
583#if !O0194_DIFFERENT_BITDEPTH_EL_BL
584  ("InputBitDepth",           m_inputBitDepthY,    8, "Bit-depth of input file")
585  ("OutputBitDepth",          m_outputBitDepthY,   0, "Bit-depth of output file (default:InternalBitDepth)")
586  ("InternalBitDepth",        m_internalBitDepthY, 0, "Bit-depth the codec operates at. (default:InputBitDepth)"
587                                                       "If different to InputBitDepth, source data will be converted")
588  ("InputBitDepthC",          m_inputBitDepthC,    0, "As per InputBitDepth but for chroma component. (default:InputBitDepth)")
589  ("OutputBitDepthC",         m_outputBitDepthC,   0, "As per OutputBitDepth but for chroma component. (default:InternalBitDepthC)")
590  ("InternalBitDepthC",       m_internalBitDepthC, 0, "As per InternalBitDepth but for chroma component. (default:IntrenalBitDepth)")
591#endif
592  ("NumScaledRefLayerOffsets%d",    cfg_numScaledRefLayerOffsets,     0, MAX_LAYERS,  "Number of scaled offset layer sets ")
593#if O0098_SCALED_REF_LAYER_ID
594  ("ScaledRefLayerId%d",           cfg_scaledRefLayerIdPtr,          string(""), MAX_LAYERS, "Layer ID of scaled base layer picture")
595#endif
596  ("ScaledRefLayerLeftOffset%d",   cfg_scaledRefLayerLeftOffsetPtr,  string(""), MAX_LAYERS, "Horizontal offset of top-left luma sample of scaled base layer picture with respect to"
597                                                                 " top-left luma sample of the EL picture, in units of two luma samples")
598  ("ScaledRefLayerTopOffset%d",    cfg_scaledRefLayerTopOffsetPtr,   string(""), MAX_LAYERS,   "Vertical offset of top-left luma sample of scaled base layer picture with respect to"
599                                                                 " top-left luma sample of the EL picture, in units of two luma samples")
600  ("ScaledRefLayerRightOffset%d",  cfg_scaledRefLayerRightOffsetPtr, string(""), MAX_LAYERS, "Horizontal offset of bottom-right luma sample of scaled base layer picture with respect to"
601                                                                 " bottom-right luma sample of the EL picture, in units of two luma samples")
602  ("ScaledRefLayerBottomOffset%d", cfg_scaledRefLayerBottomOffsetPtr,string(""), MAX_LAYERS, "Vertical offset of bottom-right luma sample of scaled base layer picture with respect to"
603                                                                 " bottom-right luma sample of the EL picture, in units of two luma samples")
604#if O0194_DIFFERENT_BITDEPTH_EL_BL
605  ("InputBitDepth%d",       cfg_InputBitDepthY,    8, MAX_LAYERS, "Bit-depth of input file for layer %d")
606  ("InternalBitDepth%d",    cfg_InternalBitDepthY, 0, MAX_LAYERS, "Bit-depth the codec operates at. (default:InputBitDepth) for layer %d ")
607//                                                       "If different to InputBitDepth, source data will be converted")
608  ("InputBitDepthC%d",      cfg_InputBitDepthC,    0, MAX_LAYERS, "As per InputBitDepth but for chroma component. (default:InputBitDepth) for layer %d")
609  ("InternalBitDepthC%d",   cfg_InternalBitDepthC, 0, MAX_LAYERS, "As per InternalBitDepth but for chroma component. (default:IntrenalBitDepth) for layer %d")
610  ("OutputBitDepth%d",      cfg_OutputBitDepthY,   0, MAX_LAYERS, "Bit-depth of output file (default:InternalBitDepth)")
611  ("OutputBitDepthC%d",     cfg_OutputBitDepthC,   0, MAX_LAYERS, "As per OutputBitDepth but for chroma component. (default:InternalBitDepthC)")
612#endif
613#if N0120_MAX_TID_REF_CFG
614  ("MaxTidRefPresentFlag", m_maxTidRefPresentFlag, true, "max_tid_ref_present_flag (0: not present, 1: present(default)) " )
615  ("MaxTidIlRefPicsPlus1%d", cfg_maxTidIlRefPicsPlus1, 1, MAX_LAYERS, "allowed maximum temporal_id for inter-layer prediction")
616#endif
617#if O0223_PICTURE_TYPES_ALIGN_FLAG
618  ("CrossLayerPictureTypeAlignFlag", m_crossLayerPictureTypeAlignFlag, true, "align picture type across layers" ) 
619#endif
620#if N0147_IRAP_ALIGN_FLAG
621    ("CrossLayerIrapAlignFlag", m_crossLayerIrapAlignFlag, true, "align IRAP across layers" ) 
622#endif
623#if AVC_BASE
624  ("AvcBase,-avc",            m_avcBaseLayerFlag,     0, "avc_base_layer_flag")
625  ("InputBLFile,-ibl",        cfg_BLInputFile,     string(""), "Base layer rec YUV input file name")
626#if AVC_SYNTAX
627  ("InputBLSyntaxFile,-ibs",  cfg_BLSyntaxFile,     string(""), "Base layer syntax input file name")
628#endif
629#endif
630  ("EnableElRapB,-use-rap-b",  m_elRapSliceBEnabled, 0, "Set ILP over base-layer I picture to B picture (default is P picture)")
631#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
632  ("IlSampleOnlyPred%d",       m_ilSampleOnlyPred, 0, MAX_LAYERS, "Set inter_layer_sample_pred_only_flag for all slices")
633#endif
634#else //SVC_EXTENSION
635  ("InputFile,i",           cfg_InputFile,     string(""), "Original YUV input file name")
636  ("BitstreamFile,b",       cfg_BitstreamFile, string(""), "Bitstream output file name")
637  ("ReconFile,o",           cfg_ReconFile,     string(""), "Reconstructed YUV output file name")
638  ("SourceWidth,-wdt",      m_iSourceWidth,        0, "Source picture width")
639  ("SourceHeight,-hgt",     m_iSourceHeight,       0, "Source picture height")
640  ("InputBitDepth",         m_inputBitDepthY,    8, "Bit-depth of input file")
641  ("OutputBitDepth",        m_outputBitDepthY,   0, "Bit-depth of output file (default:InternalBitDepth)")
642  ("InternalBitDepth",      m_internalBitDepthY, 0, "Bit-depth the codec operates at. (default:InputBitDepth)"
643                                                       "If different to InputBitDepth, source data will be converted")
644  ("InputBitDepthC",        m_inputBitDepthC,    0, "As per InputBitDepth but for chroma component. (default:InputBitDepth)")
645  ("OutputBitDepthC",       m_outputBitDepthC,   0, "As per OutputBitDepth but for chroma component. (default:InternalBitDepthC)")
646  ("InternalBitDepthC",     m_internalBitDepthC, 0, "As per InternalBitDepth but for chroma component. (default:IntrenalBitDepth)")
647#if AUXILIARY_PICTURES
648  ("InputChromaFormat",     tmpInputChromaFormat,                       420, "InputChromaFormatIDC")
649  ("ChromaFormatIDC,-cf",   tmpChromaFormat,                             0, "ChromaFormatIDC (400|420|422|444 or set 0 (default) for same as InputChromaFormat)")
650#endif
651  ("ConformanceMode",       m_conformanceMode,     0, "Window conformance mode (0: no window, 1:automatic padding, 2:padding, 3:conformance")
652  ("HorizontalPadding,-pdx",m_aiPad[0],            0, "Horizontal source padding for conformance window mode 2")
653  ("VerticalPadding,-pdy",  m_aiPad[1],            0, "Vertical source padding for conformance window mode 2")
654  ("ConfLeft",              m_confLeft,            0, "Left offset for window conformance mode 3")
655  ("ConfRight",             m_confRight,           0, "Right offset for window conformance mode 3")
656  ("ConfTop",               m_confTop,             0, "Top offset for window conformance mode 3")
657  ("ConfBottom",            m_confBottom,          0, "Bottom offset for window conformance mode 3")
658  ("FrameRate,-fr",         m_iFrameRate,          0, "Frame rate")
659#endif //SVC_EXTENSION
660
661  //Field coding parameters
662  ("FieldCoding", m_isField, false, "Signals if it's a field based coding")
663  ("TopFieldFirst, Tff", m_isTopFieldFirst, false, "In case of field based coding, signals whether if it's a top field first or not")
664  ("FrameSkip,-fs",         m_FrameSkip,          0u, "Number of frames to skip at start of input YUV")
665  ("FramesToBeEncoded,f",   m_framesToBeEncoded,   0, "Number of frames to be encoded (default=all)")
666  // Profile and level
667  ("Profile", m_profile,   Profile::NONE, "Profile to be used when encoding (Incomplete)")
668  ("Level",   m_level,     Level::NONE,   "Level limit to be used, eg 5.1 (Incomplete)")
669  ("Tier",    m_levelTier, Level::MAIN,   "Tier to use for interpretation of --Level")
670
671  ("ProgressiveSource", m_progressiveSourceFlag, false, "Indicate that source is progressive")
672  ("InterlacedSource",  m_interlacedSourceFlag,  false, "Indicate that source is interlaced")
673  ("NonPackedSource",   m_nonPackedConstraintFlag, false, "Indicate that source does not contain frame packing")
674  ("FrameOnly",         m_frameOnlyConstraintFlag, false, "Indicate that the bitstream contains only frames")
675
676#if LAYER_CTB
677  // Unit definition parameters
678  ("MaxCUWidth%d",              cfg_uiMaxCUWidth,             64u, MAX_LAYERS, "Maximum CU width")
679  ("MaxCUHeight%d",             cfg_uiMaxCUHeight,            64u, MAX_LAYERS, "Maximum CU height")
680  // todo: remove defaults from MaxCUSize
681  ("MaxCUSize%d,s%d",           cfg_uiMaxCUWidth,             64u, MAX_LAYERS, "Maximum CU size")
682  ("MaxCUSize%d,s%d",           cfg_uiMaxCUHeight,            64u, MAX_LAYERS, "Maximum CU size")
683  ("MaxPartitionDepth%d,h%d",   cfg_uiMaxCUDepth,              4u, MAX_LAYERS, "CU depth")
684 
685  ("QuadtreeTULog2MaxSize%d",   cfg_uiQuadtreeTULog2MaxSize,   6u, MAX_LAYERS, "Maximum TU size in logarithm base 2")
686  ("QuadtreeTULog2MinSize%d",   cfg_uiQuadtreeTULog2MinSize,   2u, MAX_LAYERS, "Minimum TU size in logarithm base 2")
687 
688  ("QuadtreeTUMaxDepthIntra%d", cfg_uiQuadtreeTUMaxDepthIntra, 1u, MAX_LAYERS, "Depth of TU tree for intra CUs")
689  ("QuadtreeTUMaxDepthInter%d", cfg_uiQuadtreeTUMaxDepthInter, 2u, MAX_LAYERS, "Depth of TU tree for inter CUs")
690
691
692  // set the same CU realted settings across all the layers if config file parameters are not layer specific
693  ("MaxCUWidth",              cfg_uiMaxCUWidth,             64u, MAX_LAYERS, "Maximum CU width")
694  ("MaxCUHeight",             cfg_uiMaxCUHeight,            64u, MAX_LAYERS, "Maximum CU height")
695  // todo: remove defaults from MaxCUSize
696  ("MaxCUSize,s",             cfg_uiMaxCUWidth,             64u, MAX_LAYERS, "Maximum CU size")
697  ("MaxCUSize,s",             cfg_uiMaxCUHeight,            64u, MAX_LAYERS, "Maximum CU size")
698  ("MaxPartitionDepth,h",     cfg_uiMaxCUDepth,              4u, MAX_LAYERS, "CU depth")
699 
700  ("QuadtreeTULog2MaxSize",   cfg_uiQuadtreeTULog2MaxSize,   6u, MAX_LAYERS, "Maximum TU size in logarithm base 2")
701  ("QuadtreeTULog2MinSize",   cfg_uiQuadtreeTULog2MinSize,   2u, MAX_LAYERS, "Minimum TU size in logarithm base 2")
702 
703  ("QuadtreeTUMaxDepthIntra", cfg_uiQuadtreeTUMaxDepthIntra, 1u, MAX_LAYERS, "Depth of TU tree for intra CUs")
704  ("QuadtreeTUMaxDepthInter", cfg_uiQuadtreeTUMaxDepthInter, 2u, MAX_LAYERS, "Depth of TU tree for inter CUs")
705#else
706  // Unit definition parameters
707  ("MaxCUWidth",              m_uiMaxCUWidth,             64u)
708  ("MaxCUHeight",             m_uiMaxCUHeight,            64u)
709  // todo: remove defaults from MaxCUSize
710  ("MaxCUSize,s",             m_uiMaxCUWidth,             64u, "Maximum CU size")
711  ("MaxCUSize,s",             m_uiMaxCUHeight,            64u, "Maximum CU size")
712  ("MaxPartitionDepth,h",     m_uiMaxCUDepth,              4u, "CU depth")
713 
714  ("QuadtreeTULog2MaxSize",   m_uiQuadtreeTULog2MaxSize,   6u, "Maximum TU size in logarithm base 2")
715  ("QuadtreeTULog2MinSize",   m_uiQuadtreeTULog2MinSize,   2u, "Minimum TU size in logarithm base 2")
716 
717  ("QuadtreeTUMaxDepthIntra", m_uiQuadtreeTUMaxDepthIntra, 1u, "Depth of TU tree for intra CUs")
718  ("QuadtreeTUMaxDepthInter", m_uiQuadtreeTUMaxDepthInter, 2u, "Depth of TU tree for inter CUs")
719#endif
720 
721  // Coding structure paramters
722#if SVC_EXTENSION
723  ("IntraPeriod%d,-ip%d",  cfg_IntraPeriod, -1, MAX_LAYERS, "intra period in frames for layer %d, (-1: only first frame)")
724#else
725  ("IntraPeriod,-ip",         m_iIntraPeriod,              -1, "Intra period in frames, (-1: only first frame)")
726#endif
727  ("DecodingRefreshType,-dr", m_iDecodingRefreshType,       0, "Intra refresh type (0:none 1:CRA 2:IDR)")
728  ("GOPSize,g",               m_iGOPSize,                   1, "GOP size of temporal structure")
729  // motion options
730  ("FastSearch",              m_iFastSearch,                1, "0:Full search  1:Diamond  2:PMVFAST")
731  ("SearchRange,-sr",         m_iSearchRange,              96, "Motion search range")
732  ("BipredSearchRange",       m_bipredSearchRange,          4, "Motion search range for bipred refinement")
733  ("HadamardME",              m_bUseHADME,               true, "Hadamard ME for fractional-pel")
734  ("ASR",                     m_bUseASR,                false, "Adaptive motion search range")
735
736#if SVC_EXTENSION
737  ("LambdaModifier%d,-LM%d",  m_adLambdaModifier, ( double )1.0, MAX_TLAYER, "Lambda modifier for temporal layer %d")
738#else
739  // Mode decision parameters
740  ("LambdaModifier0,-LM0", m_adLambdaModifier[ 0 ], ( Double )1.0, "Lambda modifier for temporal layer 0")
741  ("LambdaModifier1,-LM1", m_adLambdaModifier[ 1 ], ( Double )1.0, "Lambda modifier for temporal layer 1")
742  ("LambdaModifier2,-LM2", m_adLambdaModifier[ 2 ], ( Double )1.0, "Lambda modifier for temporal layer 2")
743  ("LambdaModifier3,-LM3", m_adLambdaModifier[ 3 ], ( Double )1.0, "Lambda modifier for temporal layer 3")
744  ("LambdaModifier4,-LM4", m_adLambdaModifier[ 4 ], ( Double )1.0, "Lambda modifier for temporal layer 4")
745  ("LambdaModifier5,-LM5", m_adLambdaModifier[ 5 ], ( Double )1.0, "Lambda modifier for temporal layer 5")
746  ("LambdaModifier6,-LM6", m_adLambdaModifier[ 6 ], ( Double )1.0, "Lambda modifier for temporal layer 6")
747  ("LambdaModifier7,-LM7", m_adLambdaModifier[ 7 ], ( Double )1.0, "Lambda modifier for temporal layer 7")
748#endif
749
750  /* Quantization parameters */
751#if SVC_EXTENSION
752  ("QP%d,-q%d",     cfg_fQP,  30.0, MAX_LAYERS, "Qp value for layer %d, if value is float, QP is switched once during encoding")
753#else
754  ("QP,q",          m_fQP,             30.0, "Qp value, if value is float, QP is switched once during encoding")
755#endif
756  ("DeltaQpRD,-dqr",m_uiDeltaQpRD,       0u, "max dQp offset for slice")
757  ("MaxDeltaQP,d",  m_iMaxDeltaQP,        0, "max dQp offset for block")
758  ("MaxCuDQPDepth,-dqd",  m_iMaxCuDQPDepth,        0, "max depth for a minimum CuDQP")
759
760  ("CbQpOffset,-cbqpofs",  m_cbQpOffset,        0, "Chroma Cb QP Offset")
761  ("CrQpOffset,-crqpofs",  m_crQpOffset,        0, "Chroma Cr QP Offset")
762
763#if ADAPTIVE_QP_SELECTION
764  ("AdaptiveQpSelection,-aqps",   m_bUseAdaptQpSelect,           false, "AdaptiveQpSelection")
765#endif
766
767  ("AdaptiveQP,-aq",                m_bUseAdaptiveQP,           false, "QP adaptation based on a psycho-visual model")
768  ("MaxQPAdaptationRange,-aqr",     m_iQPAdaptationRange,           6, "QP adaptation range")
769#if !SVC_EXTENSION
770  ("dQPFile,m",                     cfg_dQPFile,           string(""), "dQP file name")
771#endif
772  ("RDOQ",                          m_useRDOQ,                  true )
773  ("RDOQTS",                        m_useRDOQTS,                true )
774  ("RDpenalty",                     m_rdPenalty,                0,  "RD-penalty for 32x32 TU for intra in non-intra slices. 0:disbaled  1:RD-penalty  2:maximum RD-penalty")
775  // Entropy coding parameters
776  ("SBACRD",                         m_bUseSBACRD,                      true, "SBAC based RD estimation")
777 
778  // Deblocking filter parameters
779  ("LoopFilterDisable",              m_bLoopFilterDisable,             false )
780  ("LoopFilterOffsetInPPS",          m_loopFilterOffsetInPPS,          false )
781  ("LoopFilterBetaOffset_div2",      m_loopFilterBetaOffsetDiv2,           0 )
782  ("LoopFilterTcOffset_div2",        m_loopFilterTcOffsetDiv2,             0 )
783  ("DeblockingFilterControlPresent", m_DeblockingFilterControlPresent, false )
784  ("DeblockingFilterMetric",         m_DeblockingFilterMetric,         false )
785
786  // Coding tools
787  ("AMP",                      m_enableAMP,                 true,  "Enable asymmetric motion partitions")
788  ("TransformSkip",            m_useTransformSkip,          false, "Intra transform skipping")
789  ("TransformSkipFast",        m_useTransformSkipFast,      false, "Fast intra transform skipping")
790  ("SAO",                      m_bUseSAO,                   true,  "Enable Sample Adaptive Offset")
791  ("MaxNumOffsetsPerPic",      m_maxNumOffsetsPerPic,       2048,  "Max number of SAO offset per picture (Default: 2048)")   
792  ("SAOLcuBoundary",           m_saoLcuBoundary,            false, "0: right/bottom LCU boundary areas skipped from SAO parameter estimation, 1: non-deblocked pixels are used for those areas")
793  ("SAOLcuBasedOptimization",  m_saoLcuBasedOptimization,   true,  "0: SAO picture-based optimization, 1: SAO LCU-based optimization ")
794  ("SliceMode",                m_sliceMode,                0,     "0: Disable all Recon slice limits, 1: Enforce max # of LCUs, 2: Enforce max # of bytes, 3:specify tiles per dependent slice")
795  ("SliceArgument",            m_sliceArgument,            0,     "Depending on SliceMode being:"
796                                                                   "\t1: max number of CTUs per slice"
797                                                                   "\t2: max number of bytes per slice"
798                                                                   "\t3: max number of tiles per slice")
799  ("SliceSegmentMode",         m_sliceSegmentMode,       0,     "0: Disable all slice segment limits, 1: Enforce max # of LCUs, 2: Enforce max # of bytes, 3:specify tiles per dependent slice")
800  ("SliceSegmentArgument",     m_sliceSegmentArgument,   0,     "Depending on SliceSegmentMode being:"
801                                                                   "\t1: max number of CTUs per slice segment"
802                                                                   "\t2: max number of bytes per slice segment"
803                                                                   "\t3: max number of tiles per slice segment")
804  ("LFCrossSliceBoundaryFlag", m_bLFCrossSliceBoundaryFlag, true)
805
806  ("ConstrainedIntraPred",     m_bUseConstrainedIntraPred,  false, "Constrained Intra Prediction")
807
808  ("PCMEnabledFlag",           m_usePCM,                    false)
809  ("PCMLog2MaxSize",           m_pcmLog2MaxSize,            5u)
810  ("PCMLog2MinSize",           m_uiPCMLog2MinSize,          3u)
811  ("PCMInputBitDepthFlag",     m_bPCMInputBitDepthFlag,     true)
812  ("PCMFilterDisableFlag",     m_bPCMFilterDisableFlag,    false)
813
814  ("LosslessCuEnabled",        m_useLossless, false)
815
816  ("WeightedPredP,-wpP",          m_useWeightedPred,               false,      "Use weighted prediction in P slices")
817  ("WeightedPredB,-wpB",          m_useWeightedBiPred,             false,      "Use weighted (bidirectional) prediction in B slices")
818  ("Log2ParallelMergeLevel",      m_log2ParallelMergeLevel,     2u,          "Parallel merge estimation region")
819  ("UniformSpacingIdc",           m_iUniformSpacingIdr,            0,          "Indicates if the column and row boundaries are distributed uniformly")
820  ("NumTileColumnsMinus1",        m_iNumColumnsMinus1,             0,          "Number of columns in a picture minus 1")
821  ("ColumnWidthArray",            cfg_ColumnWidth,                 string(""), "Array containing ColumnWidth values in units of LCU")
822  ("NumTileRowsMinus1",           m_iNumRowsMinus1,                0,          "Number of rows in a picture minus 1")
823  ("RowHeightArray",              cfg_RowHeight,                   string(""), "Array containing RowHeight values in units of LCU")
824  ("LFCrossTileBoundaryFlag",      m_bLFCrossTileBoundaryFlag,             true,          "1: cross-tile-boundary loop filtering. 0:non-cross-tile-boundary loop filtering")
825  ("WaveFrontSynchro",            m_iWaveFrontSynchro,             0,          "0: no synchro; 1 synchro with TR; 2 TRR etc")
826  ("ScalingList",                 m_useScalingListId,              0,          "0: no scaling list, 1: default scaling lists, 2: scaling lists specified in ScalingListFile")
827  ("ScalingListFile",             cfg_ScalingListFile,             string(""), "Scaling list file name")
828  ("SignHideFlag,-SBH",                m_signHideFlag, 1)
829  ("MaxNumMergeCand",             m_maxNumMergeCand,             5u,         "Maximum number of merge candidates")
830
831  /* Misc. */
832  ("SEIDecodedPictureHash",       m_decodedPictureHashSEIEnabled, 0, "Control generation of decode picture hash SEI messages\n"
833                                                                    "\t3: checksum\n"
834                                                                    "\t2: CRC\n"
835                                                                    "\t1: use MD5\n"
836                                                                    "\t0: disable")
837  ("SEIpictureDigest",            m_decodedPictureHashSEIEnabled, 0, "deprecated alias for SEIDecodedPictureHash")
838  ("TMVPMode", m_TMVPModeId, 1, "TMVP mode 0: TMVP disable for all slices. 1: TMVP enable for all slices (default) 2: TMVP enable for certain slices only")
839  ("FEN", m_bUseFastEnc, false, "fast encoder setting")
840  ("ECU", m_bUseEarlyCU, false, "Early CU setting") 
841  ("FDM", m_useFastDecisionForMerge, true, "Fast decision for Merge RD Cost") 
842  ("CFM", m_bUseCbfFastMode, false, "Cbf fast mode setting")
843  ("ESD", m_useEarlySkipDetection, false, "Early SKIP detection setting")
844#if FAST_INTRA_SHVC
845  ("FIS", m_useFastIntraScalable, false, "Fast Intra Decision for Scalable HEVC")
846#endif
847#if RATE_CONTROL_LAMBDA_DOMAIN
848#if RC_SHVC_HARMONIZATION
849  ("RateControl%d", cfg_RCEnableRateControl, false, MAX_LAYERS, "Rate control: enable rate control for layer %d")
850  ("TargetBitrate%d", cfg_RCTargetBitRate, 0, MAX_LAYERS, "Rate control: target bitrate for layer %d")
851  ("KeepHierarchicalBit%d", cfg_RCKeepHierarchicalBit, false, MAX_LAYERS, "Rate control: keep hierarchical bit allocation for layer %d")
852  ("LCULevelRateControl%d", cfg_RCLCULevelRC, true, MAX_LAYERS, "Rate control: LCU level RC")
853  ("RCLCUSeparateModel%d", cfg_RCUseLCUSeparateModel, true, MAX_LAYERS, "Rate control: Use LCU level separate R-lambda model")
854  ("InitialQP%d", cfg_RCInitialQP, 0, MAX_LAYERS, "Rate control: initial QP")
855  ("RCForceIntraQP%d", cfg_RCForceIntraQP, false, MAX_LAYERS, "Rate control: force intra QP to be equal to initial QP")
856#else
857  ( "RateControl",         m_RCEnableRateControl,   false, "Rate control: enable rate control" )
858  ( "TargetBitrate",       m_RCTargetBitrate,           0, "Rate control: target bitrate" )
859#if M0036_RC_IMPROVEMENT
860  ( "KeepHierarchicalBit", m_RCKeepHierarchicalBit,     0, "Rate control: 0: equal bit allocation; 1: fixed ratio bit allocation; 2: adaptive ratio bit allocation" )
861#else
862  ( "KeepHierarchicalBit", m_RCKeepHierarchicalBit, false, "Rate control: keep hierarchical bit allocation in rate control algorithm" )
863#endif
864  ( "LCULevelRateControl", m_RCLCULevelRC,           true, "Rate control: true: LCU level RC; false: picture level RC" )
865  ( "RCLCUSeparateModel",  m_RCUseLCUSeparateModel,  true, "Rate control: use LCU level separate R-lambda model" )
866  ( "InitialQP",           m_RCInitialQP,               0, "Rate control: initial QP" )
867  ( "RCForceIntraQP",      m_RCForceIntraQP,        false, "Rate control: force intra QP to be equal to initial QP" )
868#endif
869#else
870  ("RateCtrl,-rc", m_enableRateCtrl, false, "Rate control on/off")
871  ("TargetBitrate,-tbr", m_targetBitrate, 0, "Input target bitrate")
872  ("NumLCUInUnit,-nu", m_numLCUInUnit, 0, "Number of LCUs in an Unit")
873#endif
874
875  ("TransquantBypassEnableFlag", m_TransquantBypassEnableFlag, false, "transquant_bypass_enable_flag indicator in PPS")
876  ("CUTransquantBypassFlagValue", m_CUTransquantBypassFlagValue, false, "Fixed cu_transquant_bypass_flag value, when transquant_bypass_enable_flag is enabled")
877  ("RecalculateQPAccordingToLambda", m_recalculateQPAccordingToLambda, false, "Recalculate QP values according to lambda values. Do not suggest to be enabled in all intra case")
878  ("StrongIntraSmoothing,-sis",      m_useStrongIntraSmoothing,           true, "Enable strong intra smoothing for 32x32 blocks")
879  ("SEIActiveParameterSets",         m_activeParameterSetsSEIEnabled,          0, "Enable generation of active parameter sets SEI messages")
880  ("VuiParametersPresent,-vui",      m_vuiParametersPresentFlag,           false, "Enable generation of vui_parameters()")
881  ("AspectRatioInfoPresent",         m_aspectRatioInfoPresentFlag,         false, "Signals whether aspect_ratio_idc is present")
882  ("AspectRatioIdc",                 m_aspectRatioIdc,                         0, "aspect_ratio_idc")
883  ("SarWidth",                       m_sarWidth,                               0, "horizontal size of the sample aspect ratio")
884  ("SarHeight",                      m_sarHeight,                              0, "vertical size of the sample aspect ratio")
885  ("OverscanInfoPresent",            m_overscanInfoPresentFlag,            false, "Indicates whether conformant decoded pictures are suitable for display using overscan\n")
886  ("OverscanAppropriate",            m_overscanAppropriateFlag,            false, "Indicates whether conformant decoded pictures are suitable for display using overscan\n")
887  ("VideoSignalTypePresent",         m_videoSignalTypePresentFlag,         false, "Signals whether video_format, video_full_range_flag, and colour_description_present_flag are present")
888  ("VideoFormat",                    m_videoFormat,                            5, "Indicates representation of pictures")
889  ("VideoFullRange",                 m_videoFullRangeFlag,                 false, "Indicates the black level and range of luma and chroma signals")
890  ("ColourDescriptionPresent",       m_colourDescriptionPresentFlag,       false, "Signals whether colour_primaries, transfer_characteristics and matrix_coefficients are present")
891  ("ColourPrimaries",                m_colourPrimaries,                        2, "Indicates chromaticity coordinates of the source primaries")
892  ("TransferCharateristics",         m_transferCharacteristics,                2, "Indicates the opto-electronic transfer characteristics of the source")
893  ("MatrixCoefficients",             m_matrixCoefficients,                     2, "Describes the matrix coefficients used in deriving luma and chroma from RGB primaries")
894  ("ChromaLocInfoPresent",           m_chromaLocInfoPresentFlag,           false, "Signals whether chroma_sample_loc_type_top_field and chroma_sample_loc_type_bottom_field are present")
895  ("ChromaSampleLocTypeTopField",    m_chromaSampleLocTypeTopField,            0, "Specifies the location of chroma samples for top field")
896  ("ChromaSampleLocTypeBottomField", m_chromaSampleLocTypeBottomField,         0, "Specifies the location of chroma samples for bottom field")
897  ("NeutralChromaIndication",        m_neutralChromaIndicationFlag,        false, "Indicates that the value of all decoded chroma samples is equal to 1<<(BitDepthCr-1)")
898  ("DefaultDisplayWindowFlag",       m_defaultDisplayWindowFlag,           false, "Indicates the presence of the Default Window parameters")
899  ("DefDispWinLeftOffset",           m_defDispWinLeftOffset,                   0, "Specifies the left offset of the default display window from the conformance window")
900  ("DefDispWinRightOffset",          m_defDispWinRightOffset,                  0, "Specifies the right offset of the default display window from the conformance window")
901  ("DefDispWinTopOffset",            m_defDispWinTopOffset,                    0, "Specifies the top offset of the default display window from the conformance window")
902  ("DefDispWinBottomOffset",         m_defDispWinBottomOffset,                 0, "Specifies the bottom offset of the default display window from the conformance window")
903  ("FrameFieldInfoPresentFlag",      m_frameFieldInfoPresentFlag,               false, "Indicates that pic_struct and field coding related values are present in picture timing SEI messages")
904  ("PocProportionalToTimingFlag",   m_pocProportionalToTimingFlag,         false, "Indicates that the POC value is proportional to the output time w.r.t. first picture in CVS")
905  ("NumTicksPocDiffOneMinus1",      m_numTicksPocDiffOneMinus1,                0, "Number of ticks minus 1 that for a POC difference of one")
906  ("BitstreamRestriction",           m_bitstreamRestrictionFlag,           false, "Signals whether bitstream restriction parameters are present")
907  ("TilesFixedStructure",            m_tilesFixedStructureFlag,            false, "Indicates that each active picture parameter set has the same values of the syntax elements related to tiles")
908  ("MotionVectorsOverPicBoundaries", m_motionVectorsOverPicBoundariesFlag, false, "Indicates that no samples outside the picture boundaries are used for inter prediction")
909  ("MaxBytesPerPicDenom",            m_maxBytesPerPicDenom,                    2, "Indicates a number of bytes not exceeded by the sum of the sizes of the VCL NAL units associated with any coded picture")
910  ("MaxBitsPerMinCuDenom",           m_maxBitsPerMinCuDenom,                   1, "Indicates an upper bound for the number of bits of coding_unit() data")
911  ("Log2MaxMvLengthHorizontal",      m_log2MaxMvLengthHorizontal,             15, "Indicate the maximum absolute value of a decoded horizontal MV component in quarter-pel luma units")
912  ("Log2MaxMvLengthVertical",        m_log2MaxMvLengthVertical,               15, "Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units")
913  ("SEIRecoveryPoint",               m_recoveryPointSEIEnabled,                0, "Control generation of recovery point SEI messages")
914  ("SEIBufferingPeriod",             m_bufferingPeriodSEIEnabled,              0, "Control generation of buffering period SEI messages")
915  ("SEIPictureTiming",               m_pictureTimingSEIEnabled,                0, "Control generation of picture timing SEI messages")
916  ("SEIToneMappingInfo",                       m_toneMappingInfoSEIEnabled,    false, "Control generation of Tone Mapping SEI messages")
917  ("SEIToneMapId",                             m_toneMapId,                        0, "Specifies Id of Tone Mapping SEI message for a given session")
918  ("SEIToneMapCancelFlag",                     m_toneMapCancelFlag,            false, "Indicates that Tone Mapping SEI message cancels the persistance or follows")
919  ("SEIToneMapPersistenceFlag",                m_toneMapPersistenceFlag,        true, "Specifies the persistence of the Tone Mapping SEI message")
920  ("SEIToneMapCodedDataBitDepth",              m_toneMapCodedDataBitDepth,         8, "Specifies Coded Data BitDepth of Tone Mapping SEI messages")
921  ("SEIToneMapTargetBitDepth",                 m_toneMapTargetBitDepth,            8, "Specifies Output BitDepth of Tome mapping function")
922  ("SEIToneMapModelId",                        m_toneMapModelId,                   0, "Specifies Model utilized for mapping coded data into target_bit_depth range\n"
923                                                                                      "\t0:  linear mapping with clipping\n"
924                                                                                      "\t1:  sigmoidal mapping\n"
925                                                                                      "\t2:  user-defined table mapping\n"
926                                                                                      "\t3:  piece-wise linear mapping\n"
927                                                                                      "\t4:  luminance dynamic range information ")
928  ("SEIToneMapMinValue",                              m_toneMapMinValue,                          0, "Specifies the minimum value in mode 0")
929  ("SEIToneMapMaxValue",                              m_toneMapMaxValue,                       1023, "Specifies the maxmum value in mode 0")
930  ("SEIToneMapSigmoidMidpoint",                       m_sigmoidMidpoint,                        512, "Specifies the centre point in mode 1")
931  ("SEIToneMapSigmoidWidth",                          m_sigmoidWidth,                           960, "Specifies the distance between 5% and 95% values of the target_bit_depth in mode 1")
932  ("SEIToneMapStartOfCodedInterval",                  cfg_startOfCodedInterval,          string(""), "Array of user-defined mapping table")
933  ("SEIToneMapNumPivots",                             m_numPivots,                                0, "Specifies the number of pivot points in mode 3")
934  ("SEIToneMapCodedPivotValue",                       cfg_codedPivotValue,               string(""), "Array of pivot point")
935  ("SEIToneMapTargetPivotValue",                      cfg_targetPivotValue,              string(""), "Array of pivot point")
936  ("SEIToneMapCameraIsoSpeedIdc",                     m_cameraIsoSpeedIdc,                        0, "Indicates the camera ISO speed for daylight illumination")
937  ("SEIToneMapCameraIsoSpeedValue",                   m_cameraIsoSpeedValue,                    400, "Specifies the camera ISO speed for daylight illumination of Extended_ISO")
938  ("SEIToneMapExposureCompensationValueSignFlag",     m_exposureCompensationValueSignFlag,        0, "Specifies the sign of ExposureCompensationValue")
939  ("SEIToneMapExposureCompensationValueNumerator",    m_exposureCompensationValueNumerator,       0, "Specifies the numerator of ExposureCompensationValue")
940  ("SEIToneMapExposureCompensationValueDenomIdc",     m_exposureCompensationValueDenomIdc,        2, "Specifies the denominator of ExposureCompensationValue")
941  ("SEIToneMapRefScreenLuminanceWhite",               m_refScreenLuminanceWhite,                350, "Specifies reference screen brightness setting in units of candela per square metre")
942  ("SEIToneMapExtendedRangeWhiteLevel",               m_extendedRangeWhiteLevel,                800, "Indicates the luminance dynamic range")
943  ("SEIToneMapNominalBlackLevelLumaCodeValue",        m_nominalBlackLevelLumaCodeValue,          16, "Specifies luma sample value of the nominal black level assigned decoded pictures")
944  ("SEIToneMapNominalWhiteLevelLumaCodeValue",        m_nominalWhiteLevelLumaCodeValue,         235, "Specifies luma sample value of the nominal white level assigned decoded pictures")
945  ("SEIToneMapExtendedWhiteLevelLumaCodeValue",       m_extendedWhiteLevelLumaCodeValue,        300, "Specifies luma sample value of the extended dynamic range assigned decoded pictures")
946  ("SEIFramePacking",                m_framePackingSEIEnabled,                 0, "Control generation of frame packing SEI messages")
947  ("SEIFramePackingType",            m_framePackingSEIType,                    0, "Define frame packing arrangement\n"
948                                                                                  "\t0: checkerboard - pixels alternatively represent either frames\n"
949                                                                                  "\t1: column alternation - frames are interlaced by column\n"
950                                                                                  "\t2: row alternation - frames are interlaced by row\n"
951                                                                                  "\t3: side by side - frames are displayed horizontally\n"
952                                                                                  "\t4: top bottom - frames are displayed vertically\n"
953                                                                                  "\t5: frame alternation - one frame is alternated with the other")
954  ("SEIFramePackingId",              m_framePackingSEIId,                      0, "Id of frame packing SEI message for a given session")
955  ("SEIFramePackingQuincunx",        m_framePackingSEIQuincunx,                0, "Indicate the presence of a Quincunx type video frame")
956  ("SEIFramePackingInterpretation",  m_framePackingSEIInterpretation,          0, "Indicate the interpretation of the frame pair\n"
957                                                                                  "\t0: unspecified\n"
958                                                                                  "\t1: stereo pair, frame0 represents left view\n"
959                                                                                  "\t2: stereo pair, frame0 represents right view")
960  ("SEIDisplayOrientation",          m_displayOrientationSEIAngle,             0, "Control generation of display orientation SEI messages\n"
961                                                              "\tN: 0 < N < (2^16 - 1) enable display orientation SEI message with anticlockwise_rotation = N and display_orientation_repetition_period = 1\n"
962                                                              "\t0: disable")
963  ("SEITemporalLevel0Index",         m_temporalLevel0IndexSEIEnabled,          0, "Control generation of temporal level 0 index SEI messages")
964  ("SEIGradualDecodingRefreshInfo",  m_gradualDecodingRefreshInfoEnabled,      0, "Control generation of gradual decoding refresh information SEI message")
965  ("SEIDecodingUnitInfo",             m_decodingUnitInfoSEIEnabled,                       0, "Control generation of decoding unit information SEI message.")
966#if M0043_LAYERS_PRESENT_SEI
967  ("SEILayersPresent",               m_layersPresentSEIEnabled,                0, "Control generation of layers present SEI message")
968#endif
969  ("SEISOPDescription",              m_SOPDescriptionSEIEnabled,              0, "Control generation of SOP description SEI messages")
970  ("SEIScalableNesting",             m_scalableNestingSEIEnabled,              0, "Control generation of scalable nesting SEI messages")
971#if M0040_ADAPTIVE_RESOLUTION_CHANGE
972  ("AdaptiveResolutionChange",     m_adaptiveResolutionChange, 0, "Adaptive resolution change frame number. Should coincide with EL RAP picture. (0: disable)")
973#endif
974#if HIGHER_LAYER_IRAP_SKIP_FLAG
975  ("SkipPictureAtArcSwitch",     m_skipPictureAtArcSwitch, false, "Code the higher layer picture in ARC up-switching as a skip picture. (0: disable)")
976#endif
977#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
978  ("SEIInterLayerConstrainedTileSets", m_interLayerConstrainedTileSetsSEIEnabled, false, "Control generation of inter layer constrained tile sets SEI message")
979  ("IlNumSetsInMessage",               m_ilNumSetsInMessage,                         0u, "Number of inter layer constrained tile sets")
980  ("TileSetsArray",                    cfg_tileSets,                         string(""), "Array containing tile sets params (TopLeftTileIndex, BottonRightTileIndex and ilcIdc for each set) ")
981#endif
982#if O0153_ALT_OUTPUT_LAYER_FLAG
983  ("AltOutputLayerFlag",               m_altOutputLayerFlag,                      false, "Specifies the value of alt_output_layer_flag in VPS extension")
984#endif
985#if O0149_CROSS_LAYER_BLA_FLAG
986  ("CrossLayerBLAFlag",                m_crossLayerBLAFlag,                       false, "Specifies the value of cross_layer_bla_flag in VPS")
987#endif
988  ;
989 
990  for(Int i=1; i<MAX_GOP+1; i++) {
991    std::ostringstream cOSS;
992    cOSS<<"Frame"<<i;
993    opts.addOptions()(cOSS.str(), m_GOPList[i-1], GOPEntry());
994  }
995  po::setDefaults(opts);
996  const list<const Char*>& argv_unhandled = po::scanArgv(opts, argc, (const Char**) argv);
997
998  if(m_isField)
999  {
1000#if SVC_EXTENSION
1001    for(Int layer = 0; layer < MAX_LAYERS; layer++)
1002    {
1003      //Frame height
1004      m_acLayerCfg[layer].m_iSourceHeightOrg = m_acLayerCfg[layer].m_iSourceHeight;
1005      //Field height
1006      m_acLayerCfg[layer].m_iSourceHeight = m_acLayerCfg[layer].m_iSourceHeight >> 1;
1007    }
1008#else
1009    //Frame height
1010    m_iSourceHeightOrg = m_iSourceHeight;
1011    //Field height
1012    m_iSourceHeight = m_iSourceHeight >> 1;
1013#endif
1014    //number of fields to encode
1015    m_framesToBeEncoded *= 2;
1016  }
1017 
1018  for (list<const Char*>::const_iterator it = argv_unhandled.begin(); it != argv_unhandled.end(); it++)
1019  {
1020    fprintf(stderr, "Unhandled argument ignored: `%s'\n", *it);
1021  }
1022 
1023  if (argc == 1 || do_help)
1024  {
1025    /* argc == 1: no options have been specified */
1026    po::doHelp(cout, opts);
1027    return false;
1028  }
1029 
1030  /*
1031   * Set any derived parameters
1032   */
1033  /* convert std::string to c string for compatability */
1034#if SVC_EXTENSION
1035#if AVC_BASE
1036  if( m_avcBaseLayerFlag )
1037  {
1038    *cfg_InputFile[0] = cfg_BLInputFile;
1039  }
1040#endif
1041  m_pBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str());
1042#if AVC_SYNTAX
1043  m_BLSyntaxFile = cfg_BLSyntaxFile.empty() ? NULL : strdup(cfg_BLSyntaxFile.c_str());
1044#endif
1045#else //SVC_EXTENSION
1046  m_pchInputFile = cfg_InputFile.empty() ? NULL : strdup(cfg_InputFile.c_str());
1047  m_pchBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str());
1048  m_pchReconFile = cfg_ReconFile.empty() ? NULL : strdup(cfg_ReconFile.c_str());
1049  m_pchdQPFile = cfg_dQPFile.empty() ? NULL : strdup(cfg_dQPFile.c_str());
1050#endif //SVC_EXTENSION
1051
1052  Char* pColumnWidth = cfg_ColumnWidth.empty() ? NULL: strdup(cfg_ColumnWidth.c_str());
1053  Char* pRowHeight = cfg_RowHeight.empty() ? NULL : strdup(cfg_RowHeight.c_str());
1054  if( m_iUniformSpacingIdr == 0 && m_iNumColumnsMinus1 > 0 )
1055  {
1056    char *columnWidth;
1057    int  i=0;
1058    m_pColumnWidth = new UInt[m_iNumColumnsMinus1];
1059    columnWidth = strtok(pColumnWidth, " ,-");
1060    while(columnWidth!=NULL)
1061    {
1062      if( i>=m_iNumColumnsMinus1 )
1063      {
1064        printf( "The number of columns whose width are defined is larger than the allowed number of columns.\n" );
1065        exit( EXIT_FAILURE );
1066      }
1067      *( m_pColumnWidth + i ) = atoi( columnWidth );
1068      columnWidth = strtok(NULL, " ,-");
1069      i++;
1070    }
1071    if( i<m_iNumColumnsMinus1 )
1072    {
1073      printf( "The width of some columns is not defined.\n" );
1074      exit( EXIT_FAILURE );
1075    }
1076  }
1077  else
1078  {
1079    m_pColumnWidth = NULL;
1080  }
1081
1082  if( m_iUniformSpacingIdr == 0 && m_iNumRowsMinus1 > 0 )
1083  {
1084    char *rowHeight;
1085    int  i=0;
1086    m_pRowHeight = new UInt[m_iNumRowsMinus1];
1087    rowHeight = strtok(pRowHeight, " ,-");
1088    while(rowHeight!=NULL)
1089    {
1090      if( i>=m_iNumRowsMinus1 )
1091      {
1092        printf( "The number of rows whose height are defined is larger than the allowed number of rows.\n" );
1093        exit( EXIT_FAILURE );
1094      }
1095      *( m_pRowHeight + i ) = atoi( rowHeight );
1096      rowHeight = strtok(NULL, " ,-");
1097      i++;
1098    }
1099    if( i<m_iNumRowsMinus1 )
1100    {
1101      printf( "The height of some rows is not defined.\n" );
1102      exit( EXIT_FAILURE );
1103   }
1104  }
1105  else
1106  {
1107    m_pRowHeight = NULL;
1108  }
1109#if SVC_EXTENSION
1110  for(Int layer = 0; layer < MAX_LAYERS; layer++)
1111  {
1112    // If number of scaled ref. layer offsets is non-zero, at least one of the offsets should be specified
1113    if(m_acLayerCfg[layer].m_numScaledRefLayerOffsets)
1114    {
1115#if O0098_SCALED_REF_LAYER_ID
1116      assert( strcmp(cfg_scaledRefLayerId[layer].c_str(),  ""));
1117#endif
1118      assert( strcmp(cfg_scaledRefLayerLeftOffset[layer].c_str(),  "") ||
1119              strcmp(cfg_scaledRefLayerRightOffset[layer].c_str(), "") ||
1120              strcmp(cfg_scaledRefLayerTopOffset[layer].c_str(),   "") ||
1121              strcmp(cfg_scaledRefLayerBottomOffset[layer].c_str(),"")
1122            ); 
1123    }
1124
1125    Int *tempArray = NULL;   // Contain the value
1126
1127#if O0098_SCALED_REF_LAYER_ID
1128    // ID //
1129    if(strcmp(cfg_scaledRefLayerId[layer].c_str(),  ""))
1130    {
1131      cfgStringToArray( &tempArray, cfg_scaledRefLayerId[layer], m_acLayerCfg[layer].m_numScaledRefLayerOffsets, "ScaledRefLayerId");
1132      if(tempArray)
1133      {
1134        for(Int i = 0; i < m_acLayerCfg[layer].m_numScaledRefLayerOffsets; i++)
1135        {
1136          m_acLayerCfg[layer].m_scaledRefLayerId[i] = tempArray[i];
1137        }
1138        delete [] tempArray; tempArray = NULL;
1139      }
1140    }
1141#endif
1142
1143    // Left offset //
1144    if(strcmp(cfg_scaledRefLayerLeftOffset[layer].c_str(),  ""))
1145    {
1146      cfgStringToArray( &tempArray, cfg_scaledRefLayerLeftOffset[layer], m_acLayerCfg[layer].m_numScaledRefLayerOffsets, "LeftOffset");
1147      if(tempArray)
1148      {
1149        for(Int i = 0; i < m_acLayerCfg[layer].m_numScaledRefLayerOffsets; i++)
1150        {
1151          m_acLayerCfg[layer].m_scaledRefLayerLeftOffset[i] = tempArray[i];
1152        }
1153        delete [] tempArray; tempArray = NULL;
1154      }
1155    }
1156
1157    // Top offset //
1158    if(strcmp(cfg_scaledRefLayerTopOffset[layer].c_str(),  ""))
1159    {
1160      cfgStringToArray( &tempArray, cfg_scaledRefLayerTopOffset[layer], m_acLayerCfg[layer].m_numScaledRefLayerOffsets, "TopOffset");
1161      if(tempArray)
1162      {
1163        for(Int i = 0; i < m_acLayerCfg[layer].m_numScaledRefLayerOffsets; i++)
1164        {
1165          m_acLayerCfg[layer].m_scaledRefLayerTopOffset[i] = tempArray[i];
1166        }
1167        delete [] tempArray; tempArray = NULL;
1168      }
1169    }
1170
1171    // Right offset //
1172    if(strcmp(cfg_scaledRefLayerRightOffset[layer].c_str(),  ""))
1173    {
1174      cfgStringToArray( &tempArray, cfg_scaledRefLayerRightOffset[layer], m_acLayerCfg[layer].m_numScaledRefLayerOffsets, "RightOffset");
1175      if(tempArray)
1176      {
1177        for(Int i = 0; i < m_acLayerCfg[layer].m_numScaledRefLayerOffsets; i++)
1178        {
1179          m_acLayerCfg[layer].m_scaledRefLayerRightOffset[i] = tempArray[i];
1180        }
1181        delete [] tempArray; tempArray = NULL;
1182      }
1183    }
1184
1185    // Bottom offset //
1186    if(strcmp(cfg_scaledRefLayerBottomOffset[layer].c_str(),  ""))
1187    {
1188      cfgStringToArray( &tempArray, cfg_scaledRefLayerBottomOffset[layer], m_acLayerCfg[layer].m_numScaledRefLayerOffsets, "BottomOffset");
1189      if(tempArray)
1190      {
1191        for(Int i = 0; i < m_acLayerCfg[layer].m_numScaledRefLayerOffsets; i++)
1192        {
1193          m_acLayerCfg[layer].m_scaledRefLayerBottomOffset[i] = tempArray[i];
1194        }
1195        delete [] tempArray; tempArray = NULL;
1196      }
1197    }
1198  }
1199#if VPS_EXTN_DIRECT_REF_LAYERS
1200#if M0457_PREDICTION_INDICATIONS
1201  for(Int layer = 0; layer < MAX_LAYERS; layer++)
1202  {
1203    Char* pSamplePredRefLayerIds = cfg_samplePredRefLayerIds[layer].empty() ? NULL: strdup(cfg_samplePredRefLayerIds[layer].c_str());
1204    if( m_acLayerCfg[layer].m_numSamplePredRefLayers > 0 )
1205    {
1206      char *samplePredRefLayerId;
1207      int  i=0;
1208      m_acLayerCfg[layer].m_samplePredRefLayerIds = new Int[m_acLayerCfg[layer].m_numSamplePredRefLayers];
1209      samplePredRefLayerId = strtok(pSamplePredRefLayerIds, " ,-");
1210      while(samplePredRefLayerId != NULL)
1211      {
1212        if( i >= m_acLayerCfg[layer].m_numSamplePredRefLayers )
1213        {
1214          printf( "NumSamplePredRefLayers: The number of columns whose width are defined is larger than the allowed number of columns.\n" );
1215          exit( EXIT_FAILURE );
1216        }
1217        *( m_acLayerCfg[layer].m_samplePredRefLayerIds + i ) = atoi( samplePredRefLayerId );
1218        samplePredRefLayerId = strtok(NULL, " ,-");
1219        i++;
1220      }
1221      if( i < m_acLayerCfg[layer].m_numSamplePredRefLayers )
1222      {
1223        printf( "NumSamplePredRefLayers: The width of some columns is not defined.\n" );
1224        exit( EXIT_FAILURE );
1225      }
1226    }
1227    else
1228    {
1229      m_acLayerCfg[layer].m_samplePredRefLayerIds = NULL;
1230    }
1231  }
1232  for(Int layer = 0; layer < MAX_LAYERS; layer++)
1233  {
1234    Char* pMotionPredRefLayerIds = cfg_motionPredRefLayerIds[layer].empty() ? NULL: strdup(cfg_motionPredRefLayerIds[layer].c_str());
1235    if( m_acLayerCfg[layer].m_numMotionPredRefLayers > 0 )
1236    {
1237      char *motionPredRefLayerId;
1238      int  i=0;
1239      m_acLayerCfg[layer].m_motionPredRefLayerIds = new Int[m_acLayerCfg[layer].m_numMotionPredRefLayers];
1240      motionPredRefLayerId = strtok(pMotionPredRefLayerIds, " ,-");
1241      while(motionPredRefLayerId != NULL)
1242      {
1243        if( i >= m_acLayerCfg[layer].m_numMotionPredRefLayers )
1244        {
1245          printf( "NumMotionPredRefLayers: The number of columns whose width are defined is larger than the allowed number of columns.\n" );
1246          exit( EXIT_FAILURE );
1247        }
1248        *( m_acLayerCfg[layer].m_motionPredRefLayerIds + i ) = atoi( motionPredRefLayerId );
1249        motionPredRefLayerId = strtok(NULL, " ,-");
1250        i++;
1251      }
1252      if( i < m_acLayerCfg[layer].m_numMotionPredRefLayers )
1253      {
1254        printf( "NumMotionPredRefLayers: The width of some columns is not defined.\n" );
1255        exit( EXIT_FAILURE );
1256      }
1257    }
1258    else
1259    {
1260      m_acLayerCfg[layer].m_motionPredRefLayerIds = NULL;
1261    }
1262  }
1263#else
1264  for(Int layer = 0; layer < MAX_LAYERS; layer++)
1265  {
1266    Char* pRefLayerIds = cfg_refLayerIds[layer].empty() ? NULL: strdup(cfg_refLayerIds[layer].c_str());
1267    if( m_acLayerCfg[layer].m_numDirectRefLayers > 0 )
1268    {
1269      char *refLayerId;
1270      int  i=0;
1271      m_acLayerCfg[layer].m_refLayerIds = new Int[m_acLayerCfg[layer].m_numDirectRefLayers];
1272      refLayerId = strtok(pRefLayerIds, " ,-");
1273      while(refLayerId != NULL)
1274      {
1275        if( i >= m_acLayerCfg[layer].m_numDirectRefLayers )
1276        {
1277          printf( "NumDirectRefLayers: The number of columns whose width are defined is larger than the allowed number of columns.\n" );
1278          exit( EXIT_FAILURE );
1279        }
1280        *( m_acLayerCfg[layer].m_refLayerIds + i ) = atoi( refLayerId );
1281        refLayerId = strtok(NULL, " ,-");
1282        i++;
1283      }
1284      if( i < m_acLayerCfg[layer].m_numDirectRefLayers )
1285      {
1286        printf( "NumDirectRefLayers: The width of some columns is not defined.\n" );
1287        exit( EXIT_FAILURE );
1288      }
1289    }
1290    else
1291    {
1292      m_acLayerCfg[layer].m_refLayerIds = NULL;
1293    }
1294  }
1295#endif
1296#if AUXILIARY_PICTURES
1297  for(UInt layer = 0; layer < MAX_LAYERS; layer++)
1298  {
1299    m_acLayerCfg[layer].m_InputChromaFormat =  numberToChromaFormat(cfg_tmpChromaFormatIDC[layer]);
1300    m_acLayerCfg[layer].m_chromaFormatIDC = ((cfg_tmpChromaFormatIDC[layer] == 0) ? (m_acLayerCfg[layer].m_InputChromaFormat ) : (numberToChromaFormat(cfg_tmpChromaFormatIDC[layer])));
1301  }
1302#endif
1303  for(Int layer = 0; layer < MAX_LAYERS; layer++)
1304  {
1305    Char* pPredLayerIds = cfg_predLayerIds[layer].empty() ? NULL: strdup(cfg_predLayerIds[layer].c_str());
1306    if( m_acLayerCfg[layer].m_numActiveRefLayers > 0 )
1307    {
1308      char *refLayerId;
1309      int  i=0;
1310      m_acLayerCfg[layer].m_predLayerIds = new Int[m_acLayerCfg[layer].m_numActiveRefLayers];
1311      refLayerId = strtok(pPredLayerIds, " ,-");
1312      while(refLayerId != NULL)
1313      {
1314        if( i >= m_acLayerCfg[layer].m_numActiveRefLayers )
1315        {
1316          printf( "NumActiveRefLayers: The number of columns whose width are defined is larger than the allowed number of columns.\n" );
1317          exit( EXIT_FAILURE );
1318        }
1319        *( m_acLayerCfg[layer].m_predLayerIds + i ) = atoi( refLayerId );
1320        refLayerId = strtok(NULL, " ,-");
1321        i++;
1322      }
1323      if( i < m_acLayerCfg[layer].m_numActiveRefLayers )
1324      {
1325        printf( "NumActiveRefLayers: The width of some columns is not defined.\n" );
1326        exit( EXIT_FAILURE );
1327      }
1328    }
1329    else
1330    {
1331      m_acLayerCfg[layer].m_predLayerIds = NULL;
1332    }
1333  }
1334#endif
1335#endif //SVC_EXTENSION
1336  m_scalingListFile = cfg_ScalingListFile.empty() ? NULL : strdup(cfg_ScalingListFile.c_str());
1337
1338  /* rules for input, output and internal bitdepths as per help text */
1339#if O0194_DIFFERENT_BITDEPTH_EL_BL
1340  for(Int layer = 0; layer < MAX_LAYERS; layer++)
1341  {
1342    if (!m_acLayerCfg[layer].m_internalBitDepthY) { m_acLayerCfg[layer].m_internalBitDepthY = m_acLayerCfg[layer].m_inputBitDepthY; }
1343    if (!m_acLayerCfg[layer].m_internalBitDepthC) { m_acLayerCfg[layer].m_internalBitDepthC = m_acLayerCfg[layer].m_internalBitDepthY; }
1344    if (!m_acLayerCfg[layer].m_inputBitDepthC) { m_acLayerCfg[layer].m_inputBitDepthC = m_acLayerCfg[layer].m_inputBitDepthY; }
1345    if (!m_acLayerCfg[layer].m_outputBitDepthY) { m_acLayerCfg[layer].m_outputBitDepthY = m_acLayerCfg[layer].m_internalBitDepthY; }
1346    if (!m_acLayerCfg[layer].m_outputBitDepthC) { m_acLayerCfg[layer].m_outputBitDepthC = m_acLayerCfg[layer].m_internalBitDepthC; }
1347  }
1348#else
1349  if (!m_internalBitDepthY) { m_internalBitDepthY = m_inputBitDepthY; }
1350  if (!m_internalBitDepthC) { m_internalBitDepthC = m_internalBitDepthY; }
1351  if (!m_inputBitDepthC) { m_inputBitDepthC = m_inputBitDepthY; }
1352  if (!m_outputBitDepthY) { m_outputBitDepthY = m_internalBitDepthY; }
1353  if (!m_outputBitDepthC) { m_outputBitDepthC = m_internalBitDepthC; }
1354#endif
1355
1356#if !SVC_EXTENSION
1357  // TODO:ChromaFmt assumes 4:2:0 below
1358  switch (m_conformanceMode)
1359  {
1360  case 0:
1361    {
1362      // no conformance or padding
1363      m_confLeft = m_confRight = m_confTop = m_confBottom = 0;
1364      m_aiPad[1] = m_aiPad[0] = 0;
1365      break;
1366    }
1367  case 1:
1368    {
1369      // automatic padding to minimum CU size
1370      Int minCuSize = m_uiMaxCUHeight >> (m_uiMaxCUDepth - 1);
1371      if (m_iSourceWidth % minCuSize)
1372      {
1373        m_aiPad[0] = m_confRight  = ((m_iSourceWidth / minCuSize) + 1) * minCuSize - m_iSourceWidth;
1374        m_iSourceWidth  += m_confRight;
1375      }
1376      if (m_iSourceHeight % minCuSize)
1377      {
1378        m_aiPad[1] = m_confBottom = ((m_iSourceHeight / minCuSize) + 1) * minCuSize - m_iSourceHeight;
1379        m_iSourceHeight += m_confBottom;
1380        if ( m_isField )
1381        {
1382          m_iSourceHeightOrg += m_confBottom << 1;
1383          m_aiPad[1] = m_confBottom << 1;
1384        }
1385      }
1386      if (m_aiPad[0] % TComSPS::getWinUnitX(CHROMA_420) != 0)
1387      {
1388        fprintf(stderr, "Error: picture width is not an integer multiple of the specified chroma subsampling\n");
1389        exit(EXIT_FAILURE);
1390      }
1391      if (m_aiPad[1] % TComSPS::getWinUnitY(CHROMA_420) != 0)
1392      {
1393        fprintf(stderr, "Error: picture height is not an integer multiple of the specified chroma subsampling\n");
1394        exit(EXIT_FAILURE);
1395      }
1396      break;
1397    }
1398  case 2:
1399    {
1400      //padding
1401      m_iSourceWidth  += m_aiPad[0];
1402      m_iSourceHeight += m_aiPad[1];
1403      m_confRight  = m_aiPad[0];
1404      m_confBottom = m_aiPad[1];
1405      break;
1406    }
1407  case 3:
1408    {
1409      // conformance
1410      if ((m_confLeft == 0) && (m_confRight == 0) && (m_confTop == 0) && (m_confBottom == 0))
1411      {
1412        fprintf(stderr, "Warning: Conformance window enabled, but all conformance window parameters set to zero\n");
1413      }
1414      if ((m_aiPad[1] != 0) || (m_aiPad[0]!=0))
1415      {
1416        fprintf(stderr, "Warning: Conformance window enabled, padding parameters will be ignored\n");
1417      }
1418      m_aiPad[1] = m_aiPad[0] = 0;
1419      break;
1420    }
1421  }
1422 
1423  // allocate slice-based dQP values
1424  m_aidQP = new Int[ m_framesToBeEncoded + m_iGOPSize + 1 ];
1425  ::memset( m_aidQP, 0, sizeof(Int)*( m_framesToBeEncoded + m_iGOPSize + 1 ) );
1426 
1427  // handling of floating-point QP values
1428  // if QP is not integer, sequence is split into two sections having QP and QP+1
1429  m_iQP = (Int)( m_fQP );
1430  if ( m_iQP < m_fQP )
1431  {
1432    Int iSwitchPOC = (Int)( m_framesToBeEncoded - (m_fQP - m_iQP)*m_framesToBeEncoded + 0.5 );
1433   
1434    iSwitchPOC = (Int)( (Double)iSwitchPOC / m_iGOPSize + 0.5 )*m_iGOPSize;
1435    for ( Int i=iSwitchPOC; i<m_framesToBeEncoded + m_iGOPSize + 1; i++ )
1436    {
1437      m_aidQP[i] = 1;
1438    }
1439  }
1440 
1441  // reading external dQP description from file
1442  if ( m_pchdQPFile )
1443  {
1444    FILE* fpt=fopen( m_pchdQPFile, "r" );
1445    if ( fpt )
1446    {
1447      Int iValue;
1448      Int iPOC = 0;
1449      while ( iPOC < m_framesToBeEncoded )
1450      {
1451        if ( fscanf(fpt, "%d", &iValue ) == EOF ) break;
1452        m_aidQP[ iPOC ] = iValue;
1453        iPOC++;
1454      }
1455      fclose(fpt);
1456    }
1457  }
1458  m_iWaveFrontSubstreams = m_iWaveFrontSynchro ? (m_iSourceHeight + m_uiMaxCUHeight - 1) / m_uiMaxCUHeight : 1;
1459#endif
1460  if( m_toneMappingInfoSEIEnabled && !m_toneMapCancelFlag )
1461  {
1462    Char* pcStartOfCodedInterval = cfg_startOfCodedInterval.empty() ? NULL: strdup(cfg_startOfCodedInterval.c_str());
1463    Char* pcCodedPivotValue = cfg_codedPivotValue.empty() ? NULL: strdup(cfg_codedPivotValue.c_str());
1464    Char* pcTargetPivotValue = cfg_targetPivotValue.empty() ? NULL: strdup(cfg_targetPivotValue.c_str());
1465    if( m_toneMapModelId == 2 && pcStartOfCodedInterval )
1466    {
1467      char *startOfCodedInterval;
1468      UInt num = 1u<< m_toneMapTargetBitDepth;
1469      m_startOfCodedInterval = new Int[num];
1470      ::memset( m_startOfCodedInterval, 0, sizeof(Int)*num );
1471      startOfCodedInterval = strtok(pcStartOfCodedInterval, " .");
1472      int i = 0;
1473      while( startOfCodedInterval && ( i < num ) )
1474      {
1475        m_startOfCodedInterval[i] = atoi( startOfCodedInterval );
1476        startOfCodedInterval = strtok(NULL, " .");
1477        i++;
1478      }
1479    } 
1480    else
1481    {
1482      m_startOfCodedInterval = NULL;
1483    }
1484    if( ( m_toneMapModelId == 3 ) && ( m_numPivots > 0 ) )
1485    {
1486      if( pcCodedPivotValue && pcTargetPivotValue )
1487      {
1488        char *codedPivotValue;
1489        char *targetPivotValue;
1490        m_codedPivotValue = new Int[m_numPivots];
1491        m_targetPivotValue = new Int[m_numPivots];
1492        ::memset( m_codedPivotValue, 0, sizeof(Int)*( m_numPivots ) );
1493        ::memset( m_targetPivotValue, 0, sizeof(Int)*( m_numPivots ) );
1494        codedPivotValue = strtok(pcCodedPivotValue, " .");
1495        int i=0;
1496        while(codedPivotValue&&i<m_numPivots)
1497        {
1498          m_codedPivotValue[i] = atoi( codedPivotValue );
1499          codedPivotValue = strtok(NULL, " .");
1500          i++;
1501        }
1502        i=0;
1503        targetPivotValue = strtok(pcTargetPivotValue, " .");
1504        while(targetPivotValue&&i<m_numPivots)
1505        {
1506          m_targetPivotValue[i]= atoi( targetPivotValue );
1507          targetPivotValue = strtok(NULL, " .");
1508          i++;
1509        }
1510      }
1511    }
1512    else
1513    {
1514      m_codedPivotValue = NULL;
1515      m_targetPivotValue = NULL;
1516    }
1517  }
1518#if N0383_IL_CONSTRAINED_TILE_SETS_SEI
1519  if (m_interLayerConstrainedTileSetsSEIEnabled)
1520  {
1521    if (m_iNumColumnsMinus1 == 0 && m_iNumRowsMinus1 == 0)
1522    {
1523      printf( "Tiles are not defined (needed for inter-layer comnstrained tile sets SEI).\n" );
1524      exit( EXIT_FAILURE );
1525    }
1526    Char* pTileSets = cfg_tileSets.empty() ? NULL : strdup(cfg_tileSets.c_str());
1527    int i = 0;
1528    char *topLeftTileIndex = strtok(pTileSets, " ,");
1529    while(topLeftTileIndex != NULL)
1530    {
1531      if( i >= m_ilNumSetsInMessage )
1532      {
1533        printf( "The number of tile sets is larger than defined by IlNumSetsInMessage.\n" );
1534        exit( EXIT_FAILURE );
1535      }
1536      *( m_topLeftTileIndex + i ) = atoi( topLeftTileIndex );
1537      char *bottonRightTileIndex = strtok(NULL, " ,");
1538      if( bottonRightTileIndex == NULL )
1539      {
1540        printf( "BottonRightTileIndex is missing in the tile sets.\n" );
1541        exit( EXIT_FAILURE );
1542      }
1543      *( m_bottomRightTileIndex + i ) = atoi( bottonRightTileIndex );
1544      char *ilcIdc = strtok(NULL, " ,");
1545      if( ilcIdc == NULL )
1546      {
1547        printf( "IlcIdc is missing in the tile sets.\n" );
1548        exit( EXIT_FAILURE );
1549      }
1550      *( m_ilcIdc + i ) = atoi( ilcIdc );
1551      topLeftTileIndex = strtok(NULL, " ,");
1552      i++;
1553    }
1554    if( i < m_ilNumSetsInMessage )
1555    {
1556      printf( "The number of tile sets is smaller than defined by IlNumSetsInMessage.\n" );
1557      exit( EXIT_FAILURE );
1558    }
1559    m_skippedTileSetPresentFlag = false;
1560  }
1561#endif
1562  // check validity of input parameters
1563  xCheckParameter();
1564 
1565  // set global varibles
1566#if LAYER_CTB
1567  for(Int layer = 0; layer < MAX_LAYERS; layer++)
1568  {
1569    xSetGlobal(layer);
1570  }
1571#else
1572  xSetGlobal();
1573#endif
1574 
1575  // print-out parameters
1576  xPrintParameter();
1577 
1578  return true;
1579}
1580// ====================================================================================================================
1581// Private member functions
1582// ====================================================================================================================
1583
1584Bool confirmPara(Bool bflag, const Char* message);
1585
1586Void TAppEncCfg::xCheckParameter()
1587{
1588  if (!m_decodedPictureHashSEIEnabled)
1589  {
1590    fprintf(stderr, "******************************************************************\n");
1591    fprintf(stderr, "** WARNING: --SEIDecodedPictureHash is now disabled by default. **\n");
1592    fprintf(stderr, "**          Automatic verification of decoded pictures by a     **\n");
1593    fprintf(stderr, "**          decoder requires this option to be enabled.         **\n");
1594    fprintf(stderr, "******************************************************************\n");
1595  }
1596  if( m_profile==Profile::NONE )
1597  {
1598    fprintf(stderr, "***************************************************************************\n");
1599    fprintf(stderr, "** WARNING: For conforming bitstreams a valid Profile value must be set! **\n");
1600    fprintf(stderr, "***************************************************************************\n");
1601  }
1602  if( m_level==Level::NONE )
1603  {
1604    fprintf(stderr, "***************************************************************************\n");
1605    fprintf(stderr, "** WARNING: For conforming bitstreams a valid Level value must be set!   **\n");
1606    fprintf(stderr, "***************************************************************************\n");
1607  }
1608
1609  Bool check_failed = false; /* abort if there is a fatal configuration problem */
1610#define xConfirmPara(a,b) check_failed |= confirmPara(a,b)
1611  // check range of parameters
1612#if O0194_DIFFERENT_BITDEPTH_EL_BL
1613  for(UInt layer=0; layer<m_numLayers; layer++)
1614  {
1615    xConfirmPara( m_acLayerCfg[layer].m_inputBitDepthY < 8,                                                     "InputBitDepth must be at least 8" );
1616    xConfirmPara( m_acLayerCfg[layer].m_inputBitDepthC < 8,                                                     "InputBitDepthC must be at least 8" );
1617  }
1618#else
1619  xConfirmPara( m_inputBitDepthY < 8,                                                     "InputBitDepth must be at least 8" );
1620  xConfirmPara( m_inputBitDepthC < 8,                                                     "InputBitDepthC must be at least 8" );
1621#endif
1622#if !SVC_EXTENSION 
1623  xConfirmPara( m_iFrameRate <= 0,                                                          "Frame rate must be more than 1" );
1624#endif
1625  xConfirmPara( m_framesToBeEncoded <= 0,                                                   "Total Number Of Frames encoded must be more than 0" );
1626  xConfirmPara( m_iGOPSize < 1 ,                                                            "GOP Size must be greater or equal to 1" );
1627  xConfirmPara( m_iGOPSize > 1 &&  m_iGOPSize % 2,                                          "GOP Size must be a multiple of 2, if GOP Size is greater than 1" );
1628#if !SVC_EXTENSION
1629  xConfirmPara( (m_iIntraPeriod > 0 && m_iIntraPeriod < m_iGOPSize) || m_iIntraPeriod == 0, "Intra period must be more than GOP size, or -1 , not 0" );
1630#endif
1631  xConfirmPara( m_iDecodingRefreshType < 0 || m_iDecodingRefreshType > 2,                   "Decoding Refresh Type must be equal to 0, 1 or 2" );
1632#if !SVC_EXTENSION
1633  xConfirmPara( m_iQP <  -6 * (m_internalBitDepthY - 8) || m_iQP > 51,                    "QP exceeds supported range (-QpBDOffsety to 51)" );
1634#endif
1635  xConfirmPara( m_loopFilterBetaOffsetDiv2 < -6 || m_loopFilterBetaOffsetDiv2 > 6,          "Loop Filter Beta Offset div. 2 exceeds supported range (-6 to 6)");
1636  xConfirmPara( m_loopFilterTcOffsetDiv2 < -6 || m_loopFilterTcOffsetDiv2 > 6,              "Loop Filter Tc Offset div. 2 exceeds supported range (-6 to 6)");
1637  xConfirmPara( m_iFastSearch < 0 || m_iFastSearch > 2,                                     "Fast Search Mode is not supported value (0:Full search  1:Diamond  2:PMVFAST)" );
1638  xConfirmPara( m_iSearchRange < 0 ,                                                        "Search Range must be more than 0" );
1639  xConfirmPara( m_bipredSearchRange < 0 ,                                                   "Search Range must be more than 0" );
1640  xConfirmPara( m_iMaxDeltaQP > 7,                                                          "Absolute Delta QP exceeds supported range (0 to 7)" );
1641#if LAYER_CTB
1642  for(UInt layer = 0; layer < MAX_LAYERS; layer++)
1643  {
1644    xConfirmPara( m_iMaxCuDQPDepth > m_acLayerCfg[layer].m_uiMaxCUDepth - 1,                "Absolute depth for a minimum CuDQP exceeds maximum coding unit depth" );
1645  }
1646#else
1647  xConfirmPara( m_iMaxCuDQPDepth > m_uiMaxCUDepth - 1,                                          "Absolute depth for a minimum CuDQP exceeds maximum coding unit depth" );
1648#endif
1649
1650  xConfirmPara( m_cbQpOffset < -12,   "Min. Chroma Cb QP Offset is -12" );
1651  xConfirmPara( m_cbQpOffset >  12,   "Max. Chroma Cb QP Offset is  12" );
1652  xConfirmPara( m_crQpOffset < -12,   "Min. Chroma Cr QP Offset is -12" );
1653  xConfirmPara( m_crQpOffset >  12,   "Max. Chroma Cr QP Offset is  12" );
1654
1655  xConfirmPara( m_iQPAdaptationRange <= 0,                                                  "QP Adaptation Range must be more than 0" );
1656#if !SVC_EXTENSION
1657  if (m_iDecodingRefreshType == 2)
1658  {
1659    xConfirmPara( m_iIntraPeriod > 0 && m_iIntraPeriod <= m_iGOPSize ,                      "Intra period must be larger than GOP size for periodic IDR pictures");
1660  }
1661#endif
1662#if !LAYER_CTB
1663  xConfirmPara( (m_uiMaxCUWidth  >> m_uiMaxCUDepth) < 4,                                    "Minimum partition width size should be larger than or equal to 8");
1664  xConfirmPara( (m_uiMaxCUHeight >> m_uiMaxCUDepth) < 4,                                    "Minimum partition height size should be larger than or equal to 8");
1665  xConfirmPara( m_uiMaxCUWidth < 16,                                                        "Maximum partition width size should be larger than or equal to 16");
1666  xConfirmPara( m_uiMaxCUHeight < 16,                                                       "Maximum partition height size should be larger than or equal to 16");
1667#endif
1668#if !SVC_EXTENSION
1669  xConfirmPara( (m_iSourceWidth  % (m_uiMaxCUWidth  >> (m_uiMaxCUDepth-1)))!=0,             "Resulting coded frame width must be a multiple of the minimum CU size");
1670  xConfirmPara( (m_iSourceHeight % (m_uiMaxCUHeight >> (m_uiMaxCUDepth-1)))!=0,             "Resulting coded frame height must be a multiple of the minimum CU size");
1671#endif
1672 
1673#if !LAYER_CTB
1674  xConfirmPara( m_uiQuadtreeTULog2MinSize < 2,                                        "QuadtreeTULog2MinSize must be 2 or greater.");
1675  xConfirmPara( m_uiQuadtreeTULog2MaxSize > 5,                                        "QuadtreeTULog2MaxSize must be 5 or smaller.");
1676  xConfirmPara( (1<<m_uiQuadtreeTULog2MaxSize) > m_uiMaxCUWidth,                                        "QuadtreeTULog2MaxSize must be log2(maxCUSize) or smaller.");
1677 
1678  xConfirmPara( m_uiQuadtreeTULog2MaxSize < m_uiQuadtreeTULog2MinSize,                "QuadtreeTULog2MaxSize must be greater than or equal to m_uiQuadtreeTULog2MinSize.");
1679  xConfirmPara( (1<<m_uiQuadtreeTULog2MinSize)>(m_uiMaxCUWidth >>(m_uiMaxCUDepth-1)), "QuadtreeTULog2MinSize must not be greater than minimum CU size" ); // HS
1680  xConfirmPara( (1<<m_uiQuadtreeTULog2MinSize)>(m_uiMaxCUHeight>>(m_uiMaxCUDepth-1)), "QuadtreeTULog2MinSize must not be greater than minimum CU size" ); // HS
1681  xConfirmPara( ( 1 << m_uiQuadtreeTULog2MinSize ) > ( m_uiMaxCUWidth  >> m_uiMaxCUDepth ), "Minimum CU width must be greater than minimum transform size." );
1682  xConfirmPara( ( 1 << m_uiQuadtreeTULog2MinSize ) > ( m_uiMaxCUHeight >> m_uiMaxCUDepth ), "Minimum CU height must be greater than minimum transform size." );
1683  xConfirmPara( m_uiQuadtreeTUMaxDepthInter < 1,                                                         "QuadtreeTUMaxDepthInter must be greater than or equal to 1" );
1684  xConfirmPara( m_uiMaxCUWidth < ( 1 << (m_uiQuadtreeTULog2MinSize + m_uiQuadtreeTUMaxDepthInter - 1) ), "QuadtreeTUMaxDepthInter must be less than or equal to the difference between log2(maxCUSize) and QuadtreeTULog2MinSize plus 1" );
1685  xConfirmPara( m_uiQuadtreeTUMaxDepthIntra < 1,                                                         "QuadtreeTUMaxDepthIntra must be greater than or equal to 1" );
1686  xConfirmPara( m_uiMaxCUWidth < ( 1 << (m_uiQuadtreeTULog2MinSize + m_uiQuadtreeTUMaxDepthIntra - 1) ), "QuadtreeTUMaxDepthInter must be less than or equal to the difference between log2(maxCUSize) and QuadtreeTULog2MinSize plus 1" );
1687#endif
1688 
1689  xConfirmPara(  m_maxNumMergeCand < 1,  "MaxNumMergeCand must be 1 or greater.");
1690  xConfirmPara(  m_maxNumMergeCand > 5,  "MaxNumMergeCand must be 5 or smaller.");
1691
1692#if !SVC_EXTENSION
1693#if ADAPTIVE_QP_SELECTION
1694  xConfirmPara( m_bUseAdaptQpSelect == true && m_iQP < 0,                                              "AdaptiveQpSelection must be disabled when QP < 0.");
1695  xConfirmPara( m_bUseAdaptQpSelect == true && (m_cbQpOffset !=0 || m_crQpOffset != 0 ),               "AdaptiveQpSelection must be disabled when ChromaQpOffset is not equal to 0.");
1696#endif
1697#endif
1698
1699  if( m_usePCM)
1700  {
1701    xConfirmPara(  m_uiPCMLog2MinSize < 3,                                      "PCMLog2MinSize must be 3 or greater.");
1702    xConfirmPara(  m_uiPCMLog2MinSize > 5,                                      "PCMLog2MinSize must be 5 or smaller.");
1703    xConfirmPara(  m_pcmLog2MaxSize > 5,                                        "PCMLog2MaxSize must be 5 or smaller.");
1704    xConfirmPara(  m_pcmLog2MaxSize < m_uiPCMLog2MinSize,                       "PCMLog2MaxSize must be equal to or greater than m_uiPCMLog2MinSize.");
1705  }
1706
1707  xConfirmPara( m_sliceMode < 0 || m_sliceMode > 3, "SliceMode exceeds supported range (0 to 3)" );
1708  if (m_sliceMode!=0)
1709  {
1710    xConfirmPara( m_sliceArgument < 1 ,         "SliceArgument should be larger than or equal to 1" );
1711  }
1712  xConfirmPara( m_sliceSegmentMode < 0 || m_sliceSegmentMode > 3, "SliceSegmentMode exceeds supported range (0 to 3)" );
1713  if (m_sliceSegmentMode!=0)
1714  {
1715    xConfirmPara( m_sliceSegmentArgument < 1 ,         "SliceSegmentArgument should be larger than or equal to 1" );
1716  }
1717 
1718  Bool tileFlag = (m_iNumColumnsMinus1 > 0 || m_iNumRowsMinus1 > 0 );
1719  xConfirmPara( tileFlag && m_iWaveFrontSynchro,            "Tile and Wavefront can not be applied together");
1720
1721  //TODO:ChromaFmt assumes 4:2:0 below
1722#if !SVC_EXTENSION
1723  xConfirmPara( m_iSourceWidth  % TComSPS::getWinUnitX(CHROMA_420) != 0, "Picture width must be an integer multiple of the specified chroma subsampling");
1724  xConfirmPara( m_iSourceHeight % TComSPS::getWinUnitY(CHROMA_420) != 0, "Picture height must be an integer multiple of the specified chroma subsampling");
1725
1726  xConfirmPara( m_aiPad[0] % TComSPS::getWinUnitX(CHROMA_420) != 0, "Horizontal padding must be an integer multiple of the specified chroma subsampling");
1727  xConfirmPara( m_aiPad[1] % TComSPS::getWinUnitY(CHROMA_420) != 0, "Vertical padding must be an integer multiple of the specified chroma subsampling");
1728
1729  xConfirmPara( m_confLeft   % TComSPS::getWinUnitX(CHROMA_420) != 0, "Left conformance window offset must be an integer multiple of the specified chroma subsampling");
1730  xConfirmPara( m_confRight  % TComSPS::getWinUnitX(CHROMA_420) != 0, "Right conformance window offset must be an integer multiple of the specified chroma subsampling");
1731  xConfirmPara( m_confTop    % TComSPS::getWinUnitY(CHROMA_420) != 0, "Top conformance window offset must be an integer multiple of the specified chroma subsampling");
1732  xConfirmPara( m_confBottom % TComSPS::getWinUnitY(CHROMA_420) != 0, "Bottom conformance window offset must be an integer multiple of the specified chroma subsampling");
1733#endif
1734
1735#if !LAYER_CTB
1736  // max CU width and height should be power of 2
1737  UInt ui = m_uiMaxCUWidth;
1738  while(ui)
1739  {
1740    ui >>= 1;
1741    if( (ui & 1) == 1)
1742      xConfirmPara( ui != 1 , "Width should be 2^n");
1743  }
1744  ui = m_uiMaxCUHeight;
1745  while(ui)
1746  {
1747    ui >>= 1;
1748    if( (ui & 1) == 1)
1749      xConfirmPara( ui != 1 , "Height should be 2^n");
1750  }
1751#endif
1752
1753  /* if this is an intra-only sequence, ie IntraPeriod=1, don't verify the GOP structure
1754   * This permits the ability to omit a GOP structure specification */
1755#if SVC_EXTENSION
1756  for(UInt layer = 0; layer < MAX_LAYERS; layer++)
1757  {
1758    Int m_iIntraPeriod = m_acLayerCfg[layer].m_iIntraPeriod;
1759#endif
1760  if (m_iIntraPeriod == 1 && m_GOPList[0].m_POC == -1) {
1761    m_GOPList[0] = GOPEntry();
1762    m_GOPList[0].m_QPFactor = 1;
1763    m_GOPList[0].m_betaOffsetDiv2 = 0;
1764    m_GOPList[0].m_tcOffsetDiv2 = 0;
1765    m_GOPList[0].m_POC = 1;
1766    m_GOPList[0].m_numRefPicsActive = 4;
1767  }
1768#if SVC_EXTENSION
1769  }
1770#endif
1771 
1772
1773  Bool verifiedGOP=false;
1774  Bool errorGOP=false;
1775  Int checkGOP=1;
1776  Int numRefs = m_isField ? 2 : 1;
1777  Int refList[MAX_NUM_REF_PICS+1];
1778  refList[0]=0;
1779  if(m_isField)
1780  {
1781    refList[1] = 1;
1782  }
1783  Bool isOK[MAX_GOP];
1784  for(Int i=0; i<MAX_GOP; i++) 
1785  {
1786    isOK[i]=false;
1787  }
1788  Int numOK=0;
1789#if !SVC_EXTENSION
1790  xConfirmPara( m_iIntraPeriod >=0&&(m_iIntraPeriod%m_iGOPSize!=0), "Intra period must be a multiple of GOPSize, or -1" );
1791#endif
1792
1793  for(Int i=0; i<m_iGOPSize; i++)
1794  {
1795    if(m_GOPList[i].m_POC==m_iGOPSize)
1796    {
1797      xConfirmPara( m_GOPList[i].m_temporalId!=0 , "The last frame in each GOP must have temporal ID = 0 " );
1798    }
1799  }
1800
1801#if SVC_EXTENSION
1802  xConfirmPara( m_numLayers > MAX_LAYERS , "Number of layers in config file is greater than MAX_LAYERS" );
1803  m_numLayers = m_numLayers > MAX_LAYERS ? MAX_LAYERS : m_numLayers;
1804
1805  // verify layer configuration parameters
1806  for(UInt layer=0; layer<m_numLayers; layer++)
1807  {
1808    if(m_acLayerCfg[layer].xCheckParameter(m_isField))
1809    {
1810      printf("\nError: invalid configuration parameter found in layer %d \n", layer);
1811      check_failed = true;
1812    }
1813  }
1814
1815  // verify layer configuration parameters
1816  for(UInt layer=0; layer<m_numLayers; layer++)
1817  {
1818    Int m_iIntraPeriod = m_acLayerCfg[layer].m_iIntraPeriod;
1819#endif
1820  if ( (m_iIntraPeriod != 1) && !m_loopFilterOffsetInPPS && m_DeblockingFilterControlPresent && (!m_bLoopFilterDisable) )
1821  {
1822    for(Int i=0; i<m_iGOPSize; i++)
1823    {
1824      xConfirmPara( (m_GOPList[i].m_betaOffsetDiv2 + m_loopFilterBetaOffsetDiv2) < -6 || (m_GOPList[i].m_betaOffsetDiv2 + m_loopFilterBetaOffsetDiv2) > 6, "Loop Filter Beta Offset div. 2 for one of the GOP entries exceeds supported range (-6 to 6)" );
1825      xConfirmPara( (m_GOPList[i].m_tcOffsetDiv2 + m_loopFilterTcOffsetDiv2) < -6 || (m_GOPList[i].m_tcOffsetDiv2 + m_loopFilterTcOffsetDiv2) > 6, "Loop Filter Tc Offset div. 2 for one of the GOP entries exceeds supported range (-6 to 6)" );
1826    }
1827  }
1828#if SVC_EXTENSION
1829  }
1830#endif
1831
1832  m_extraRPSs=0;
1833  //start looping through frames in coding order until we can verify that the GOP structure is correct.
1834  while(!verifiedGOP&&!errorGOP) 
1835  {
1836    Int curGOP = (checkGOP-1)%m_iGOPSize;
1837    Int curPOC = ((checkGOP-1)/m_iGOPSize)*m_iGOPSize + m_GOPList[curGOP].m_POC;   
1838    if(m_GOPList[curGOP].m_POC<0) 
1839    {
1840      printf("\nError: found fewer Reference Picture Sets than GOPSize\n");
1841      errorGOP=true;
1842    }
1843    else 
1844    {
1845      //check that all reference pictures are available, or have a POC < 0 meaning they might be available in the next GOP.
1846      Bool beforeI = false;
1847      for(Int i = 0; i< m_GOPList[curGOP].m_numRefPics; i++) 
1848      {
1849        Int absPOC = curPOC+m_GOPList[curGOP].m_referencePics[i];
1850        if(absPOC < 0)
1851        {
1852          beforeI=true;
1853        }
1854        else 
1855        {
1856          Bool found=false;
1857          for(Int j=0; j<numRefs; j++) 
1858          {
1859            if(refList[j]==absPOC) 
1860            {
1861              found=true;
1862              for(Int k=0; k<m_iGOPSize; k++)
1863              {
1864                if(absPOC%m_iGOPSize == m_GOPList[k].m_POC%m_iGOPSize)
1865                {
1866                  if(m_GOPList[k].m_temporalId==m_GOPList[curGOP].m_temporalId)
1867                  {
1868                    m_GOPList[k].m_refPic = true;
1869                  }
1870                  m_GOPList[curGOP].m_usedByCurrPic[i]=m_GOPList[k].m_temporalId<=m_GOPList[curGOP].m_temporalId;
1871                }
1872              }
1873            }
1874          }
1875          if(!found)
1876          {
1877            printf("\nError: ref pic %d is not available for GOP frame %d\n",m_GOPList[curGOP].m_referencePics[i],curGOP+1);
1878            errorGOP=true;
1879          }
1880        }
1881      }
1882      if(!beforeI&&!errorGOP)
1883      {
1884        //all ref frames were present
1885        if(!isOK[curGOP]) 
1886        {
1887          numOK++;
1888          isOK[curGOP]=true;
1889          if(numOK==m_iGOPSize)
1890          {
1891            verifiedGOP=true;
1892          }
1893        }
1894      }
1895      else 
1896      {
1897        //create a new GOPEntry for this frame containing all the reference pictures that were available (POC > 0)
1898        m_GOPList[m_iGOPSize+m_extraRPSs]=m_GOPList[curGOP];
1899        Int newRefs=0;
1900        for(Int i = 0; i< m_GOPList[curGOP].m_numRefPics; i++) 
1901        {
1902          Int absPOC = curPOC+m_GOPList[curGOP].m_referencePics[i];
1903          if(absPOC>=0)
1904          {
1905            m_GOPList[m_iGOPSize+m_extraRPSs].m_referencePics[newRefs]=m_GOPList[curGOP].m_referencePics[i];
1906            m_GOPList[m_iGOPSize+m_extraRPSs].m_usedByCurrPic[newRefs]=m_GOPList[curGOP].m_usedByCurrPic[i];
1907            newRefs++;
1908          }
1909        }
1910        Int numPrefRefs = m_GOPList[curGOP].m_numRefPicsActive;
1911       
1912        for(Int offset = -1; offset>-checkGOP; offset--)
1913        {
1914          //step backwards in coding order and include any extra available pictures we might find useful to replace the ones with POC < 0.
1915          Int offGOP = (checkGOP-1+offset)%m_iGOPSize;
1916          Int offPOC = ((checkGOP-1+offset)/m_iGOPSize)*m_iGOPSize + m_GOPList[offGOP].m_POC;
1917          if(offPOC>=0&&m_GOPList[offGOP].m_temporalId<=m_GOPList[curGOP].m_temporalId)
1918          {
1919            Bool newRef=false;
1920            for(Int i=0; i<numRefs; i++)
1921            {
1922              if(refList[i]==offPOC)
1923              {
1924                newRef=true;
1925              }
1926            }
1927            for(Int i=0; i<newRefs; i++) 
1928            {
1929              if(m_GOPList[m_iGOPSize+m_extraRPSs].m_referencePics[i]==offPOC-curPOC)
1930              {
1931                newRef=false;
1932              }
1933            }
1934            if(newRef) 
1935            {
1936              Int insertPoint=newRefs;
1937              //this picture can be added, find appropriate place in list and insert it.
1938              if(m_GOPList[offGOP].m_temporalId==m_GOPList[curGOP].m_temporalId)
1939              {
1940                m_GOPList[offGOP].m_refPic = true;
1941              }
1942              for(Int j=0; j<newRefs; j++)
1943              {
1944                if(m_GOPList[m_iGOPSize+m_extraRPSs].m_referencePics[j]<offPOC-curPOC||m_GOPList[m_iGOPSize+m_extraRPSs].m_referencePics[j]>0)
1945                {
1946                  insertPoint = j;
1947                  break;
1948                }
1949              }
1950              Int prev = offPOC-curPOC;
1951              Int prevUsed = m_GOPList[offGOP].m_temporalId<=m_GOPList[curGOP].m_temporalId;
1952              for(Int j=insertPoint; j<newRefs+1; j++)
1953              {
1954                Int newPrev = m_GOPList[m_iGOPSize+m_extraRPSs].m_referencePics[j];
1955                Int newUsed = m_GOPList[m_iGOPSize+m_extraRPSs].m_usedByCurrPic[j];
1956                m_GOPList[m_iGOPSize+m_extraRPSs].m_referencePics[j]=prev;
1957                m_GOPList[m_iGOPSize+m_extraRPSs].m_usedByCurrPic[j]=prevUsed;
1958                prevUsed=newUsed;
1959                prev=newPrev;
1960              }
1961              newRefs++;
1962            }
1963          }
1964          if(newRefs>=numPrefRefs)
1965          {
1966            break;
1967          }
1968        }
1969        m_GOPList[m_iGOPSize+m_extraRPSs].m_numRefPics=newRefs;
1970        m_GOPList[m_iGOPSize+m_extraRPSs].m_POC = curPOC;
1971        if (m_extraRPSs == 0)
1972        {
1973          m_GOPList[m_iGOPSize+m_extraRPSs].m_interRPSPrediction = 0;
1974          m_GOPList[m_iGOPSize+m_extraRPSs].m_numRefIdc = 0;
1975        }
1976        else
1977        {
1978          Int rIdx =  m_iGOPSize + m_extraRPSs - 1;
1979          Int refPOC = m_GOPList[rIdx].m_POC;
1980          Int refPics = m_GOPList[rIdx].m_numRefPics;
1981          Int newIdc=0;
1982          for(Int i = 0; i<= refPics; i++) 
1983          {
1984            Int deltaPOC = ((i != refPics)? m_GOPList[rIdx].m_referencePics[i] : 0);  // check if the reference abs POC is >= 0
1985            Int absPOCref = refPOC+deltaPOC;
1986            Int refIdc = 0;
1987            for (Int j = 0; j < m_GOPList[m_iGOPSize+m_extraRPSs].m_numRefPics; j++)
1988            {
1989              if ( (absPOCref - curPOC) == m_GOPList[m_iGOPSize+m_extraRPSs].m_referencePics[j])
1990              {
1991                if (m_GOPList[m_iGOPSize+m_extraRPSs].m_usedByCurrPic[j])
1992                {
1993                  refIdc = 1;
1994                }
1995                else
1996                {
1997                  refIdc = 2;
1998                }
1999              }
2000            }
2001            m_GOPList[m_iGOPSize+m_extraRPSs].m_refIdc[newIdc]=refIdc;
2002            newIdc++;
2003          }
2004          m_GOPList[m_iGOPSize+m_extraRPSs].m_interRPSPrediction = 1; 
2005          m_GOPList[m_iGOPSize+m_extraRPSs].m_numRefIdc = newIdc;
2006          m_GOPList[m_iGOPSize+m_extraRPSs].m_deltaRPS = refPOC - m_GOPList[m_iGOPSize+m_extraRPSs].m_POC; 
2007        }
2008        curGOP=m_iGOPSize+m_extraRPSs;
2009        m_extraRPSs++;
2010      }
2011      numRefs=0;
2012      for(Int i = 0; i< m_GOPList[curGOP].m_numRefPics; i++) 
2013      {
2014        Int absPOC = curPOC+m_GOPList[curGOP].m_referencePics[i];
2015        if(absPOC >= 0) 
2016        {
2017          refList[numRefs]=absPOC;
2018          numRefs++;
2019        }
2020      }
2021      refList[numRefs]=curPOC;
2022      numRefs++;
2023    }
2024    checkGOP++;
2025  }
2026  xConfirmPara(errorGOP,"Invalid GOP structure given");
2027
2028  m_maxTempLayer = 1;
2029  for(Int i=0; i<m_iGOPSize; i++) 
2030  {
2031    if(m_GOPList[i].m_temporalId >= m_maxTempLayer)
2032    {
2033      m_maxTempLayer = m_GOPList[i].m_temporalId+1;
2034    }
2035    xConfirmPara(m_GOPList[i].m_sliceType!='B'&&m_GOPList[i].m_sliceType!='P', "Slice type must be equal to B or P");
2036  }
2037  for(Int i=0; i<MAX_TLAYER; i++)
2038  {
2039    m_numReorderPics[i] = 0;
2040    m_maxDecPicBuffering[i] = 1;
2041  }
2042  for(Int i=0; i<m_iGOPSize; i++) 
2043  {
2044    if(m_GOPList[i].m_numRefPics+1 > m_maxDecPicBuffering[m_GOPList[i].m_temporalId])
2045    {
2046      m_maxDecPicBuffering[m_GOPList[i].m_temporalId] = m_GOPList[i].m_numRefPics + 1;
2047    }
2048
2049    Int highestDecodingNumberWithLowerPOC = 0; 
2050    for(Int j=0; j<m_iGOPSize; j++)
2051    {
2052      if(m_GOPList[j].m_POC <= m_GOPList[i].m_POC)
2053      {
2054        highestDecodingNumberWithLowerPOC = j;
2055      }
2056    }
2057    Int numReorder = 0;
2058    for(Int j=0; j<highestDecodingNumberWithLowerPOC; j++)
2059    {
2060      if(m_GOPList[j].m_temporalId <= m_GOPList[i].m_temporalId && 
2061        m_GOPList[j].m_POC > m_GOPList[i].m_POC)
2062      {
2063        numReorder++;
2064      }
2065    }   
2066    if(numReorder > m_numReorderPics[m_GOPList[i].m_temporalId])
2067    {
2068      m_numReorderPics[m_GOPList[i].m_temporalId] = numReorder;
2069    }
2070  }
2071  for(Int i=0; i<MAX_TLAYER-1; i++) 
2072  {
2073    // a lower layer can not have higher value of m_numReorderPics than a higher layer
2074    if(m_numReorderPics[i+1] < m_numReorderPics[i])
2075    {
2076      m_numReorderPics[i+1] = m_numReorderPics[i];
2077    }
2078    // the value of num_reorder_pics[ i ] shall be in the range of 0 to max_dec_pic_buffering[ i ] - 1, inclusive
2079    if(m_numReorderPics[i] > m_maxDecPicBuffering[i] - 1)
2080    {
2081      m_maxDecPicBuffering[i] = m_numReorderPics[i] + 1;
2082    }
2083    // a lower layer can not have higher value of m_uiMaxDecPicBuffering than a higher layer
2084    if(m_maxDecPicBuffering[i+1] < m_maxDecPicBuffering[i])
2085    {
2086      m_maxDecPicBuffering[i+1] = m_maxDecPicBuffering[i];
2087    }
2088  }
2089
2090
2091  // the value of num_reorder_pics[ i ] shall be in the range of 0 to max_dec_pic_buffering[ i ] -  1, inclusive
2092  if(m_numReorderPics[MAX_TLAYER-1] > m_maxDecPicBuffering[MAX_TLAYER-1] - 1)
2093  {
2094    m_maxDecPicBuffering[MAX_TLAYER-1] = m_numReorderPics[MAX_TLAYER-1] + 1;
2095  }
2096
2097#if SVC_EXTENSION // ToDo: it should be checked for the case when parameters are different for the layers
2098  for(UInt layer = 0; layer < MAX_LAYERS; layer++)
2099  {
2100    Int m_iSourceWidth = m_acLayerCfg[layer].m_iSourceWidth;
2101    Int m_iSourceHeight = m_acLayerCfg[layer].m_iSourceHeight;
2102#if LAYER_CTB
2103    Int m_uiMaxCUWidth = m_acLayerCfg[layer].m_uiMaxCUWidth;
2104    Int m_uiMaxCUHeight = m_acLayerCfg[layer].m_uiMaxCUHeight;
2105#endif
2106#endif
2107  if(m_vuiParametersPresentFlag && m_bitstreamRestrictionFlag)
2108  { 
2109    Int PicSizeInSamplesY =  m_iSourceWidth * m_iSourceHeight;
2110    if(tileFlag)
2111    {
2112      Int maxTileWidth = 0;
2113      Int maxTileHeight = 0;
2114      Int widthInCU = (m_iSourceWidth % m_uiMaxCUWidth) ? m_iSourceWidth/m_uiMaxCUWidth + 1: m_iSourceWidth/m_uiMaxCUWidth;
2115      Int heightInCU = (m_iSourceHeight % m_uiMaxCUHeight) ? m_iSourceHeight/m_uiMaxCUHeight + 1: m_iSourceHeight/m_uiMaxCUHeight;
2116      if(m_iUniformSpacingIdr)
2117      {
2118        maxTileWidth = m_uiMaxCUWidth*((widthInCU+m_iNumColumnsMinus1)/(m_iNumColumnsMinus1+1));
2119        maxTileHeight = m_uiMaxCUHeight*((heightInCU+m_iNumRowsMinus1)/(m_iNumRowsMinus1+1));
2120        // if only the last tile-row is one treeblock higher than the others
2121        // the maxTileHeight becomes smaller if the last row of treeblocks has lower height than the others
2122        if(!((heightInCU-1)%(m_iNumRowsMinus1+1)))
2123        {
2124          maxTileHeight = maxTileHeight - m_uiMaxCUHeight + (m_iSourceHeight % m_uiMaxCUHeight);
2125        }     
2126        // if only the last tile-column is one treeblock wider than the others
2127        // the maxTileWidth becomes smaller if the last column of treeblocks has lower width than the others   
2128        if(!((widthInCU-1)%(m_iNumColumnsMinus1+1)))
2129        {
2130          maxTileWidth = maxTileWidth - m_uiMaxCUWidth + (m_iSourceWidth % m_uiMaxCUWidth);
2131        }
2132      }
2133      else // not uniform spacing
2134      {
2135        if(m_iNumColumnsMinus1<1)
2136        {
2137          maxTileWidth = m_iSourceWidth;
2138        }
2139        else
2140        {
2141          Int accColumnWidth = 0;
2142          for(Int col=0; col<(m_iNumColumnsMinus1); col++)
2143          {
2144            maxTileWidth = m_pColumnWidth[col]>maxTileWidth ? m_pColumnWidth[col]:maxTileWidth;
2145            accColumnWidth += m_pColumnWidth[col];
2146          }
2147          maxTileWidth = (widthInCU-accColumnWidth)>maxTileWidth ? m_uiMaxCUWidth*(widthInCU-accColumnWidth):m_uiMaxCUWidth*maxTileWidth;
2148        }
2149        if(m_iNumRowsMinus1<1)
2150        {
2151          maxTileHeight = m_iSourceHeight;
2152        }
2153        else
2154        {
2155          Int accRowHeight = 0;
2156          for(Int row=0; row<(m_iNumRowsMinus1); row++)
2157          {
2158            maxTileHeight = m_pRowHeight[row]>maxTileHeight ? m_pRowHeight[row]:maxTileHeight;
2159            accRowHeight += m_pRowHeight[row];
2160          }
2161          maxTileHeight = (heightInCU-accRowHeight)>maxTileHeight ? m_uiMaxCUHeight*(heightInCU-accRowHeight):m_uiMaxCUHeight*maxTileHeight;
2162        }
2163      }
2164      Int maxSizeInSamplesY = maxTileWidth*maxTileHeight;
2165      m_minSpatialSegmentationIdc = 4*PicSizeInSamplesY/maxSizeInSamplesY-4;
2166    }
2167    else if(m_iWaveFrontSynchro)
2168    {
2169      m_minSpatialSegmentationIdc = 4*PicSizeInSamplesY/((2*m_iSourceHeight+m_iSourceWidth)*m_uiMaxCUHeight)-4;
2170    }
2171    else if(m_sliceMode == 1)
2172    {
2173      m_minSpatialSegmentationIdc = 4*PicSizeInSamplesY/(m_sliceArgument*m_uiMaxCUWidth*m_uiMaxCUHeight)-4;
2174    }
2175    else
2176    {
2177      m_minSpatialSegmentationIdc = 0;
2178    }
2179  }
2180#if SVC_EXTENSION
2181  }
2182#endif
2183  xConfirmPara( m_iWaveFrontSynchro < 0, "WaveFrontSynchro cannot be negative" );
2184#if !SVC_EXTENSION
2185  xConfirmPara( m_iWaveFrontSubstreams <= 0, "WaveFrontSubstreams must be positive" );
2186  xConfirmPara( m_iWaveFrontSubstreams > 1 && !m_iWaveFrontSynchro, "Must have WaveFrontSynchro > 0 in order to have WaveFrontSubstreams > 1" );
2187#endif
2188
2189  xConfirmPara( m_decodedPictureHashSEIEnabled<0 || m_decodedPictureHashSEIEnabled>3, "this hash type is not correct!\n");
2190
2191  if (m_toneMappingInfoSEIEnabled)
2192  {
2193    xConfirmPara( m_toneMapCodedDataBitDepth < 8 || m_toneMapCodedDataBitDepth > 14 , "SEIToneMapCodedDataBitDepth must be in rage 8 to 14");
2194    xConfirmPara( m_toneMapTargetBitDepth < 1 || (m_toneMapTargetBitDepth > 16 && m_toneMapTargetBitDepth < 255) , "SEIToneMapTargetBitDepth must be in rage 1 to 16 or equal to 255");
2195    xConfirmPara( m_toneMapModelId < 0 || m_toneMapModelId > 4 , "SEIToneMapModelId must be in rage 0 to 4");
2196    xConfirmPara( m_cameraIsoSpeedValue == 0, "SEIToneMapCameraIsoSpeedValue shall not be equal to 0");
2197    xConfirmPara( m_extendedRangeWhiteLevel < 100, "SEIToneMapExtendedRangeWhiteLevel should be greater than or equal to 100");
2198    xConfirmPara( m_nominalBlackLevelLumaCodeValue >= m_nominalWhiteLevelLumaCodeValue, "SEIToneMapNominalWhiteLevelLumaCodeValue shall be greater than SEIToneMapNominalBlackLevelLumaCodeValue");
2199    xConfirmPara( m_extendedWhiteLevelLumaCodeValue < m_nominalWhiteLevelLumaCodeValue, "SEIToneMapExtendedWhiteLevelLumaCodeValue shall be greater than or equal to SEIToneMapNominalWhiteLevelLumaCodeValue");
2200  }
2201
2202#if RATE_CONTROL_LAMBDA_DOMAIN
2203#if RC_SHVC_HARMONIZATION
2204  for ( Int layer=0; layer<m_numLayers; layer++ )
2205  {
2206    if ( m_acLayerCfg[layer].m_RCEnableRateControl )
2207    {
2208      if ( m_acLayerCfg[layer].m_RCForceIntraQP )
2209      {
2210        if ( m_acLayerCfg[layer].m_RCInitialQP == 0 )
2211        {
2212          printf( "\nInitial QP for rate control is not specified. Reset not to use force intra QP!" );
2213          m_acLayerCfg[layer].m_RCForceIntraQP = false;
2214        }
2215      }
2216    }
2217    xConfirmPara( m_uiDeltaQpRD > 0, "Rate control cannot be used together with slice level multiple-QP optimization!\n" );
2218  }
2219#else
2220  if ( m_RCEnableRateControl )
2221  {
2222    if ( m_RCForceIntraQP )
2223    {
2224      if ( m_RCInitialQP == 0 )
2225      {
2226        printf( "\nInitial QP for rate control is not specified. Reset not to use force intra QP!" );
2227        m_RCForceIntraQP = false;
2228      }
2229    }
2230    xConfirmPara( m_uiDeltaQpRD > 0, "Rate control cannot be used together with slice level multiple-QP optimization!\n" );
2231  }
2232#endif
2233#else
2234  if(m_enableRateCtrl)
2235  {
2236    Int numLCUInWidth  = (m_iSourceWidth  / m_uiMaxCUWidth) + (( m_iSourceWidth  %  m_uiMaxCUWidth ) ? 1 : 0);
2237    Int numLCUInHeight = (m_iSourceHeight / m_uiMaxCUHeight)+ (( m_iSourceHeight %  m_uiMaxCUHeight) ? 1 : 0);
2238    Int numLCUInPic    =  numLCUInWidth * numLCUInHeight;
2239
2240    xConfirmPara( (numLCUInPic % m_numLCUInUnit) != 0, "total number of LCUs in a frame should be completely divided by NumLCUInUnit" );
2241
2242    m_iMaxDeltaQP       = MAX_DELTA_QP;
2243    m_iMaxCuDQPDepth    = MAX_CUDQP_DEPTH;
2244  }
2245#endif
2246
2247  xConfirmPara(!m_TransquantBypassEnableFlag && m_CUTransquantBypassFlagValue, "CUTransquantBypassFlagValue cannot be 1 when TransquantBypassEnableFlag is 0");
2248
2249  xConfirmPara(m_log2ParallelMergeLevel < 2, "Log2ParallelMergeLevel should be larger than or equal to 2");
2250  if (m_framePackingSEIEnabled)
2251  {
2252    xConfirmPara(m_framePackingSEIType < 3 || m_framePackingSEIType > 5 , "SEIFramePackingType must be in rage 3 to 5");
2253  }
2254#if VPS_EXTN_DIRECT_REF_LAYERS
2255#if M0457_PREDICTION_INDICATIONS
2256  xConfirmPara( (m_acLayerCfg[0].m_numSamplePredRefLayers != 0) && (m_acLayerCfg[0].m_numSamplePredRefLayers != -1), "Layer 0 cannot have any reference layers" );
2257  // NOTE: m_numSamplePredRefLayers  (for any layer) could be -1 (not signalled in cfg), in which case only the "previous layer" would be taken for reference
2258  for(Int layer = 1; layer < MAX_LAYERS; layer++)
2259  {
2260    xConfirmPara(m_acLayerCfg[layer].m_numSamplePredRefLayers > layer, "Cannot reference more layers than before current layer");
2261    for(Int i = 0; i < m_acLayerCfg[layer].m_numSamplePredRefLayers; i++)
2262    {
2263      xConfirmPara(m_acLayerCfg[layer].m_samplePredRefLayerIds[i] > layer, "Cannot reference higher layers");
2264      xConfirmPara(m_acLayerCfg[layer].m_samplePredRefLayerIds[i] == layer, "Cannot reference the current layer itself");
2265    }
2266  }
2267  xConfirmPara( (m_acLayerCfg[0].m_numMotionPredRefLayers != 0) && (m_acLayerCfg[0].m_numMotionPredRefLayers != -1), "Layer 0 cannot have any reference layers" );
2268  // NOTE: m_numMotionPredRefLayers  (for any layer) could be -1 (not signalled in cfg), in which case only the "previous layer" would be taken for reference
2269  for(Int layer = 1; layer < MAX_LAYERS; layer++)
2270  {
2271    xConfirmPara(m_acLayerCfg[layer].m_numMotionPredRefLayers > layer, "Cannot reference more layers than before current layer");
2272    for(Int i = 0; i < m_acLayerCfg[layer].m_numMotionPredRefLayers; i++)
2273    {
2274      xConfirmPara(m_acLayerCfg[layer].m_motionPredRefLayerIds[i] > layer, "Cannot reference higher layers");
2275      xConfirmPara(m_acLayerCfg[layer].m_motionPredRefLayerIds[i] == layer, "Cannot reference the current layer itself");
2276    }
2277  }
2278#else
2279  xConfirmPara( (m_acLayerCfg[0].m_numDirectRefLayers != 0) && (m_acLayerCfg[0].m_numDirectRefLayers != -1), "Layer 0 cannot have any reference layers" );
2280  // NOTE: m_numDirectRefLayers  (for any layer) could be -1 (not signalled in cfg), in which case only the "previous layer" would be taken for reference
2281  for(Int layer = 1; layer < MAX_LAYERS; layer++)
2282  {
2283    xConfirmPara(m_acLayerCfg[layer].m_numDirectRefLayers > layer, "Cannot reference more layers than before current layer");
2284    for(Int i = 0; i < m_acLayerCfg[layer].m_numDirectRefLayers; i++)
2285    {
2286      xConfirmPara(m_acLayerCfg[layer].m_refLayerIds[i] > layer, "Cannot reference higher layers");
2287      xConfirmPara(m_acLayerCfg[layer].m_refLayerIds[i] == layer, "Cannot reference the current layer itself");
2288    }
2289  }
2290#endif
2291  xConfirmPara( (m_acLayerCfg[0].m_numActiveRefLayers != 0) && (m_acLayerCfg[0].m_numActiveRefLayers != -1), "Layer 0 cannot have any active reference layers" );
2292  // NOTE: m_numActiveRefLayers  (for any layer) could be -1 (not signalled in cfg), in which case only the "previous layer" would be taken for reference
2293  for(Int layer = 1; layer < MAX_LAYERS; layer++)
2294  {
2295#if M0457_PREDICTION_INDICATIONS
2296    Bool predEnabledFlag[MAX_LAYERS];
2297    for (Int refLayer = 0; refLayer < layer; refLayer++)
2298    {
2299      predEnabledFlag[refLayer] = false;
2300    }
2301    for(Int i = 0; i < m_acLayerCfg[layer].m_numSamplePredRefLayers; i++)
2302    {
2303      predEnabledFlag[m_acLayerCfg[layer].m_samplePredRefLayerIds[i]] = true;
2304    }
2305    for(Int i = 0; i < m_acLayerCfg[layer].m_numMotionPredRefLayers; i++)
2306    {
2307      predEnabledFlag[m_acLayerCfg[layer].m_motionPredRefLayerIds[i]] = true;
2308    }
2309    Int numDirectRefLayers = 0;
2310    for (Int refLayer = 0; refLayer < layer; refLayer++)
2311    {
2312      if (predEnabledFlag[refLayer] == true) numDirectRefLayers++;
2313    }
2314    xConfirmPara(m_acLayerCfg[layer].m_numActiveRefLayers > numDirectRefLayers, "Cannot reference more layers than NumDirectRefLayers");
2315    for(Int i = 0; i < m_acLayerCfg[layer].m_numActiveRefLayers; i++)
2316    {
2317      xConfirmPara(m_acLayerCfg[layer].m_predLayerIds[i] >= numDirectRefLayers, "Cannot reference higher layers");
2318    }
2319#else
2320    xConfirmPara(m_acLayerCfg[layer].m_numActiveRefLayers > m_acLayerCfg[layer].m_numDirectRefLayers, "Cannot reference more layers than NumDirectRefLayers");
2321    for(Int i = 0; i < m_acLayerCfg[layer].m_numActiveRefLayers; i++)
2322    {
2323      xConfirmPara(m_acLayerCfg[layer].m_predLayerIds[i] >= m_acLayerCfg[layer].m_numDirectRefLayers, "Cannot reference higher layers");
2324    }
2325#endif
2326  }
2327#endif
2328#if M0040_ADAPTIVE_RESOLUTION_CHANGE
2329  if (m_adaptiveResolutionChange > 0)
2330  {
2331    xConfirmPara(m_numLayers != 2, "Adaptive resolution change works with 2 layers only");
2332    xConfirmPara(m_acLayerCfg[1].m_iIntraPeriod == 0 || (m_adaptiveResolutionChange % m_acLayerCfg[1].m_iIntraPeriod) != 0, "Adaptive resolution change must happen at enhancement layer RAP picture");
2333  }
2334#endif
2335#if HIGHER_LAYER_IRAP_SKIP_FLAG
2336  if (m_adaptiveResolutionChange > 0)
2337  {
2338    xConfirmPara(m_crossLayerIrapAlignFlag != 0, "Cross layer IRAP alignment must be disabled when using adaptive resolution change.");
2339  }
2340  if (m_skipPictureAtArcSwitch)
2341  {
2342    xConfirmPara(m_adaptiveResolutionChange <= 0, "Skip picture at ARC switching only works when Adaptive Resolution Change is active (AdaptiveResolutionChange > 0)");
2343  }
2344#endif
2345#if N0120_MAX_TID_REF_CFG
2346  for (UInt layer=0; layer < MAX_LAYERS-1; layer++)
2347  {
2348    xConfirmPara(m_acLayerCfg[layer].m_maxTidIlRefPicsPlus1 < 0 || m_acLayerCfg[layer].m_maxTidIlRefPicsPlus1 > 7, "MaxTidIlRefPicsPlus1 must be in range 0 to 7");
2349  }
2350#endif
2351#if AUXILIARY_PICTURES
2352  for (UInt layer=0; layer < MAX_LAYERS-1; layer++)
2353  {
2354    xConfirmPara(m_acLayerCfg[layer].m_auxId < 0 || m_acLayerCfg[layer].m_auxId > 4, "AuxId must be in range 0 to 4");
2355    xConfirmPara(m_acLayerCfg[layer].m_auxId > 0 && m_acLayerCfg[layer].m_chromaFormatIDC != CHROMA_400, "Auxiliary picture must be monochrome picture");
2356  }
2357#endif
2358#undef xConfirmPara
2359  if (check_failed)
2360  {
2361    exit(EXIT_FAILURE);
2362  }
2363}
2364
2365/** \todo use of global variables should be removed later
2366 */
2367#if LAYER_CTB
2368Void TAppEncCfg::xSetGlobal(UInt layerId)
2369{
2370  // set max CU width & height
2371  g_auiLayerMaxCUWidth[layerId]  = m_acLayerCfg[layerId].m_uiMaxCUWidth;
2372  g_auiLayerMaxCUHeight[layerId] = m_acLayerCfg[layerId].m_uiMaxCUHeight;
2373 
2374  // compute actual CU depth with respect to config depth and max transform size
2375  g_auiLayerAddCUDepth[layerId]  = 0;
2376  while( (m_acLayerCfg[layerId].m_uiMaxCUWidth>>m_acLayerCfg[layerId].m_uiMaxCUDepth) > ( 1 << ( m_acLayerCfg[layerId].m_uiQuadtreeTULog2MinSize + g_auiLayerAddCUDepth[layerId] )  ) ) g_auiLayerAddCUDepth[layerId]++;
2377 
2378  m_acLayerCfg[layerId].m_uiMaxCUDepth += g_auiLayerAddCUDepth[layerId];
2379  g_auiLayerAddCUDepth[layerId]++;
2380  g_auiLayerMaxCUDepth[layerId] = m_acLayerCfg[layerId].m_uiMaxCUDepth;
2381 
2382#if O0194_DIFFERENT_BITDEPTH_EL_BL
2383  // set internal bit-depth to constant value to make sure to be updated later
2384  g_bitDepthY = -1;
2385  g_bitDepthC = -1;
2386 
2387  g_uiPCMBitDepthLuma = -1;
2388  g_uiPCMBitDepthChroma = -1;
2389#else
2390  // set internal bit-depth and constants
2391  g_bitDepthY = m_internalBitDepthY;
2392  g_bitDepthC = m_internalBitDepthC;
2393 
2394  g_uiPCMBitDepthLuma = m_bPCMInputBitDepthFlag ? m_inputBitDepthY : m_internalBitDepthY;
2395  g_uiPCMBitDepthChroma = m_bPCMInputBitDepthFlag ? m_inputBitDepthC : m_internalBitDepthC;
2396#endif
2397}
2398#else
2399Void TAppEncCfg::xSetGlobal()
2400{
2401  // set max CU width & height
2402  g_uiMaxCUWidth  = m_uiMaxCUWidth;
2403  g_uiMaxCUHeight = m_uiMaxCUHeight;
2404 
2405  // compute actual CU depth with respect to config depth and max transform size
2406  g_uiAddCUDepth  = 0;
2407  while( (m_uiMaxCUWidth>>m_uiMaxCUDepth) > ( 1 << ( m_uiQuadtreeTULog2MinSize + g_uiAddCUDepth )  ) ) g_uiAddCUDepth++;
2408 
2409  m_uiMaxCUDepth += g_uiAddCUDepth;
2410  g_uiAddCUDepth++;
2411  g_uiMaxCUDepth = m_uiMaxCUDepth;
2412 
2413#if O0194_DIFFERENT_BITDEPTH_EL_BL
2414  // set internal bit-depth to constant value to make sure to be updated later
2415  g_bitDepthY = -1;
2416  g_bitDepthC = -1;
2417 
2418  g_uiPCMBitDepthLuma = -1;
2419  g_uiPCMBitDepthChroma = -1;
2420#else
2421  g_bitDepthY = m_internalBitDepthY;
2422  g_bitDepthC = m_internalBitDepthC;
2423 
2424  g_uiPCMBitDepthLuma = m_bPCMInputBitDepthFlag ? m_inputBitDepthY : m_internalBitDepthY;
2425  g_uiPCMBitDepthChroma = m_bPCMInputBitDepthFlag ? m_inputBitDepthC : m_internalBitDepthC;
2426#endif
2427}
2428#endif
2429
2430Void TAppEncCfg::xPrintParameter()
2431{
2432  printf("\n");
2433#if SVC_EXTENSION 
2434  printf("Total number of layers        : %d\n", m_numLayers       );
2435#if SCALABILITY_MASK_E0104
2436  printf("Multiview                     : %d\n", m_scalabilityMask[1] );
2437  printf("Scalable                      : %d\n", m_scalabilityMask[2] );
2438#if AUXILIARY_PICTURES
2439  printf("Auxiliary pictures            : %d\n", m_scalabilityMask[3] );
2440#endif
2441#else
2442  printf("Multiview                     : %d\n", m_scalabilityMask[0] );
2443  printf("Scalable                      : %d\n", m_scalabilityMask[1] );
2444#endif
2445#if M0040_ADAPTIVE_RESOLUTION_CHANGE
2446  printf("Adaptive Resolution Change    : %d\n", m_adaptiveResolutionChange );
2447#endif
2448#if HIGHER_LAYER_IRAP_SKIP_FLAG
2449  printf("Skip picture at ARC switch    : %d\n", m_skipPictureAtArcSwitch );
2450#endif
2451#if O0223_PICTURE_TYPES_ALIGN_FLAG
2452  printf("Cross layer picture type alignment    : %d\n", m_crossLayerPictureTypeAlignFlag );
2453#endif
2454#if N0147_IRAP_ALIGN_FLAG
2455  printf("Cross layer IRAP alignment    : %d\n", m_crossLayerIrapAlignFlag );
2456#endif
2457  for(UInt layer=0; layer<m_numLayers; layer++)
2458  {
2459    printf("=== Layer %d settings === \n", layer);
2460#if AVC_SYNTAX
2461    m_acLayerCfg[layer].xPrintParameter( layer );
2462#else
2463    m_acLayerCfg[layer].xPrintParameter();
2464#endif
2465    printf("\n");
2466  }
2467  printf("=== Common configuration settings === \n");
2468  printf("Bitstream      File          : %s\n", m_pBitstreamFile      );
2469#else
2470  printf("Input          File          : %s\n", m_pchInputFile          );
2471  printf("Bitstream      File          : %s\n", m_pchBitstreamFile      );
2472  printf("Reconstruction File          : %s\n", m_pchReconFile          );
2473  printf("Real     Format              : %dx%d %dHz\n", m_iSourceWidth - m_confLeft - m_confRight, m_iSourceHeight - m_confTop - m_confBottom, m_iFrameRate );
2474  printf("Internal Format              : %dx%d %dHz\n", m_iSourceWidth, m_iSourceHeight, m_iFrameRate );
2475#endif
2476  if (m_isField)
2477  {
2478    printf("Frame/Field          : Field based coding\n");
2479    printf("Field index          : %u - %d (%d fields)\n", m_FrameSkip, m_FrameSkip+m_framesToBeEncoded-1, m_framesToBeEncoded );
2480    if (m_isTopFieldFirst)
2481    {
2482      printf("Field Order            : Top field first\n");
2483    }
2484    else
2485    {
2486      printf("Field Order            : Bottom field first\n");
2487    }
2488  }
2489  else
2490  {
2491    printf("Frame/Field                  : Frame based coding\n");
2492    printf("Frame index                  : %u - %d (%d frames)\n", m_FrameSkip, m_FrameSkip+m_framesToBeEncoded-1, m_framesToBeEncoded );
2493  }
2494#if !LAYER_CTB
2495  printf("CU size / depth              : %d / %d\n", m_uiMaxCUWidth, m_uiMaxCUDepth );
2496  printf("RQT trans. size (min / max)  : %d / %d\n", 1 << m_uiQuadtreeTULog2MinSize, 1 << m_uiQuadtreeTULog2MaxSize );
2497  printf("Max RQT depth inter          : %d\n", m_uiQuadtreeTUMaxDepthInter);
2498  printf("Max RQT depth intra          : %d\n", m_uiQuadtreeTUMaxDepthIntra);
2499#endif
2500  printf("Min PCM size                 : %d\n", 1 << m_uiPCMLog2MinSize);
2501  printf("Motion search range          : %d\n", m_iSearchRange );
2502#if !SVC_EXTENSION
2503  printf("Intra period                 : %d\n", m_iIntraPeriod );
2504#endif
2505  printf("Decoding refresh type        : %d\n", m_iDecodingRefreshType );
2506#if !SVC_EXTENSION
2507  printf("QP                           : %5.2f\n", m_fQP );
2508#endif
2509  printf("Max dQP signaling depth      : %d\n", m_iMaxCuDQPDepth);
2510
2511  printf("Cb QP Offset                 : %d\n", m_cbQpOffset   );
2512  printf("Cr QP Offset                 : %d\n", m_crQpOffset);
2513
2514  printf("QP adaptation                : %d (range=%d)\n", m_bUseAdaptiveQP, (m_bUseAdaptiveQP ? m_iQPAdaptationRange : 0) );
2515  printf("GOP size                     : %d\n", m_iGOPSize );
2516#if !O0194_DIFFERENT_BITDEPTH_EL_BL
2517  printf("Internal bit depth           : (Y:%d, C:%d)\n", m_internalBitDepthY, m_internalBitDepthC );
2518  printf("PCM sample bit depth         : (Y:%d, C:%d)\n", g_uiPCMBitDepthLuma, g_uiPCMBitDepthChroma );
2519#endif
2520#if O0215_PHASE_ALIGNMENT
2521  printf("Cross-layer sample alignment : %d\n", m_phaseAlignFlag);
2522#endif
2523#if RATE_CONTROL_LAMBDA_DOMAIN
2524#if !RC_SHVC_HARMONIZATION
2525  printf("RateControl                  : %d\n", m_RCEnableRateControl );
2526  if(m_RCEnableRateControl)
2527  {
2528    printf("TargetBitrate                : %d\n", m_RCTargetBitrate );
2529    printf("KeepHierarchicalBit          : %d\n", m_RCKeepHierarchicalBit );
2530    printf("LCULevelRC                   : %d\n", m_RCLCULevelRC );
2531    printf("UseLCUSeparateModel          : %d\n", m_RCUseLCUSeparateModel );
2532    printf("InitialQP                    : %d\n", m_RCInitialQP );
2533    printf("ForceIntraQP                 : %d\n", m_RCForceIntraQP );
2534  }
2535#endif
2536#else
2537  printf("RateControl                  : %d\n", m_enableRateCtrl);
2538  if(m_enableRateCtrl)
2539  {
2540    printf("TargetBitrate                : %d\n", m_targetBitrate);
2541    printf("NumLCUInUnit                 : %d\n", m_numLCUInUnit);
2542  }
2543#endif
2544  printf("Max Num Merge Candidates     : %d\n", m_maxNumMergeCand);
2545  printf("\n");
2546 
2547  printf("TOOL CFG: ");
2548#if !O0194_DIFFERENT_BITDEPTH_EL_BL
2549  printf("IBD:%d ", g_bitDepthY > m_inputBitDepthY || g_bitDepthC > m_inputBitDepthC);
2550#endif
2551  printf("HAD:%d ", m_bUseHADME           );
2552  printf("SRD:%d ", m_bUseSBACRD          );
2553  printf("RDQ:%d ", m_useRDOQ            );
2554  printf("RDQTS:%d ", m_useRDOQTS        );
2555  printf("RDpenalty:%d ", m_rdPenalty  );
2556  printf("SQP:%d ", m_uiDeltaQpRD         );
2557  printf("ASR:%d ", m_bUseASR             );
2558  printf("FEN:%d ", m_bUseFastEnc         );
2559  printf("ECU:%d ", m_bUseEarlyCU         );
2560  printf("FDM:%d ", m_useFastDecisionForMerge );
2561  printf("CFM:%d ", m_bUseCbfFastMode         );
2562  printf("ESD:%d ", m_useEarlySkipDetection  );
2563#if FAST_INTRA_SHVC
2564  printf("FIS:%d ", m_useFastIntraScalable  );
2565#endif
2566  printf("RQT:%d ", 1     );
2567  printf("TransformSkip:%d ",     m_useTransformSkip              );
2568  printf("TransformSkipFast:%d ", m_useTransformSkipFast       );
2569  printf("Slice: M=%d ", m_sliceMode);
2570  if (m_sliceMode!=0)
2571  {
2572    printf("A=%d ", m_sliceArgument);
2573  }
2574  printf("SliceSegment: M=%d ",m_sliceSegmentMode);
2575  if (m_sliceSegmentMode!=0)
2576  {
2577    printf("A=%d ", m_sliceSegmentArgument);
2578  }
2579  printf("CIP:%d ", m_bUseConstrainedIntraPred);
2580  printf("SAO:%d ", (m_bUseSAO)?(1):(0));
2581#if !LAYER_CTB
2582  printf("PCM:%d ", (m_usePCM && (1<<m_uiPCMLog2MinSize) <= m_uiMaxCUWidth)? 1 : 0);
2583#endif
2584  printf("SAOLcuBasedOptimization:%d ", (m_saoLcuBasedOptimization)?(1):(0));
2585
2586  printf("LosslessCuEnabled:%d ", (m_useLossless)? 1:0 );
2587  printf("WPP:%d ", (Int)m_useWeightedPred);
2588  printf("WPB:%d ", (Int)m_useWeightedBiPred);
2589  printf("PME:%d ", m_log2ParallelMergeLevel);
2590#if !SVC_EXTENSION
2591  printf(" WaveFrontSynchro:%d WaveFrontSubstreams:%d",
2592          m_iWaveFrontSynchro, m_iWaveFrontSubstreams);
2593#endif
2594  printf(" ScalingList:%d ", m_useScalingListId );
2595  printf("TMVPMode:%d ", m_TMVPModeId     );
2596#if ADAPTIVE_QP_SELECTION
2597  printf("AQpS:%d", m_bUseAdaptQpSelect   );
2598#endif
2599
2600  printf(" SignBitHidingFlag:%d ", m_signHideFlag);
2601#if SVC_EXTENSION
2602  printf("RecalQP:%d ", m_recalculateQPAccordingToLambda ? 1 : 0 );
2603#if AVC_BASE
2604  printf("AvcBase:%d ", m_avcBaseLayerFlag ? 1 : 0);
2605#else
2606  printf("AvcBase:%d ", 0);
2607#endif
2608  printf("EL_RAP_SliceType: %d ", m_elRapSliceBEnabled);
2609  printf("REF_IDX_ME_ZEROMV: %d ", REF_IDX_ME_ZEROMV);
2610  printf("ENCODER_FAST_MODE: %d ", ENCODER_FAST_MODE);
2611  printf("REF_IDX_MFM: %d ", REF_IDX_MFM);
2612#else
2613  printf("RecalQP:%d", m_recalculateQPAccordingToLambda ? 1 : 0 );
2614#endif
2615  printf("O0194_DIFFERENT_BITDEPTH_EL_BL: %d ", O0194_DIFFERENT_BITDEPTH_EL_BL);
2616  printf("O0194_JOINT_US_BITSHIFT: %d ", O0194_JOINT_US_BITSHIFT);
2617  printf("O0194_WEIGHTED_PREDICTION_CGS: %d ",O0194_WEIGHTED_PREDICTION_CGS);
2618  printf("\n\n");
2619 
2620  fflush(stdout);
2621}
2622
2623Bool confirmPara(Bool bflag, const Char* message)
2624{
2625  if (!bflag)
2626    return false;
2627 
2628  printf("Error: %s\n",message);
2629  return true;
2630}
2631
2632#if SVC_EXTENSION
2633Void TAppEncCfg::cfgStringToArray(Int **arr, string cfgString, Int numEntries, const char* logString)
2634{
2635  Char *tempChar = cfgString.empty() ? NULL : strdup(cfgString.c_str());
2636  if( numEntries > 0 )
2637  {
2638    Char *arrayEntry;
2639    Int i = 0;
2640    *arr = new Int[numEntries];
2641
2642    arrayEntry = strtok( tempChar, " ,");
2643    while(arrayEntry != NULL)
2644    {
2645      if( i >= numEntries )
2646      {
2647        printf( "%s: The number of entries specified is larger than the allowed number.\n", logString );
2648        exit( EXIT_FAILURE );
2649      }
2650      *( *arr + i ) = atoi( arrayEntry );
2651      arrayEntry = strtok(NULL, " ,");
2652      i++;
2653    }
2654    if( i < numEntries )
2655    {
2656      printf( "%s: Some entries are not specified.\n", logString );
2657      exit( EXIT_FAILURE );
2658    }
2659  }
2660  else
2661  {
2662    *arr = NULL;
2663  }
2664}
2665
2666#endif //SVC_EXTENSION
2667//! \}
Note: See TracBrowser for help on using the repository browser.