Changeset 1317 in SHVCSoftware
- Timestamp:
- 21 Jul 2015, 20:13:37 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibEncoder/TEncSearch.cpp
r1316 r1317 5330 5330 if( uiLog2TrSize <= pcCU->getSlice()->getSPS()->getQuadtreeTULog2MaxSize() && uiLog2TrSize > pcCU->getQuadtreeTULog2MinSizeInCU(uiAbsPartIdx) ) 5331 5331 { 5332 m_pcEntropyCoder->encodeTransformSubdivFlag( bSubdiv, 5 - uiLog2TrSize ); 5332 if((pcCU->getSlice()->getSPS()->getQuadtreeTUMaxDepthInter() == 1) && (pcCU->getPartitionSize(uiAbsPartIdx) != SIZE_2Nx2N)) 5333 { 5334 assert(bSubdiv); // Inferred splitting rule - see derivation and use of interSplitFlag in the specification. 5335 } 5336 else 5337 { 5338 m_pcEntropyCoder->encodeTransformSubdivFlag( bSubdiv, 5 - uiLog2TrSize ); 5339 } 5333 5340 } 5334 5341
Note: See TracChangeset for help on using the changeset viewer.