Custom query (96 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (79 - 81 of 96)

Ticket Resolution Summary Owner Reporter
#87 fixed Memory leak tech tech
Description

For some reasons

m_pbUseDDD = (Bool* ) xMalloc( Bool, uiNumPartition);

is not freed at the decoder, although

if ( m_pbUseDDD ) { xFree(m_pbUseDDD); m_pbUseDDD = NULL; }

is present in code.

#88 fixed Missing part_mode binaryzation when quad-tree limitation enabled tech Tomohiro Ikai
Description

When lim_qt_pred_flag is equal to 1, the quad-tree limitation is used. Then the modified part_mode binaryzation and PartMode derivation is used.

The latest spec (JCT3V-I1001_v3) defines the PartMode derivation part's modification (Table I 3 – Name association to prediction mode and partitioning type). However part_mode binaryzation's modification seems missing in the spec as follows:

I.9.3.3.6 Binarization process for part_mode The specifications in subclause 9.3.3.6 apply.

#89 fixed ARP refIdx and refcheck tech Tomohiro Ikai
Description

At the strasburg meeting, ARP mismatch between text and software was reported. The issues are mainly related to F0105, F0123 and I0051. This ticket reports the details and a suggested fix (relative to HTM-12.2 and J1001_v3). The suggested fix doesn't affect coding results in CTC. The suggested patch includes the four macros (FIX_TICKET_89_REFIDX, FIX_TICKET_89_REFCHECK, FIX_TICKET_89_REFCLEAN, and FIX_TICKET_89_REFCLEAN2).

Issues: (1)Software issue(FIX_TICKET_89_REFIDX):

  • typos in arpIdx selection

(2)Software and text issue(FIX_TICKET_89_REFCHECK):

  • wrong or missing availablity checks in inter-view ARP

Specifically, in inter-view ARP, the ARP reference list X is replaced to Z as proposed in F0123 and I0051, so the software and text should be modified to check the Z rather than X. That's the reasonable harmonization with F0105.

Additionally, a software clean up is provided (FIX_TICKET_89_CLEAN and FIX_TICKET_89_CLEAN2).

Note: FIX_TICKET_89_CLEAN removes unnecessary conditions (2Nx2N check and depth chech are processed before ARP function in text and software, so we can remove them) and removes non-used variable (pNewMvFiled). FIX_TICKET_89_CLEAN2 merges uni-prediction part and bi-prediction part into one part as text specifies. The CLEAN2 changes can be large but it really helps cleanup.

Note: See TracQuery for help on using queries.