Opened 10 years ago Closed 10 years ago #73 closed defect (fixed)A text bug for the post filtering of DBBP
Description
The current 3D-HEVC text specifies following post filtering conditions for DBBP
if( ( tFlag | | cFlag | | bFlag ) && ( !tFlag | | !cFlag | | !bFlag ) )
However, the condition in "if" is opposite to the HTM11.0. It should be changed to
if( !(( tFlag | | cFlag | | bFlag ) && ( !tFlag | | !cFlag | | !bFlag) ) )
In further, because the condition in "if" can be simplified, I suggest it is changed to
if( lFlag != cFlag | | cFlag != rFlag )
if( tFlag != cFlag | | cFlag != bFlag )
Change history (3)comment:1 Changed 10 years ago by DefaultCC Plugin
comment:2 Changed 10 years ago by tech
comment:3 Changed 10 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
|