Ignore:
Timestamp:
27 Jan 2014, 06:48:42 (10 years ago)
Author:
mediatek-htm
Message:

Integration of CABAC simplification for IC flag in JCT3V-G0061. The MACRO is "MTK_IC_FLAG_CABAC_SIMP_G0061".

by Yi-Wen Chen (yiwen.chen@…)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-9.3-dev2-MediaTek/source/Lib/TLibEncoder/TEncSbac.cpp

    r790 r805  
    10181018  // get context function is here
    10191019  UInt uiSymbol = pcCU->getICFlag( uiAbsPartIdx ) ? 1 : 0;
     1020#if MTK_IC_FLAG_CABAC_SIMP_G0061
     1021  m_pcBinIf->encodeBin( uiSymbol, m_cCUICFlagSCModel.get( 0, 0, 0 ) );
     1022#else
    10201023  UInt uiCtxIC  = pcCU->getCtxICFlag( uiAbsPartIdx ) ;
    10211024  m_pcBinIf->encodeBin( uiSymbol, m_cCUICFlagSCModel.get( 0, 0, uiCtxIC ) );
     1025#endif
    10221026#if !H_MV_ENC_DEC_TRAC
    10231027  DTRACE_CABAC_VL( g_nSymbolCounter++ );
Note: See TracChangeset for help on using the changeset viewer.