Ignore:
Timestamp:
26 Oct 2015, 14:16:11 (9 years ago)
Author:
tech
Message:
  • Clean-up.
  • Fix NH_3D_FIX_NBDV_COL.
Location:
branches/HTM-15.1-dev0-NICT/source/Lib/TLibCommon
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-15.1-dev0-NICT/source/Lib/TLibCommon/SEI.cpp

    r1354 r1355  
    14741474  xAddGeneralOpts( opts , defAppLayerIds, defAppPocs, defAppTids, defAppVclNaluTypes, defSeiNaluId, defPositionInSeiNalu, defModifyByEncoder );
    14751475
    1476   // 3 = m_numConstituentViewsGvdMinus1 + 2
    14771476  opts.addOptions()
    14781477    ("AlternativeDepthInfoCancelFlag" , m_alternativeDepthInfoCancelFlag  , false               , "AlternativeDepthInfoCancelFlag"  )
     
    16181617};
    16191618
    1620 /*
    1621 UInt SEIAlternativeDepthInfo::getManGvdRLen                  ( Int i, int j, int k ) const
    1622 {
    1623   UInt rval;
    1624   rval = xGetSyntaxElementLen( m_expGvdR[i][j][k], m_precGvdRotationParam, m_manGvdR[i][j][k] );
    1625   if (rval == 0)
    1626     return m_precGvdRotationParam;
    1627   else
    1628     return rval;
    1629 };
    1630 */
    1631 
    16321619UInt SEIAlternativeDepthInfo::getManGvdTXLen                 ( Int i, int j ) const
    16331620{
     
    16521639  }
    16531640
    1654 #if DEBUG_NH_3D_SEI
    1655   printf("DEBUG: SEIAlternativeDepthInfo::xGetSyntaxElementLen(): val: %d, len %u\n", val, len);
    1656 #endif
    16571641  assert( val >= 0 );
    16581642  assert( val <= ( ( 1 << len )- 1) );
  • branches/HTM-15.1-dev0-NICT/source/Lib/TLibCommon/TComDataCU.cpp

    r1321 r1355  
    54665466    }
    54675467
     5468#if NH_3D_FIX_NBDV_COL
     5469    // The picture pColCU->getSlice()->getRefPic(eColRefPicList, iColRefIdx) might not be in DPB anymore
     5470    // So don't access it directly.
     5471    iColRefViewIdx = pColCU->getSlice()->getVPS()->getViewOrderIdx( pColCU->getSlice()->getRefLayerId( eColRefPicList, iColRefIdx ) );       
     5472#else
    54685473    iColRefViewIdx = pColCU->getSlice()->getRefPic(eColRefPicList, iColRefIdx)->getViewIndex();
     5474#endif
     5475
    54695476
    54705477    if ( iColViewIdx    == iColRefViewIdx ) // temporal vector
  • branches/HTM-15.1-dev0-NICT/source/Lib/TLibCommon/TComRom.cpp

    r1344 r1355  
    537537const Bool g_bEncDecTraceEnable  = true;
    538538const Bool g_bEncDecTraceDisable = false;
    539 Bool   g_HLSTraceEnable = true;
     539Bool   g_HLSTraceEnable = false;
    540540Bool   g_bJustDoIt = false;
    541541UInt64 g_nSymbolCounter = 0;
     
    544544Bool g_tracePU = false;
    545545Bool g_traceTU = false;
    546 Bool g_disableNumbering = true;
     546Bool g_disableNumbering = false;
    547547Bool g_disableHLSTrace = false;
    548548UInt64 g_stopAtCounter       = 4660;
  • branches/HTM-15.1-dev0-NICT/source/Lib/TLibCommon/TypeDef.h

    r1349 r1355  
    7777#if NH_3D
    7878#define H_3D_FIX_ARP_CHECK_NOT_IN_DPB     1
     79#define NH_3D_FIX_NBDV_COL                1
    7980#endif
    8081/////////////////////////////////////////////////////////////////////////////////////////
     
    359360#define RExt__DECODER_DEBUG_BIT_STATISTICS                0 ///< 0 (default) = decoder reports as normal, 1 = decoder produces bit usage statistics (will impact decoder run time by up to ~10%)
    360361#endif
    361 #if NH_3D
    362 #define DEBUG_NH_3D_SEI                                   0 ///< When enabled, prints out SEI values
    363 #endif
    364362// This can be enabled by the makefile
    365363#if !NH_MV
Note: See TracChangeset for help on using the changeset viewer.