Changeset 1487 in SHVCSoftware for branches/SHM-dev/source/App


Ignore:
Timestamp:
24 Nov 2015, 03:13:36 (9 years ago)
Author:
fujitsu
Message:

Added support of scalable range extension profiles. Also corrected few issues such as the confWindow wrong initialization. Code is controlled by the macro SCALABLE_REXT.

Location:
branches/SHM-dev/source/App/TAppEncoder
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp

    r1475 r1487  
    5757
    5858
    59 
     59#if !SCALABLE_REXT
    6060enum ExtendedProfileName // this is used for determining profile strings, where multiple profiles map to a single profile idc with various constraint flag combinations
    6161{
     
    7070  SCALABLEMAIN = 7,
    7171  SCALABLEMAIN10 = 8,
     72#if SCALABLE_REXT
     73  SCALABLEREXT = 10,
     74#endif
    7275#endif
    7376  // The following are RExt profiles, which would map to the MAINREXT profile idc.
     
    7578  //                           the chroma format in the next digit
    7679  //                           the intra constraint in the next digit
    77   //                           If it is a RExt still picture, there is a '1' for the top digit.
     80  //                           If it is a RExt still picture, there is a '1' for the next digit,
     81  //                           If it is a Scalable Rext profile, there is a '1' for the top digit.
    7882  MONOCHROME_8      = 1008,
    7983  MONOCHROME_12     = 1012,
     
    97101  MAIN_444_STILL_PICTURE = 11308,
    98102  MAIN_444_16_STILL_PICTURE = 12316
     103#if SCALABLE_REXT
     104  ,
     105  SCALABLE_MONOCHROME_8   = 101008,
     106  SCALABLE_MONOCHROME_12  = 101012,
     107  SCALABLE_MONOCHROME_16  = 101016,
     108  SCALABLE_MAIN_444       = 101308
     109#endif
    99110};
     111#endif
    100112
    101113
     
    257269  {"scalable-main",        Profile::SCALABLEMAIN       },
    258270  {"scalable-main10",      Profile::SCALABLEMAIN10     },
     271#if SCALABLE_REXT
     272  {"scalable-Rext",        Profile::SCALABLEREXT     },
     273#endif
    259274#endif
    260275};
     
    305320    {"scalable-main",             SCALABLEMAIN     },
    306321    {"scalable-main10",           SCALABLEMAIN10   },
     322#if SCALABLE_REXT
     323    {"scalable-monochrome",       SCALABLE_MONOCHROME_8   },
     324    {"scalable-monochrome12",     SCALABLE_MONOCHROME_12  },
     325    {"scalable-monochrome16",     SCALABLE_MONOCHROME_16  },
     326    {"scalable-main_444",         SCALABLE_MAIN_444       },
     327#endif
    307328#endif
    308329};
     
    10741095  ("OutputBitDepth%d",                               cfg_OutputBitDepth[CHANNEL_TYPE_LUMA],    0, m_numLayers, "Bit-depth of output file (default:InternalBitDepth)")
    10751096  ("InputBitDepthC%d",                               cfg_InputBitDepth[CHANNEL_TYPE_CHROMA],   0, m_numLayers, "As per InputBitDepth but for chroma component. (default:InputBitDepth) for layer %d")
    1076   ("InternalBitDepthC%d",                            cfg_InternalBitDepth[CHANNEL_TYPE_CHROMA],0, m_numLayers, "As per InternalBitDepth but for chroma component. (default:IntrenalBitDepth) for layer %d")
     1097  ("InternalBitDepthC%d",                            cfg_InternalBitDepth[CHANNEL_TYPE_CHROMA],0, m_numLayers, "As per InternalBitDepth but for chroma component. (default:InternalBitDepth) for layer %d")
    10771098  ("OutputBitDepthC%d",                              cfg_OutputBitDepth[CHANNEL_TYPE_CHROMA],  0, m_numLayers, "As per OutputBitDepth but for chroma component. (default:InternalBitDepthC)")
    10781099
     
    17911812 
    17921813#if SVC_EXTENSION
     1814#if SCALABLE_REXT
     1815  Int cfgTmpConstraintChromaFormat = tmpConstraintChromaFormat;
     1816#endif
    17931817  for( Int layer = 0; layer < m_numLayers; layer++ )
    17941818  {
     
    18541878      m_profileList[layerPTLIdx] = Profile::MAINREXT;           
    18551879
     1880#if SCALABLE_REXT
     1881      if(m_numLayers > 1 && layer == 0 )
     1882      {
     1883        m_profileList[0] = extendedToShortProfileName(extendedProfile[0]);
     1884      }
     1885
     1886      if( m_apcLayerCfg[layer]->m_bitDepthConstraint != 0 || cfgTmpConstraintChromaFormat != 0)
     1887#else
    18561888      if( m_apcLayerCfg[layer]->m_bitDepthConstraint != 0 || tmpConstraintChromaFormat != 0)
     1889#endif
    18571890      {
    18581891        fprintf(stderr, "Error: The bit depth and chroma format constraints are not used when an explicit RExt profile is specified\n");
     
    18691902      }
    18701903    }
     1904#if SCALABLE_REXT
     1905    else if(extendedProfile[layerPTLIdx] >= 101008 && extendedProfile[layerPTLIdx] <= 101308)
     1906    {
     1907      m_profileList[layerPTLIdx] = Profile::SCALABLEREXT;
     1908     
     1909      if( m_apcLayerCfg[layer]->m_bitDepthConstraint != 0 || cfgTmpConstraintChromaFormat != 0)
     1910      {
     1911        fprintf(stderr, "Error: The bit depth and chroma format constraints are not used when an explicit Scalabe-RExt profile is specified\n");
     1912        exit(EXIT_FAILURE);
     1913      }
     1914      m_apcLayerCfg[layer]->m_bitDepthConstraint  = (extendedProfile[layerPTLIdx]%100);
     1915      m_apcLayerCfg[layer]->m_intraConstraintFlag = 0; // no all-intra constraint for scalable-Rext profiles
     1916      switch ((extendedProfile[layerPTLIdx]/100)%10)
     1917      {
     1918        case 0:  tmpConstraintChromaFormat=400; break;
     1919        case 1:  tmpConstraintChromaFormat=420; break;
     1920        case 2:  tmpConstraintChromaFormat=422; break;
     1921        default: tmpConstraintChromaFormat=444; break;
     1922      }
     1923    }
     1924#endif
    18711925    else
    18721926    {
    18731927      if( layer == 0 )
    18741928      {
     1929#if SCALABLE_REXT
     1930        m_profileList[0] = extendedToShortProfileName(extendedProfile[0]);
     1931#else
    18751932        m_profileList[0] = Profile::Name(extendedProfile[0]);
     1933#endif
    18761934      }
    18771935
     
    18841942      m_apcLayerCfg[layer]->m_chromaFormatConstraint = (tmpConstraintChromaFormat == 0) ? CHROMA_444 : numberToChromaFormat(tmpConstraintChromaFormat);
    18851943    }
     1944#if SCALABLE_REXT
     1945    else if( m_profileList[layerPTLIdx] == Profile::MAINREXT || m_profileList[layerPTLIdx] == Profile::SCALABLEREXT )
     1946#else
    18861947    else if( m_profileList[layerPTLIdx] == Profile::MAINREXT )
     1948#endif
    18871949    {
    18881950      if( m_apcLayerCfg[layer]->m_bitDepthConstraint == 0 && tmpConstraintChromaFormat == 0 )
     
    19231985      m_apcLayerCfg[layer]->m_bitDepthConstraint = (m_profileList[layerPTLIdx] == Profile::MAIN10 || m_profileList[layerPTLIdx] == Profile::SCALABLEMAIN10) ? 10 : 8;
    19241986    }
     1987#if FORMATIDX_CHECK
     1988    for(Int compareLayer = layer+1; compareLayer < m_numLayers; compareLayer++ )
     1989    {
     1990      if(m_apcLayerCfg[layer]->m_repFormatIdx == m_apcLayerCfg[compareLayer]->m_repFormatIdx && (
     1991           m_apcLayerCfg[layer]->m_chromaFormatIDC != m_apcLayerCfg[compareLayer]->m_chromaFormatIDC
     1992           // separate_colour_plane_flag not supported yet but if supported insert check here
     1993           || m_apcLayerCfg[layer]->m_iSourceWidth != m_apcLayerCfg[compareLayer]->m_iSourceWidth
     1994           || m_apcLayerCfg[layer]->m_iSourceHeight != m_apcLayerCfg[compareLayer]->m_iSourceHeight
     1995           || m_apcLayerCfg[layer]->m_internalBitDepth != m_apcLayerCfg[compareLayer]->m_internalBitDepth
     1996           || m_apcLayerCfg[layer]->m_confWinLeft != m_apcLayerCfg[compareLayer]->m_confWinLeft
     1997           || m_apcLayerCfg[layer]->m_confWinRight != m_apcLayerCfg[compareLayer]->m_confWinRight
     1998           || m_apcLayerCfg[layer]->m_confWinTop != m_apcLayerCfg[compareLayer]->m_confWinTop
     1999           || m_apcLayerCfg[layer]->m_confWinBottom != m_apcLayerCfg[compareLayer]->m_confWinBottom
     2000        ))
     2001      {
     2002        fprintf(stderr, "Error: Two layers using the same FormatIdx value must share the same values of the related parameters\n");
     2003        exit(EXIT_FAILURE);
     2004      }
     2005    }
     2006#endif
    19252007  }
    19262008#else
     
    25582640    ChromaFormat& m_chromaFormatIDC = m_apcLayerCfg[layer]->m_chromaFormatIDC;
    25592641
     2642#if SCALABLE_REXT
     2643    Int& m_confWinLeft              = m_apcLayerCfg[layer]->m_confWinLeft;
     2644    Int& m_confWinRight             = m_apcLayerCfg[layer]->m_confWinRight;
     2645    Int& m_confWinTop               = m_apcLayerCfg[layer]->m_confWinTop;
     2646    Int& m_confWinBottom            = m_apcLayerCfg[layer]->m_confWinBottom;
     2647#else
    25602648    Int& m_confWinLeft              = m_apcLayerCfg[layer]->m_confWinLeft;
    25612649    Int& m_confWinRight             = m_apcLayerCfg[layer]->m_confWinLeft;
    25622650    Int& m_confWinTop               = m_apcLayerCfg[layer]->m_confWinLeft;
    25632651    Int& m_confWinBottom            = m_apcLayerCfg[layer]->m_confWinLeft;
     2652#endif
    25642653    Int* m_aiPad                    = m_apcLayerCfg[layer]->m_aiPad;
    25652654    Int* m_aidQP                    = m_apcLayerCfg[layer]->m_aidQP;
     
    31103199  xConfirmPara(m_chromaFormatConstraint<m_chromaFormatIDC, "The chroma format used must not be greater than the chromaFormatConstraint value");
    31113200
     3201#if SCALABLE_REXT
     3202  if (m_profile==Profile::MAINREXT || m_profile==Profile::HIGHTHROUGHPUTREXT || m_profile==Profile::SCALABLEREXT)
     3203#else
    31123204  if (m_profile==Profile::MAINREXT || m_profile==Profile::HIGHTHROUGHPUTREXT)
     3205#endif
    31133206  {
    31143207    xConfirmPara(m_lowerBitRateConstraintFlag==false && m_intraConstraintFlag==false, "The lowerBitRateConstraint flag cannot be false when intraConstraintFlag is false");
    31153208    xConfirmPara(m_cabacBypassAlignmentEnabledFlag && m_profile!=Profile::HIGHTHROUGHPUTREXT, "AlignCABACBeforeBypass must not be enabled unless the high throughput profile is being used.");
     3209#if SCALABLE_REXT
     3210    if (m_profile == Profile::MAINREXT || m_profile==Profile::SCALABLEREXT)
     3211#else
    31163212    if (m_profile == Profile::MAINREXT)
     3213#endif
    31173214    {
    31183215      const UInt intraIdx = m_intraConstraintFlag ? 1:0;
     
    31623259    xConfirmPara(m_bitDepthConstraint!=((m_profile==Profile::MAIN10)?10:8), "BitDepthConstraint must be 8 for MAIN profile and 10 for MAIN10 profile.");
    31633260#endif
     3261#if SCALABLE_REXT // changes below are only about displayed text
     3262    xConfirmPara(m_chromaFormatConstraint!=CHROMA_420, "ChromaFormatConstraint must be 420 for non main-RExt and non scalable-Rext profiles.");
     3263    xConfirmPara(m_intraConstraintFlag==true, "IntraConstraintFlag must be false for non main_RExt and non scalable-Rext profiles.");
     3264    xConfirmPara(m_lowerBitRateConstraintFlag==false, "LowerBitrateConstraintFlag must be true for non main-RExt and non scalable-Rext profiles.");
     3265    xConfirmPara(m_profile == Profile::MAINSTILLPICTURE && m_framesToBeEncoded > 1, "Number of frames to be encoded must be 1 when main still picture profile is used.");
     3266
     3267    xConfirmPara(m_crossComponentPredictionEnabledFlag==true, "CrossComponentPrediction must not be used for non main-RExt and non scalable-Rext profiles.");
     3268    xConfirmPara(m_log2MaxTransformSkipBlockSize!=2, "Transform Skip Log2 Max Size must be 2 for V1 profiles.");
     3269    xConfirmPara(m_transformSkipRotationEnabledFlag==true, "UseResidualRotation must not be enabled for non main-RExt and non scalable-Rext profiles.");
     3270    xConfirmPara(m_transformSkipContextEnabledFlag==true, "UseSingleSignificanceMapContext must not be enabled for non main-RExt nand on scalable-Rext profiles.");
     3271    xConfirmPara(m_rdpcmEnabledFlag[RDPCM_SIGNAL_IMPLICIT]==true, "ImplicitResidualDPCM must not be enabled for non main-RExt and non scalable-Rext profiles.");
     3272    xConfirmPara(m_rdpcmEnabledFlag[RDPCM_SIGNAL_EXPLICIT]==true, "ExplicitResidualDPCM must not be enabled for non main-RExt and non scalable-Rext profiles.");
     3273    xConfirmPara(m_persistentRiceAdaptationEnabledFlag==true, "GolombRiceParameterAdaption must not be enabled for non main-RExt and non scalable-Rext profiles.");
     3274    xConfirmPara(m_extendedPrecisionProcessingFlag==true, "UseExtendedPrecision must not be enabled for non main-RExt and non scalable-Rext profiles.");
     3275    xConfirmPara(m_highPrecisionOffsetsEnabledFlag==true, "UseHighPrecisionPredictionWeighting must not be enabled for non main-RExt and non scalable-Rext profiles.");
     3276    xConfirmPara(m_enableIntraReferenceSmoothing==false, "EnableIntraReferenceSmoothing must be enabled for non main-RExt and non scalable-Rext profiles.");
     3277    xConfirmPara(m_cabacBypassAlignmentEnabledFlag, "AlignCABACBeforeBypass cannot be enabled for non main-RExt and non scalable-Rext profiles.");
     3278#else
    31643279    xConfirmPara(m_chromaFormatConstraint!=CHROMA_420, "ChromaFormatConstraint must be 420 for non main-RExt profiles.");
    31653280    xConfirmPara(m_intraConstraintFlag==true, "IntraConstraintFlag must be false for non main_RExt profiles.");
     
    31783293    xConfirmPara(m_enableIntraReferenceSmoothing==false, "EnableIntraReferenceSmoothing must be enabled for non main-RExt profiles.");
    31793294    xConfirmPara(m_cabacBypassAlignmentEnabledFlag, "AlignCABACBeforeBypass cannot be enabled for non main-RExt profiles.");
     3295#endif
    31803296  }
    31813297
     
    40294145    UInt& m_uiMaxCUDepth                   = m_apcLayerCfg[layerIdx]->m_uiMaxCUDepth;
    40304146
     4147#if SCALABLE_REXT
     4148    Int& m_confWinLeft                     = m_apcLayerCfg[layerIdx]->m_confWinLeft;
     4149    Int& m_confWinRight                    = m_apcLayerCfg[layerIdx]->m_confWinRight;
     4150    Int& m_confWinTop                      = m_apcLayerCfg[layerIdx]->m_confWinTop;
     4151    Int& m_confWinBottom                   = m_apcLayerCfg[layerIdx]->m_confWinBottom;
     4152#else
    40314153    Int& m_confWinLeft                     = m_apcLayerCfg[layerIdx]->m_confWinLeft;
    40324154    Int& m_confWinRight                    = m_apcLayerCfg[layerIdx]->m_confWinLeft;
    40334155    Int& m_confWinTop                      = m_apcLayerCfg[layerIdx]->m_confWinLeft;
    40344156    Int& m_confWinBottom                   = m_apcLayerCfg[layerIdx]->m_confWinLeft;
     4157#endif
    40354158
    40364159    Int& m_iSourceWidth                    = m_apcLayerCfg[layerIdx]->m_iSourceWidth;
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.h

    r1475 r1487  
    4949//! \ingroup TAppEncoder
    5050//! \{
     51
     52#if SCALABLE_REXT
     53enum ExtendedProfileName // this is used for determining profile strings, where multiple profiles map to a single profile idc with various constraint flag combinations
     54{
     55  NONE = 0,
     56  MAIN = 1,
     57  MAIN10 = 2,
     58  MAINSTILLPICTURE = 3,
     59  MAINREXT = 4,
     60  HIGHTHROUGHPUTREXT = 5, // Placeholder profile for development
     61#if SVC_EXTENSION
     62  MULTIVIEWMAIN = 6,
     63  SCALABLEMAIN = 7,
     64  SCALABLEMAIN10 = 8,
     65#if SCALABLE_REXT
     66  SCALABLEREXT = 10,
     67#endif
     68#endif
     69  // The following are RExt profiles, which would map to the MAINREXT profile idc.
     70  // The enumeration indicates the bit-depth constraint in the bottom 2 digits
     71  //                           the chroma format in the next digit
     72  //                           the intra constraint in the next digit
     73  //                           If it is a RExt still picture, there is a '1' for the next digit,
     74  //                           If it is a Scalable Rext profile, there is a '1' for the top digit.
     75  MONOCHROME_8      = 1008,
     76  MONOCHROME_12     = 1012,
     77  MONOCHROME_16     = 1016,
     78  MAIN_12           = 1112,
     79  MAIN_422_10       = 1210,
     80  MAIN_422_12       = 1212,
     81  MAIN_444          = 1308,
     82  MAIN_444_10       = 1310,
     83  MAIN_444_12       = 1312,
     84  MAIN_444_16       = 1316, // non-standard profile definition, used for development purposes
     85  MAIN_INTRA        = 2108,
     86  MAIN_10_INTRA     = 2110,
     87  MAIN_12_INTRA     = 2112,
     88  MAIN_422_10_INTRA = 2210,
     89  MAIN_422_12_INTRA = 2212,
     90  MAIN_444_INTRA    = 2308,
     91  MAIN_444_10_INTRA = 2310,
     92  MAIN_444_12_INTRA = 2312,
     93  MAIN_444_16_INTRA = 2316,
     94  MAIN_444_STILL_PICTURE = 11308,
     95  MAIN_444_16_STILL_PICTURE = 12316
     96#if SCALABLE_REXT
     97  ,
     98  SCALABLE_MONOCHROME_8   = 101008,
     99  SCALABLE_MONOCHROME_12  = 101012,
     100  SCALABLE_MONOCHROME_16  = 101016,
     101  SCALABLE_MAIN_444       = 101308
     102#endif
     103};
     104#endif
    51105
    52106// ====================================================================================================================
     
    583637  Bool scanStringToArrayNumEntries(string const cfgString, Int &numEntries, const char* logString, std::vector<Int> &  returnVector);
    584638  Void cfgStringToArrayNumEntries(Int **arr, string const cfgString, Int &numEntries, const char* logString);
     639
     640#if SCALABLE_REXT
     641  Profile::Name extendedToShortProfileName(ExtendedProfileName uiExtendedProfileName)
     642  {
     643    if(uiExtendedProfileName < MONOCHROME_8)
     644    {
     645      return Profile::Name(uiExtendedProfileName);
     646    }
     647    else if(uiExtendedProfileName < SCALABLE_MONOCHROME_8)
     648    {
     649      return Profile::MAINREXT;
     650    }
     651    else
     652    {
     653      return Profile::SCALABLEREXT;
     654    }
     655  }
     656#endif
    585657#endif
    586658};// END CLASS DEFINITION TAppEncCfg
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncLayerCfg.cpp

    r1460 r1487  
    5050  ::memset(m_phaseHorChroma, 0, sizeof(m_phaseHorChroma));
    5151  ::memset(m_phaseVerChroma, 0, sizeof(m_phaseVerChroma));
     52#if SCALABLE_REXT
     53  // variables uninitialized otherwise
     54  m_intraConstraintFlag = false;
     55  m_lowerBitRateConstraintFlag = false;
     56  m_onePictureOnlyConstraintFlag = false;
     57#endif
    5258}
    5359
Note: See TracChangeset for help on using the changeset viewer.