Ignore:
Timestamp:
17 Jul 2015, 16:59:43 (9 years ago)
Author:
tech
Message:
  • Preliminary fix for pruning.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-14.1-update-dev2/source/Lib/TLibCommon/TComRom.cpp

    r1277 r1280  
    555555const Bool g_bEncDecTraceEnable  = true;
    556556const Bool g_bEncDecTraceDisable = false;
    557 Bool   g_HLSTraceEnable = false;
     557Bool   g_HLSTraceEnable = true;
    558558Bool   g_bJustDoIt = false;
    559559UInt64 g_nSymbolCounter = 0;
    560560#if H_MV_ENC_DEC_TRAC
    561 Bool g_traceCU = false;
    562 Bool g_tracePU = false;
    563 Bool g_traceTU = false;
     561Bool g_traceCU = true;
     562Bool g_tracePU = true;
     563Bool g_traceTU = true;
    564564Bool g_disableNumbering = false;
    565565Bool g_disableHLSTrace = false;
     
    569569Bool g_decTraceMvFromMerge   = false;
    570570Bool g_decTracePicOutput     = false;
    571 Bool g_stopAtPos             = false;
     571Bool g_stopAtPos             = true;
    572572Bool g_outputPos             = false;   
    573573Bool g_traceCameraParameters = false;
     
    704704  }
    705705  Bool stopFlag = false;
    706   if ( g_stopAtPos && poc == 16 && layerId == 1 )
     706  if ( g_stopAtPos && poc == 6 && layerId == 2 )
    707707  {
    708708    Bool stopAtCU = true;
    709709    if ( stopAtCU )        // Stop at CU with specific size
    710710    {   
    711       stopFlag = ( cuPelX  == 0 ) && ( cuPelY  == 0 ) && ( cuWidth == 32 ) && ( cuHeight == 32 );
     711      stopFlag = ( cuPelX  == 128 ) && ( cuPelY  == 160 ) && ( cuWidth == 32 ) && ( cuHeight == 32 );
    712712    }
    713713    else
Note: See TracChangeset for help on using the changeset viewer.