Custom query (1557 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (52 - 54 of 1557)

Ticket Resolution Summary Owner Reporter
#57 fixed Inconsistent comparison of invalid motion vectors adamjw
Description

When comparing motion vectors in TComMotionInfo:

return ( m_acMv.getHor() == rcMv.getHor() && m_acMv.getVer() == rcMv.getVer() && m_iRefIdx == rcMv.getRefIdx() );

if the motion vector is invalid (e.g. refernce index is set to NOT_VALID), the vector components are still evaluated. That way, two invalid motion vectors, when compared, might be equal or unequal, depending on invalid (possibly uninitialized) vector component data.

Please find the attached fix.

#58 fixed issue on full size PERP coding rickxu
Description

When the coding face size is as the same with the input video size, the decoded YUV of PERP coded bitstream cannot be correctly visualized.

#60 fixed Missing split for the case TU_MAX_TR_SPLIT in IntraSearch::xEncCoeffQT tpoirier
Description

In xEncCoeffQT function, that estimates the cost of intra residual, the loop over inferred TU split for large blocks is missing. This leads to a wrong cost estimation for 128x128 Intra blocks. CTC are not impacted since LCTUFast parameter, that removes the testing of 128x128 Intra CU, is enabled. The following patch solve this issue.

Note: See TracQuery for help on using queries.