Changeset 201 in 3DVCSoftware for branches/HTM-5.0-Nokia/source/App/TAppEncoder


Ignore:
Timestamp:
4 Dec 2012, 23:29:29 (12 years ago)
Author:
nokia
Message:
  1. Recommended coding style changes
  2. Disabling Compile flags:

#define QC_IV_AS_LT_B0046 0
#define QC_TMVP_IDX_MOD_B0046 0
#define QC_REM_IDV_B0046 0
#define FIX_DEL_NULLPTR 0

Location:
branches/HTM-5.0-Nokia/source/App/TAppEncoder
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-5.0-Nokia/source/App/TAppEncoder/TAppEncCfg.cpp

    r200 r201  
    112112    free (m_pchBitstreamFile) ;
    113113
    114 #if FLEX_CODING_ORDER
     114#if FLEX_CODING_ORDER_M23723
    115115  if (m_pchMVCJointCodingOrder != NULL)
    116116  {
     
    212212  string cfg_ScalingListFile;
    213213
    214  #if FLEX_CODING_ORDER
     214 #if FLEX_CODING_ORDER_M23723
    215215  string cfg_JointCodingOrdering;
    216216#endif
     
    260260  ("NumberOfViews",         m_iNumberOfViews,    0, "Number of views")
    261261
    262 #if FLEX_CODING_ORDER
     262#if FLEX_CODING_ORDER_M23723
    263263  ("FCO",               m_b3DVFlexOrder,   false, "flexible coding order flag" )
    264264  ("FCOCodingOrder",   cfg_JointCodingOrdering,  string(""), "The coding order for joint texture-depth coding")
     
    553553  m_pchdQPFile = cfg_dQPFile.empty() ? NULL : strdup(cfg_dQPFile.c_str());
    554554 
    555 #if FLEX_CODING_ORDER
     555#if FLEX_CODING_ORDER_M23723
    556556  m_pchMVCJointCodingOrder= cfg_JointCodingOrdering.empty()?NULL:strdup(cfg_JointCodingOrdering.c_str());
    557557  // If flexible order is enabled and if depth comes before the texture for a view, disable VSO
     
    18261826  printf("TMVP:%d ", (m_enableTMVP[1] ? 1 : 0) );
    18271827#endif
     1828
     1829#if FLEX_CODING_ORDER_M23723
     1830  printf("FCO:%d ",   (m_b3DVFlexOrder ? 1: 0));
     1831
     1832  if(m_b3DVFlexOrder)
     1833  {
     1834    printf("CodingOrder: %s ", m_pchMVCJointCodingOrder);
     1835  }
     1836#endif
     1837
    18281838#if HHI_VSO
    18291839  printf("VSO:%d ", m_bUseVSO             );
  • branches/HTM-5.0-Nokia/source/App/TAppEncoder/TAppEncCfg.h

    r200 r201  
    8989  Bool      m_bUsingDepthMaps;
    9090 
    91 #if FLEX_CODING_ORDER
     91#if FLEX_CODING_ORDER_M23723
    9292  char*  m_pchMVCJointCodingOrder;      ///<  texture-depth coding order
    9393  Bool    m_b3DVFlexOrder;    ///<  flexible coding order flag
  • branches/HTM-5.0-Nokia/source/App/TAppEncoder/TAppEncTop.cpp

    r200 r201  
    401401    {
    402402
    403 #if FLEX_CODING_ORDER
     403#if FLEX_CODING_ORDER_M23723
    404404      // Detect whether depth comes before than texture for this view
    405405      Bool isDepthFirst = false;
     
    708708#endif
    709709
    710 #if FLEX_CODING_ORDER && HHI_DMM_PRED_TEX
     710#if FLEX_CODING_ORDER_M23723 && HHI_DMM_PRED_TEX
    711711    m_acTEncDepthTopList[iViewIdx]->setUseDMM34( (m_b3DVFlexOrder && isDepthFirst) ? false : m_bUseDMM );
    712712#endif
     
    717717
    718718#if HHI_MPI
    719 #if FLEX_CODING_ORDER
     719#if FLEX_CODING_ORDER_M23723
    720720    m_acTEncDepthTopList[iViewIdx]->setUseMVI( (m_b3DVFlexOrder && isDepthFirst) ? false : m_bUseMVI );
    721721#else
     
    10411041#endif
    10421042
    1043 #if FLEX_CODING_ORDER
     1043#if FLEX_CODING_ORDER_M23723
    10441044      if (m_b3DVFlexOrder)
    10451045      {
     
    11221122      }
    11231123 
    1124 #if FLEX_CODING_ORDER
     1124#if FLEX_CODING_ORDER_M23723
    11251125      }
    11261126#endif
Note: See TracChangeset for help on using the changeset viewer.