Changeset 903 in 3DVCSoftware for branches/HTM-10.2-dev3-MediaTek
- Timestamp:
- 9 Apr 2014, 09:58:08 (11 years ago)
- Location:
- branches/HTM-10.2-dev3-MediaTek
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-10.2-dev3-MediaTek/source/Lib/TLibCommon/TypeDef.h
r902 r903 198 198 // HS_TSINGHUA_SDC_SPLIT_G0111 199 199 // QC_PKU_SDC_SPLIT_G0123 Intra SDC Split 200 200 #define MTK_DELTA_DC_FLAG_ONE_CONTEXT_H0084_H0100_H0113 1 // Use only one context for CABAC of delta_dc_flag as in JCTVC-H0084, JCTVC-H0100 and JCTVC-H0113 201 201 202 202 -
branches/HTM-10.2-dev3-MediaTek/source/Lib/TLibDecoder/TDecSbac.cpp
r884 r903 2068 2068 UInt dir = pcCU->getLumaIntraDir( absPartIdx ); 2069 2069 uiNumSegments = isDimMode( dir ) ? 2 : 1; 2070 2070 #if MTK_DELTA_DC_FLAG_ONE_CONTEXT_H0084_H0100_H0113 2071 m_pcTDecBinIf->decodeBin( symbol, m_cDdcFlagSCModel.get( 0, 0, 0 ) ); 2072 #else 2071 2073 m_pcTDecBinIf->decodeBin( symbol, m_cDdcFlagSCModel.get( 0, 0, uiNumSegments-1 ) ); 2072 2074 #endif 2073 2075 if( pcCU->getSDCFlag( absPartIdx ) ) 2074 2076 { -
branches/HTM-10.2-dev3-MediaTek/source/Lib/TLibEncoder/TEncSbac.cpp
r884 r903 2313 2313 dimDeltaDC = isDimDeltaDC( dir ); 2314 2314 } 2315 2315 #if MTK_DELTA_DC_FLAG_ONE_CONTEXT_H0084_H0100_H0113 2316 m_pcBinIf->encodeBin( dimDeltaDC, m_cDdcFlagSCModel.get( 0, 0, 0 ) ); 2317 #else 2316 2318 m_pcBinIf->encodeBin( dimDeltaDC, m_cDdcFlagSCModel.get( 0, 0, uiNumSegments-1 ) ); 2319 #endif 2317 2320 } 2318 2321 else //all-zero inter SDC is not allowed
Note: See TracChangeset for help on using the changeset viewer.