Opened 10 years ago Closed 10 years ago #75 closed defect (fixed)Discrepancy in VSP bi-pred handling
Description
There seems to be a discrepancy between spec and software. The spec reads that bipred prevention is applied regardless of VSP flag:
refIdxL1 = −1 (I 112)
However, the software (in TDecEntropy.cpp and TEncSearch.cpp)disbles it in the case VSP flag is true as follows.
->getVSPFlag(uiSubPartIdx) == 0))
#endif
We should remove it (spec should be right).
In CTC and IBP(with MTK_I0072_IVARP_SCALING_FIX) experiment, there are no differences by this fix. No change is quite natural because VSP PU cannot be bi-prediction in the current specification. If looking at predFlagLXVSP setting logic(See I.8.5.3.2.13 Derivation process for a view synthesis prediction merge candidate), when predFlagL0VSP is 1, predFlagL1VSP cannot be 1. When predFlagL0VSP is 0, the PU is not bi-prediction. The same logic is applied in VSP inhericance case.
Lastly, even if VSP was able to be bi-prediction, we should prevent 8x4/4x8 bipred in VSP as well to preserve motion data storing implemenation. Attachments (1)Change history (8)comment:1 Changed 10 years ago by DefaultCC Plugin
comment:2 in reply to: ↑ description Changed 10 years ago by jichengcomment:3 Changed 10 years ago by Tomohiro Ikai
Thanks for your comment. Correct, xAddVspCand() follows specification. So the reported part doesn't change the results but just just brings confusions. Thus clean up (removing) is appreciated. comment:4 Changed 10 years ago by tech
Could you exactly specify which parts should be removed? comment:5 Changed 10 years ago by tech
Changed 10 years ago by Tomohiro Ikaicomment:6 Changed 10 years ago by Tomohiro Ikai
OK, the patch was attached. comment:7 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
|
Replying to Tomohiro Ikai:
In software, in xAddVspCand() function, the VSP prediction list has already been set so that the bi-prediction never happens. Therefore, your proposed software change doesn't impact any results.