source: SHVCSoftware/branches/SHM-upgrade/source/App/TAppEncoder/TAppEncLayerCfg.cpp @ 917

Last change on this file since 917 was 917, checked in by seregin, 10 years ago

fix printing summary and remove REP_FORMAT_FIX, WPP_FIX, and P0050_KNEE_FUNCTION_SEI

  • Property svn:eol-style set to native
File size: 26.4 KB
Line 
1/** \file     TAppEncLayerCfg.cpp
2\brief    Handle encoder configuration parameters
3*/
4
5#include <stdlib.h>
6#include <cassert>
7#include <cstring>
8#include <string>
9#include "TLibCommon/TComRom.h"
10#include "TAppEncCfg.h"
11#include "TAppEncLayerCfg.h"
12#include "TAppCommon/program_options_lite.h"
13
14#ifdef WIN32
15#define strdup _strdup
16#endif
17
18using namespace std;
19namespace po = df::program_options_lite;
20
21//! \ingroup TAppEncoder
22//! \{
23
24
25#if AUXILIARY_PICTURES
26static inline ChromaFormat numberToChromaFormat(const Int val)
27{
28  switch (val)
29  {
30    case 400: return CHROMA_400; break;
31    case 420: return CHROMA_420; break;
32    case 422: return CHROMA_422; break;
33    case 444: return CHROMA_444; break;
34    default:  return NUM_CHROMA_FORMAT;
35  }
36}
37#endif
38
39// ====================================================================================================================
40// Constructor / destructor / initialization / destroy
41// ====================================================================================================================
42#if SVC_EXTENSION
43TAppEncLayerCfg::TAppEncLayerCfg()
44  :m_cInputFile(string("")),
45  m_cReconFile(string("")),
46  m_conformanceMode( 0 ),
47  m_aidQP(NULL)
48#if REPN_FORMAT_IN_VPS
49, m_repFormatIdx (-1)
50#endif
51#if Q0074_COLOUR_REMAPPING_SEI
52,  m_colourRemapSEIFile(string(""))
53#endif
54{
55#if Q0074_COLOUR_REMAPPING_SEI
56  for( Int c=0 ; c<3 ; c++)
57  {
58    m_colourRemapSEIPreLutCodedValue[c]   = NULL;
59    m_colourRemapSEIPreLutTargetValue[c]  = NULL;
60    m_colourRemapSEIPostLutCodedValue[c]  = NULL;
61    m_colourRemapSEIPostLutTargetValue[c] = NULL;
62  }
63#endif
64  m_confWinLeft = m_confWinRight = m_confWinTop = m_confWinBottom = 0;
65  m_aiPad[1] = m_aiPad[0] = 0;
66  m_numScaledRefLayerOffsets = 0;
67#if O0098_SCALED_REF_LAYER_ID
68  ::memset(m_scaledRefLayerId,           0, sizeof(m_scaledRefLayerId));
69#endif
70  ::memset(m_scaledRefLayerLeftOffset,   0, sizeof(m_scaledRefLayerLeftOffset));
71  ::memset(m_scaledRefLayerTopOffset,    0, sizeof(m_scaledRefLayerTopOffset));
72  ::memset(m_scaledRefLayerRightOffset,  0, sizeof(m_scaledRefLayerRightOffset));
73  ::memset(m_scaledRefLayerBottomOffset, 0, sizeof(m_scaledRefLayerBottomOffset));
74#if REF_REGION_OFFSET
75  ::memset(m_scaledRefLayerOffsetPresentFlag, 0, sizeof(m_scaledRefLayerOffsetPresentFlag));
76  ::memset(m_refRegionOffsetPresentFlag, 0, sizeof(m_refRegionOffsetPresentFlag));
77  ::memset(m_refRegionLeftOffset,   0, sizeof(m_refRegionLeftOffset));
78  ::memset(m_refRegionTopOffset,    0, sizeof(m_refRegionTopOffset));
79  ::memset(m_refRegionRightOffset,  0, sizeof(m_refRegionRightOffset));
80  ::memset(m_refRegionBottomOffset, 0, sizeof(m_refRegionBottomOffset));
81#endif
82#if R0209_GENERIC_PHASE
83  ::memset(m_resamplePhaseSetPresentFlag, 0, sizeof(m_resamplePhaseSetPresentFlag));
84  ::memset(m_phaseHorLuma,   0, sizeof(m_phaseHorLuma));
85  ::memset(m_phaseVerLuma,   0, sizeof(m_phaseVerLuma));
86  ::memset(m_phaseHorChroma, 0, sizeof(m_phaseHorChroma));
87  ::memset(m_phaseVerChroma, 0, sizeof(m_phaseVerChroma));
88#else
89#if P0312_VERT_PHASE_ADJ
90  ::memset(m_vertPhasePositionEnableFlag, 0, sizeof(m_vertPhasePositionEnableFlag));
91#endif
92#endif
93}
94
95TAppEncLayerCfg::~TAppEncLayerCfg()
96{
97  if ( m_aidQP )
98  {
99    delete[] m_aidQP;
100  }
101#if Q0074_COLOUR_REMAPPING_SEI
102  for( Int c=0 ; c<3 ; c++)
103  {
104    if ( m_colourRemapSEIPreLutCodedValue[c] )
105    {
106      delete[] m_colourRemapSEIPreLutCodedValue[c];
107    }
108    if ( m_colourRemapSEIPreLutTargetValue[c] )
109    {
110      delete[] m_colourRemapSEIPreLutTargetValue[c];
111    }
112    if ( m_colourRemapSEIPostLutCodedValue[c] )
113    {
114      delete[] m_colourRemapSEIPostLutCodedValue[c];
115    }
116    if ( m_colourRemapSEIPostLutTargetValue[c] )
117    {
118      delete[] m_colourRemapSEIPostLutTargetValue[c];
119    }
120  }
121#endif
122}
123
124Void TAppEncLayerCfg::create()
125{
126}
127
128Void TAppEncLayerCfg::destroy()
129{
130}
131
132
133// ====================================================================================================================
134// Public member functions
135// ====================================================================================================================
136
137/** \param  argc        number of arguments
138\param  argv        array of arguments
139\retval             true when success
140*/
141bool TAppEncLayerCfg::parseCfg( const string& cfgFileName  )
142{
143  string cfg_InputFile;
144  string cfg_ReconFile;
145  string cfg_dQPFile;
146#if AUXILIARY_PICTURES
147  Int tmpInputChromaFormat;
148  Int tmpChromaFormat;
149#endif
150#if Q0074_COLOUR_REMAPPING_SEI
151  string  cfg_colourRemapSEIFile;
152#endif
153
154  po::Options opts;
155  opts.addOptions()
156    ("InputFile,i",           cfg_InputFile,  string(""), "original YUV input file name")
157#if AVC_BASE
158    ("InputBLFile,-ibl",      cfg_InputFile,  string(""), "original YUV input file name")
159#endif
160    ("ReconFile,o",           cfg_ReconFile,  string(""), "reconstructed YUV output file name")
161    ("SourceWidth,-wdt",      m_iSourceWidth,  0, "Source picture width")
162    ("SourceHeight,-hgt",     m_iSourceHeight, 0, "Source picture height")
163    ("CroppingMode",          m_conformanceMode,  0, "Cropping mode (0: no cropping, 1:automatic padding, 2: padding, 3:cropping")
164#if AUXILIARY_PICTURES
165    ("InputChromaFormat",     tmpInputChromaFormat,  420, "InputChromaFormatIDC")
166    ("ChromaFormatIDC",       tmpChromaFormat,    420, "ChromaFormatIDC (400|420|422|444 or set 0 (default) for same as InputChromaFormat)")
167#endif
168    ("ConfLeft",              m_confWinLeft,            0, "Deprecated alias of ConfWinLeft")
169    ("ConfRight",             m_confWinRight,           0, "Deprecated alias of ConfWinRight")
170    ("ConfTop",               m_confWinTop,             0, "Deprecated alias of ConfWinTop")
171    ("ConfBottom",            m_confWinBottom,          0, "Deprecated alias of ConfWinBottom")
172    ("ConfWinLeft",           m_confWinLeft,            0, "Left offset for window conformance mode 3")
173    ("ConfWinRight",          m_confWinRight,           0, "Right offset for window conformance mode 3")
174    ("ConfWinTop",            m_confWinTop,             0, "Top offset for window conformance mode 3")
175    ("ConfWinBottom",         m_confWinBottom,          0, "Bottom offset for window conformance mode 3")
176    ("HorizontalPadding,-pdx",m_aiPad[0],      0, "horizontal source padding for cropping mode 2")
177    ("VerticalPadding,-pdy",  m_aiPad[1],      0, "vertical source padding for cropping mode 2")
178    ("IntraPeriod,-ip",       m_iIntraPeriod,  -1, "intra period in frames, (-1: only first frame)")
179    ("FrameRate,-fr",         m_iFrameRate,    0, "Frame rate")
180    ("dQPFile,m",             cfg_dQPFile, string(""), "dQP file name")
181    ("QP,q",                  m_fQP,          30.0, "Qp value, if value is float, QP is switched once during encoding")
182#if Q0074_COLOUR_REMAPPING_SEI
183    ("SEIColourRemappingInfoFile", cfg_colourRemapSEIFile, string(""), "Colour Remapping Information SEI parameters file name")
184#endif
185  ;
186
187  po::setDefaults(opts);
188  po::parseConfigFile(opts, cfgFileName);
189
190  m_cInputFile = cfg_InputFile;
191  m_cReconFile = cfg_ReconFile;
192  m_pchdQPFile = cfg_dQPFile.empty() ? NULL : strdup(cfg_dQPFile.c_str());
193#if AUXILIARY_PICTURES
194  m_InputChromaFormatIDC = numberToChromaFormat(tmpInputChromaFormat);
195  m_chromaFormatIDC   = ((tmpChromaFormat == 0) ? (m_InputChromaFormatIDC) : (numberToChromaFormat(tmpChromaFormat)));
196#endif
197#if Q0074_COLOUR_REMAPPING_SEI
198  m_colourRemapSEIFile = cfg_colourRemapSEIFile.empty() ? NULL : strdup(cfg_colourRemapSEIFile.c_str());
199#endif
200
201  // reading external dQP description from file
202  if ( m_pchdQPFile )
203  {
204    FILE* fpt=fopen( m_pchdQPFile, "r" );
205    if ( fpt )
206    {
207      Int iValue;
208      Int iPOC = 0;
209      while ( iPOC < m_cAppEncCfg->getNumFrameToBeEncoded() )
210      {
211        if ( fscanf(fpt, "%d", &iValue ) == EOF ) break;
212        m_aidQP[ iPOC ] = iValue;
213        iPOC++;
214      }
215      fclose(fpt);
216    }
217  }
218
219#if Q0074_COLOUR_REMAPPING_SEI
220  if( m_colourRemapSEIFile.size() > 0 )
221  {
222    FILE* fic;
223    Int retval;
224    if((fic = fopen(m_colourRemapSEIFile.c_str(),"r")) == (FILE*)NULL)
225    {
226      fprintf(stderr, "Can't open Colour Remapping Information SEI parameters file %s\n", m_colourRemapSEIFile.c_str());
227      exit(EXIT_FAILURE);
228    }
229
230    Int tempCode;
231    retval = fscanf( fic, "%d", &m_colourRemapSEIId );
232    retval = fscanf( fic, "%d", &tempCode );m_colourRemapSEICancelFlag = tempCode ? 1 : 0; 
233    if( !m_colourRemapSEICancelFlag )
234    {
235      retval = fscanf( fic, "%d", &tempCode );m_colourRemapSEIPersistenceFlag = tempCode ? 1 : 0; 
236      retval = fscanf( fic, "%d", &tempCode );m_colourRemapSEIVideoSignalInfoPresentFlag = tempCode ? 1 : 0; 
237      if( m_colourRemapSEIVideoSignalInfoPresentFlag )
238      {
239        retval = fscanf( fic, "%d", &tempCode );m_colourRemapSEIFullRangeFlag = tempCode ? 1 : 0; 
240        retval = fscanf( fic, "%d", &m_colourRemapSEIPrimaries );
241        retval = fscanf( fic, "%d", &m_colourRemapSEITransferFunction );
242        retval = fscanf( fic, "%d", &m_colourRemapSEIMatrixCoefficients );
243      }
244
245      retval = fscanf( fic, "%d", &m_colourRemapSEIInputBitDepth );
246      retval = fscanf( fic, "%d", &m_colourRemapSEIBitDepth );
247 
248      for( Int c=0 ; c<3 ; c++ )
249      {
250        retval = fscanf( fic, "%d", &m_colourRemapSEIPreLutNumValMinus1[c] );
251        if( m_colourRemapSEIPreLutNumValMinus1[c]>0 )
252        {
253          m_colourRemapSEIPreLutCodedValue[c]  = new Int[m_colourRemapSEIPreLutNumValMinus1[c]+1];
254          m_colourRemapSEIPreLutTargetValue[c] = new Int[m_colourRemapSEIPreLutNumValMinus1[c]+1];
255          for( Int i=0 ; i<=m_colourRemapSEIPreLutNumValMinus1[c] ; i++ )
256          {
257            retval = fscanf( fic, "%d", &m_colourRemapSEIPreLutCodedValue[c][i] );
258            retval = fscanf( fic, "%d", &m_colourRemapSEIPreLutTargetValue[c][i] );
259          }
260        }
261      }
262
263      retval = fscanf( fic, "%d", &tempCode );m_colourRemapSEIMatrixPresentFlag = tempCode ? 1 : 0; 
264      if( m_colourRemapSEIMatrixPresentFlag )
265      {
266        retval = fscanf( fic, "%d", &m_colourRemapSEILog2MatrixDenom );
267        for( Int c=0 ; c<3 ; c++ )
268          for( Int i=0 ; i<3 ; i++ )
269            retval = fscanf( fic, "%d", &m_colourRemapSEICoeffs[c][i] );
270      }
271
272      for( Int c=0 ; c<3 ; c++ )
273      {
274        retval = fscanf( fic, "%d", &m_colourRemapSEIPostLutNumValMinus1[c] );
275        if( m_colourRemapSEIPostLutNumValMinus1[c]>0 )
276        {
277          m_colourRemapSEIPostLutCodedValue[c]  = new Int[m_colourRemapSEIPostLutNumValMinus1[c]+1];
278          m_colourRemapSEIPostLutTargetValue[c] = new Int[m_colourRemapSEIPostLutNumValMinus1[c]+1];
279          for( Int i=0 ; i<=m_colourRemapSEIPostLutNumValMinus1[c] ; i++ )
280          {
281            retval = fscanf( fic, "%d", &m_colourRemapSEIPostLutCodedValue[c][i] );
282            retval = fscanf( fic, "%d", &m_colourRemapSEIPostLutTargetValue[c][i] );
283          }
284        }
285      }
286    }
287
288    fclose( fic );
289    if( retval != 1 )
290    {
291      fprintf(stderr, "Error while reading Colour Remapping Information SEI parameters file\n");
292      exit(EXIT_FAILURE);
293    }
294  }
295#endif
296
297  return true;
298}
299
300Void TAppEncLayerCfg::xPrintParameter()
301{
302  printf("Input File                        : %s\n", m_cInputFile.c_str()  );
303  printf("Reconstruction File               : %s\n", m_cReconFile.c_str()  );
304#if REPN_FORMAT_IN_VPS
305  printf("Real     Format                   : %dx%d %dHz\n", m_iSourceWidth - ( m_confWinLeft + m_confWinRight ) * TComSPS::getWinUnitX( m_chromaFormatIDC ), m_iSourceHeight - ( m_confWinTop + m_confWinBottom ) * TComSPS::getWinUnitY( m_chromaFormatIDC ), m_iFrameRate );
306#else
307  printf("Real     Format                   : %dx%d %dHz\n", m_iSourceWidth - m_confWinLeft - m_confWinRight, m_iSourceHeight - m_confWinTop - m_confWinBottom, m_iFrameRate );
308#endif
309  printf("Internal Format                   : %dx%d %dHz\n", m_iSourceWidth, m_iSourceHeight, m_iFrameRate );
310#if O0194_DIFFERENT_BITDEPTH_EL_BL
311  printf("Input bit depth                   : (Y:%d, C:%d)\n", m_inputBitDepth[CHANNEL_TYPE_LUMA], m_inputBitDepth[CHANNEL_TYPE_CHROMA] );
312  printf("Internal bit depth                : (Y:%d, C:%d)\n", m_internalBitDepth[CHANNEL_TYPE_LUMA], m_internalBitDepth[CHANNEL_TYPE_CHROMA] );
313  printf("PCM sample bit depth              : (Y:%d, C:%d)\n", m_cAppEncCfg->getPCMInputBitDepthFlag() ? m_inputBitDepth[CHANNEL_TYPE_LUMA] : m_internalBitDepth[CHANNEL_TYPE_LUMA], m_cAppEncCfg->getPCMInputBitDepthFlag() ? m_inputBitDepth[CHANNEL_TYPE_CHROMA] : m_internalBitDepth[CHANNEL_TYPE_CHROMA] );
314#endif
315#if SVC_EXTENSION
316  std::cout << "Input ChromaFormatIDC             :";
317#else
318  std::cout << std::setw(43) << "Input ChromaFormatIDC = ";
319#endif
320  switch (m_InputChromaFormatIDC)
321  {
322  case CHROMA_400:  std::cout << "  4:0:0"; break;
323  case CHROMA_420:  std::cout << "  4:2:0"; break;
324  case CHROMA_422:  std::cout << "  4:2:2"; break;
325  case CHROMA_444:  std::cout << "  4:4:4"; break;
326  default:
327    std::cerr << "Invalid";
328    exit(1);
329  }
330  std::cout << std::endl;
331
332#if SVC_EXTENSION
333  std::cout << "Output (internal) ChromaFormatIDC :";
334#else
335  std::cout << std::setw(43) << "Output (internal) ChromaFormatIDC = ";
336#endif
337  switch (m_chromaFormatIDC)
338  {
339  case CHROMA_400:  std::cout << "  4:0:0"; break;
340  case CHROMA_420:  std::cout << "  4:2:0"; break;
341  case CHROMA_422:  std::cout << "  4:2:2"; break;
342  case CHROMA_444:  std::cout << "  4:4:4"; break;
343  default:
344    std::cerr << "Invalid";
345    exit(1);
346  }
347  std::cout << "\n" << std::endl;
348#if LAYER_CTB
349  printf("CU size / depth                   : %d / %d\n", m_uiMaxCUWidth, m_uiMaxCUDepth );
350  printf("RQT trans. size (min / max)       : %d / %d\n", 1 << m_uiQuadtreeTULog2MinSize, 1 << m_uiQuadtreeTULog2MaxSize );
351  printf("Max RQT depth inter               : %d\n", m_uiQuadtreeTUMaxDepthInter);
352  printf("Max RQT depth intra               : %d\n", m_uiQuadtreeTUMaxDepthIntra);
353#endif
354  printf("QP                                : %5.2f\n", m_fQP );
355  printf("Intra period                      : %d\n", m_iIntraPeriod );
356#if RC_SHVC_HARMONIZATION                   
357  printf("RateControl                       : %d\n", m_RCEnableRateControl );
358  if(m_RCEnableRateControl)
359  {
360    printf("TargetBitrate                     : %d\n", m_RCTargetBitrate );
361    printf("KeepHierarchicalBit               : %d\n", m_RCKeepHierarchicalBit );
362    printf("LCULevelRC                        : %d\n", m_RCLCULevelRC );
363    printf("UseLCUSeparateModel               : %d\n", m_RCUseLCUSeparateModel );
364    printf("InitialQP                         : %d\n", m_RCInitialQP );
365    printf("ForceIntraQP                      : %d\n", m_RCForceIntraQP );
366  }
367#endif
368  printf("WaveFrontSynchro                  : %d\n", m_waveFrontSynchro);
369  printf("WaveFrontSubstreams               : %d\n", m_iWaveFrontSubstreams);
370#if LAYER_CTB
371  printf("PCM                               : %d ", (m_cAppEncCfg->getUsePCM() && (1<<m_cAppEncCfg->getPCMLog2MinSize()) <= m_uiMaxCUWidth)? 1 : 0);
372#endif
373}
374
375Bool confirmPara(Bool bflag, const char* message);
376
377Bool TAppEncLayerCfg::xCheckParameter( Bool isField )
378{
379  switch (m_conformanceMode)
380  {
381  case 0:
382    {
383      // no cropping or padding
384      m_confWinLeft = m_confWinRight = m_confWinTop = m_confWinBottom = 0;
385      m_aiPad[1] = m_aiPad[0] = 0;
386      break;
387    }
388  case 1:
389    {
390      // automatic padding to minimum CU size
391#if LAYER_CTB
392      Int minCuSize = m_uiMaxCUHeight >> (m_uiMaxCUDepth - 1);
393#else
394      Int minCuSize = m_cAppEncCfg->getMaxCUHeight() >> (m_cAppEncCfg->getMaxCUDepth() - 1);
395#endif
396      if (m_iSourceWidth % minCuSize)
397      {
398        m_aiPad[0] = m_confWinRight  = ((m_iSourceWidth / minCuSize) + 1) * minCuSize - m_iSourceWidth;
399        m_iSourceWidth  += m_confWinRight;
400#if REPN_FORMAT_IN_VPS
401        m_confWinRight /= TComSPS::getWinUnitX( m_chromaFormatIDC );
402#endif
403      }
404      if (m_iSourceHeight % minCuSize)
405      {
406        m_aiPad[1] = m_confWinBottom = ((m_iSourceHeight / minCuSize) + 1) * minCuSize - m_iSourceHeight;
407        m_iSourceHeight += m_confWinBottom;
408        if ( isField )
409        {
410          m_iSourceHeightOrg += m_confWinBottom << 1;
411          m_aiPad[1] = m_confWinBottom << 1;
412        }
413#if REPN_FORMAT_IN_VPS
414        m_confWinBottom /= TComSPS::getWinUnitY( m_chromaFormatIDC );
415#endif
416      }
417      break;
418    }
419  case 2:
420    {
421      //padding
422      m_iSourceWidth  += m_aiPad[0];
423      m_iSourceHeight += m_aiPad[1];
424      m_confWinRight  = m_aiPad[0];
425      m_confWinBottom = m_aiPad[1];
426#if REPN_FORMAT_IN_VPS
427      m_confWinRight /= TComSPS::getWinUnitX( m_chromaFormatIDC );
428      m_confWinBottom /= TComSPS::getWinUnitY( m_chromaFormatIDC );
429#endif
430      break;
431    }
432  case 3:
433    {
434      // conformance
435      if ((m_confWinLeft == 0) && (m_confWinRight == 0) && (m_confWinTop == 0) && (m_confWinBottom == 0))
436      {
437        fprintf(stderr, "Warning: Cropping enabled, but all cropping parameters set to zero\n");
438      }
439      if ((m_aiPad[1] != 0) || (m_aiPad[0]!=0))
440      {
441        fprintf(stderr, "Warning: Cropping enabled, padding parameters will be ignored\n");
442      }
443      m_aiPad[1] = m_aiPad[0] = 0;
444      break;
445    }
446  }
447
448  // allocate slice-based dQP values
449  Int iFrameToBeEncoded = m_cAppEncCfg->getNumFrameToBeEncoded();
450  Int iGOPSize = m_cAppEncCfg->getGOPSize();
451  if( m_aidQP == NULL )
452    m_aidQP = new Int[iFrameToBeEncoded + iGOPSize + 1 ];
453  ::memset( m_aidQP, 0, sizeof(Int)*( iFrameToBeEncoded + iGOPSize + 1 ) );
454
455  // handling of floating-point QP values
456  // if QP is not integer, sequence is split into two sections having QP and QP+1
457  m_iQP = (Int)( m_fQP );
458  if ( m_iQP < m_fQP )
459  {
460    Int iSwitchPOC = (Int)( iFrameToBeEncoded - (m_fQP - m_iQP)*iFrameToBeEncoded + 0.5 );
461
462
463    iSwitchPOC = (Int)( (Double)iSwitchPOC / iGOPSize + 0.5 )*iGOPSize;
464    for ( Int i=iSwitchPOC; i<iFrameToBeEncoded + iGOPSize + 1; i++ )
465    {
466      m_aidQP[i] = 1;
467    }
468  }
469
470#if LAYER_CTB
471  UInt maxCUWidth = m_uiMaxCUWidth;
472  UInt maxCUHeight = m_uiMaxCUHeight;
473  UInt maxCUDepth = m_uiMaxCUDepth;
474#else
475  UInt maxCUWidth = m_cAppEncCfg->getMaxCUWidth();
476  UInt maxCUHeight = m_cAppEncCfg->getMaxCUHeight();
477  UInt maxCUDepth = m_cAppEncCfg->getMaxCUDepth();
478#endif
479  bool check_failed = false; /* abort if there is a fatal configuration problem */
480#define xConfirmPara(a,b) check_failed |= confirmPara(a,b)
481  // check range of parameters
482  xConfirmPara( m_iFrameRate <= 0,                                                          "Frame rate must be more than 1" );
483  xConfirmPara( (m_iSourceWidth  % (maxCUWidth  >> (maxCUDepth-1)))!=0,             "Resulting coded frame width must be a multiple of the minimum CU size");
484  xConfirmPara( (m_iSourceHeight % (maxCUHeight >> (maxCUDepth-1)))!=0,             "Resulting coded frame height must be a multiple of the minimum CU size");
485  xConfirmPara( (m_iIntraPeriod > 0 && m_iIntraPeriod < iGOPSize) || m_iIntraPeriod == 0, "Intra period must be more than GOP size, or -1 , not 0" );
486  if (m_cAppEncCfg->getDecodingRefreshType() == 2)
487  {
488    xConfirmPara( m_iIntraPeriod > 0 && m_iIntraPeriod <= iGOPSize ,                      "Intra period must be larger than GOP size for periodic IDR pictures");
489  }
490
491#if O0194_DIFFERENT_BITDEPTH_EL_BL
492  xConfirmPara( m_iQP <  -6 * (m_internalBitDepth[CHANNEL_TYPE_LUMA] - 8) || m_iQP > 51,                "QP exceeds supported range (-QpBDOffsety to 51)" );
493#else
494  xConfirmPara( m_iQP <  -6 * ((Int)m_cAppEncCfg->getInternalBitDepthY() - 8) || m_iQP > 51,                "QP exceeds supported range (-QpBDOffsety to 51)" );
495#endif
496
497  m_iWaveFrontSubstreams = m_waveFrontSynchro ? (m_iSourceHeight + maxCUHeight - 1) / maxCUHeight : 1;
498  xConfirmPara( m_waveFrontSynchro < 0, "WaveFrontSynchro cannot be negative" );
499  xConfirmPara( m_iWaveFrontSubstreams <= 0, "WaveFrontSubstreams must be positive" );
500  xConfirmPara( m_iWaveFrontSubstreams > 1 && !m_waveFrontSynchro, "Must have WaveFrontSynchro > 0 in order to have WaveFrontSubstreams > 1" );
501
502  //chekc parameters
503  xConfirmPara( m_iSourceWidth  % TComSPS::getWinUnitX(CHROMA_420) != 0, "Picture width must be an integer multiple of the specified chroma subsampling");
504  xConfirmPara( m_iSourceHeight % TComSPS::getWinUnitY(CHROMA_420) != 0, "Picture height must be an integer multiple of the specified chroma subsampling");
505
506  xConfirmPara( m_aiPad[0] % TComSPS::getWinUnitX(CHROMA_420) != 0, "Horizontal padding must be an integer multiple of the specified chroma subsampling");
507  xConfirmPara( m_aiPad[1] % TComSPS::getWinUnitY(CHROMA_420) != 0, "Vertical padding must be an integer multiple of the specified chroma subsampling");
508
509#if !REPN_FORMAT_IN_VPS
510  xConfirmPara( m_confLeft   % TComSPS::getWinUnitX(CHROMA_420) != 0, "Left conformance window offset must be an integer multiple of the specified chroma subsampling");
511  xConfirmPara( m_confRight  % TComSPS::getWinUnitX(CHROMA_420) != 0, "Right conformance window offset must be an integer multiple of the specified chroma subsampling");
512  xConfirmPara( m_confTop    % TComSPS::getWinUnitY(CHROMA_420) != 0, "Top conformance window offset must be an integer multiple of the specified chroma subsampling");
513  xConfirmPara( m_confBottom % TComSPS::getWinUnitY(CHROMA_420) != 0, "Bottom conformance window offset must be an integer multiple of the specified chroma subsampling");
514#endif
515
516#if LAYER_CTB 
517  xConfirmPara( (m_uiMaxCUWidth  >> m_uiMaxCUDepth) < 4,                                    "Minimum partition width size should be larger than or equal to 8");
518  xConfirmPara( (m_uiMaxCUHeight >> m_uiMaxCUDepth) < 4,                                    "Minimum partition height size should be larger than or equal to 8");
519  xConfirmPara( m_uiMaxCUWidth < 16,                                                        "Maximum partition width size should be larger than or equal to 16");
520  xConfirmPara( m_uiMaxCUHeight < 16,                                                       "Maximum partition height size should be larger than or equal to 16");
521  xConfirmPara( m_uiQuadtreeTULog2MinSize < 2,                                        "QuadtreeTULog2MinSize must be 2 or greater.");
522  xConfirmPara( m_uiQuadtreeTULog2MaxSize > 5,                                        "QuadtreeTULog2MaxSize must be 5 or smaller.");
523  xConfirmPara( (1<<m_uiQuadtreeTULog2MaxSize) > m_uiMaxCUWidth,                                        "QuadtreeTULog2MaxSize must be log2(maxCUSize) or smaller.");
524  xConfirmPara( m_uiQuadtreeTULog2MaxSize < m_uiQuadtreeTULog2MinSize,                "QuadtreeTULog2MaxSize must be greater than or equal to m_uiQuadtreeTULog2MinSize.");
525  xConfirmPara( (1<<m_uiQuadtreeTULog2MinSize)>(m_uiMaxCUWidth >>(m_uiMaxCUDepth-1)), "QuadtreeTULog2MinSize must not be greater than minimum CU size" ); // HS
526  xConfirmPara( (1<<m_uiQuadtreeTULog2MinSize)>(m_uiMaxCUHeight>>(m_uiMaxCUDepth-1)), "QuadtreeTULog2MinSize must not be greater than minimum CU size" ); // HS
527  xConfirmPara( ( 1 << m_uiQuadtreeTULog2MinSize ) > ( m_uiMaxCUWidth  >> m_uiMaxCUDepth ), "Minimum CU width must be greater than minimum transform size." );
528  xConfirmPara( ( 1 << m_uiQuadtreeTULog2MinSize ) > ( m_uiMaxCUHeight >> m_uiMaxCUDepth ), "Minimum CU height must be greater than minimum transform size." );
529  xConfirmPara( m_uiQuadtreeTUMaxDepthInter < 1,                                                         "QuadtreeTUMaxDepthInter must be greater than or equal to 1" );
530  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" );
531  xConfirmPara( m_uiQuadtreeTUMaxDepthIntra < 1,                                                         "QuadtreeTUMaxDepthIntra must be greater than or equal to 1" );
532  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" );
533
534  // max CU width and height should be power of 2
535  UInt ui = m_uiMaxCUWidth;
536  while(ui)
537  {
538    ui >>= 1;
539    if( (ui & 1) == 1)
540      xConfirmPara( ui != 1 , "Width should be 2^n");
541  }
542  ui = m_uiMaxCUHeight;
543  while(ui)
544  {
545    ui >>= 1;
546    if( (ui & 1) == 1)
547      xConfirmPara( ui != 1 , "Height should be 2^n");
548  }
549#endif
550#if Q0074_COLOUR_REMAPPING_SEI
551  if ( ( m_colourRemapSEIFile.size() > 0 ) && !m_colourRemapSEICancelFlag )
552  {
553    xConfirmPara( m_colourRemapSEIInputBitDepth < 8 || m_colourRemapSEIInputBitDepth > 16 , "colour_remap_input_bit_depth shall be in the range of 8 to 16, inclusive");
554    xConfirmPara( m_colourRemapSEIBitDepth < 8 || m_colourRemapSEIBitDepth > 16, "colour_remap_bit_depth shall be in the range of 8 to 16, inclusive");
555    for( Int c=0 ; c<3 ; c++)
556    {
557      xConfirmPara( m_colourRemapSEIPreLutNumValMinus1[c] < 0 || m_colourRemapSEIPreLutNumValMinus1[c] > 32, "pre_lut_num_val_minus1[c] shall be in the range of 0 to 32, inclusive");
558      if( m_colourRemapSEIPreLutNumValMinus1[c]>0 )
559        for( Int i=0 ; i<=m_colourRemapSEIPreLutNumValMinus1[c] ; i++)
560        {
561          xConfirmPara( m_colourRemapSEIPreLutCodedValue[c][i] < 0 || m_colourRemapSEIPreLutCodedValue[c][i] > ((1<<m_colourRemapSEIInputBitDepth)-1), "pre_lut_coded_value[c][i] shall be in the range of 0 to (1<<colour_remap_input_bit_depth)-1, inclusive");
562          xConfirmPara( m_colourRemapSEIPreLutTargetValue[c][i] < 0 || m_colourRemapSEIPreLutTargetValue[c][i] > ((1<<m_colourRemapSEIBitDepth)-1), "pre_lut_target_value[c][i] shall be in the range of 0 to (1<<colour_remap_bit_depth)-1, inclusive");
563        }
564      xConfirmPara( m_colourRemapSEIPostLutNumValMinus1[c] < 0 || m_colourRemapSEIPostLutNumValMinus1[c] > 32, "post_lut_num_val_minus1[c] shall be in the range of 0 to 32, inclusive");
565      if( m_colourRemapSEIPostLutNumValMinus1[c]>0 )
566        for( Int i=0 ; i<=m_colourRemapSEIPostLutNumValMinus1[c] ; i++)
567        { 
568          xConfirmPara( m_colourRemapSEIPostLutCodedValue[c][i] < 0 || m_colourRemapSEIPostLutCodedValue[c][i] > ((1<<m_colourRemapSEIBitDepth)-1), "post_lut_coded_value[c][i] shall be in the range of 0 to (1<<colour_remap_bit_depth)-1, inclusive");
569          xConfirmPara( m_colourRemapSEIPostLutTargetValue[c][i] < 0 || m_colourRemapSEIPostLutTargetValue[c][i] > ((1<<m_colourRemapSEIBitDepth)-1), "post_lut_target_value[c][i] shall be in the range of 0 to (1<<colour_remap_bit_depth)-1, inclusive");
570        }
571    }
572    if( m_colourRemapSEIMatrixPresentFlag )
573    {
574      xConfirmPara( m_colourRemapSEILog2MatrixDenom < 0 || m_colourRemapSEILog2MatrixDenom > 15, "log2_matrix_denom shall be in the range of 0 to 15, inclusive");
575      for( Int c=0 ; c<3 ; c++)
576        for( Int i=0 ; i<3 ; i++)
577          xConfirmPara( m_colourRemapSEICoeffs[c][i] < -32768 || m_colourRemapSEICoeffs[c][i] > 32767, "colour_remap_coeffs[c][i] shall be in the range of -32768 and 32767, inclusive");
578    }
579  }
580#endif
581
582#undef xConfirmPara
583  return check_failed;
584}
585
586#endif //SVC_EXTENSION
587
588
589//! \}
Note: See TracBrowser for help on using the repository browser.