Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (58 - 60 of 96)

Ticket Resolution Summary Owner Reporter
#65 fixed 3D-HEVC texture only coding tech kwegner
Description

Current HTM 11.0 don't work under texture only encoding.

In MvpCandNBDV handle following assertion need to be removed

picDepth = getSlice()->getIvPic( true, iTargetViewIdx ); assert(picDepth != NULL); FixFix no depth map is coded in texture only coding

if (picDepth && bDepthRefine)

estimateDVFromDM(iTargetViewIdx, uiPartIdx, picDepth, uiPartAddr, &cColMv );

#67 fixed Redundant DBBP flag setting for 2NxN parition tech jicheng
Description

In the function parseDBBPFlag() of HTM11.0, the following code

#if MTK_DIS_SPBIP8X4_H0205
    UInt uiCurrPartNumQ = (pcCU->getPic()->getNumPartInCU() >> (2 * uiDepth)) >> 2;
    pcCU->setDBBPFlagSubParts(true, uiAbsPartIdx + 2*uiCurrPartNumQ, 1, uiDepth);
#endif

is originally intended to set the DBBP flag for the 2nd part of the 2NxN PU.

However, currently the DBBP flag is set outside of this function for all kinds of paritions. Therefore, the above code is redundant.

In addition, if the macro RWTH_DBBP_PACK_MODE is not 2NxN (encoder issue, since for DBBP mode, there is no restriction for partition size), the above code may set the wrong DBBP flag. Therefore, the above code should be removed. There will be no performance impact for CTC.

#68 fixed MV clipping bug in the sub-PU MPI default MV generation tech jicheng
Description

In HTM11, there is a MV clipping operation in the sub-PU MPI default MV generation, which is obviously a bug and should be removed to align with the WD. (This kind of bug was previously solved by NTT_BUG_FIX_TK54, but here it is introduced again by MPI_SUBPU_DEFAULT_MV_H0077_H0099_H0111_H0133.)

In TComDataCU.cpp, line 4499, the following coded should be removed:

clipMv( cMv );
Note: See TracQuery for help on using queries.