Custom Query (1442 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (70 - 72 of 1442)

Ticket Resolution Summary Owner Reporter
#1411 fixed Condition in IBC MV parsing Vadim
Description

Current picture can be inserted into both RefPicList0 and RefPicList1, so during MV reconstruction, condition eRefList == REF_PIC_LIST_0 has to be removed in TDecEntropy::decodeMVPIdxPU.

if( pcSubCU->getSlice()->getUseIntegerMv() || ( (eRefList == REF_PIC_LIST_0) && (pcSubCU->getSlice()->getRefPic( eRefList, iRefIdx )->getPOC() == pcSubCU->getSlice()->getPOC()) ) )
#1410 fixed Memory leak in TEncGOP::xCreatePictureTimingSEI Vadim
Description
SEIPictureTiming *pictureTimingSEI = new SEIPictureTiming();

The object is created, however it is used conditionally later on, so then condition is false memory seems not freed.

Attached patch may solve the problem.

#1409 wontfix TComScalingList improvement kolya
Description

Dear colleagues, me faced with the need to re-use code of TComScalingList class and me found that some of its methods like getScalingListAddress return a pointer to the first element in a vector. But all they fail when size of an arranged vector is zero. In other words, one cannot use these methods without prior constructor call. It seems this may be refactored.

Note: See TracQuery for help on using queries.