Custom query (96 matches)
Results (1 - 3 of 96)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#7 | fixed | DDV from MCP blocks results in two equal disparity vectors | NBDV | tech |
Description |
Related to JCT3V-A0126 There is some redundancy in draft and software since ivpMvDispLX is derived for each list, although it is always equal for both lists. |
|||
#73 | fixed | A text bug for the post filtering of DBBP | Xianguo Zhang | zxgvideo |
Description |
The current 3D-HEVC text specifies following post filtering conditions for DBBP if( ( lFlag | | cFlag | | rFlag ) && ( !lFlag | | !cFlag | | !rFlag ) )
if( ( tFlag | | cFlag | | bFlag ) && ( !tFlag | | !cFlag | | !bFlag ) )
However, the condition in "if" is opposite to the HTM11.0. It should be changed to if( !(( lFlag | | cFlag | | rFlag ) && ( !lFlag | | !cFlag | | !rFlag ) ) )
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 )
|
|||
#1 | fixed | Wedgelet pattern generation process int/float mismatch | tech | tech |
Description |
Introduced by m22570: Mismatch with software related to floating point /integer aritmetics in wedgelet pattern generation process. It is preferred to have integer arithmetics in the software. |