Opened 10 years ago Closed 9 years ago #98 closed defect (fixed)Disabling of depth intra skip
Description
The encoder writes the skip_intra_flag syntax element to the bitstream although SkipIntraEnabledFlag is equal to 0.
The bug might be fixed by the following replacement in TEncEntropy.cpp (untested):
Replace Void TEncEntropy::encodeDIS( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) { if ( !pcCU->getSlice()->getIsDepth() ) { return; }
with Void TEncEntropy::encodeDIS( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) { if( !pcCU->getSlice()->getDepthIntraSkipFlag() ) { return; } Change history (2)comment:1 Changed 10 years ago by DefaultCC Plugin
comment:2 Changed 9 years ago by tech
Note: See TracTickets for help on using tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|