Opened 14 years ago Closed 14 years ago #153 closed defect (fixed)Strange code in TDecTop::executeDeblockAndAlf()
Description
In TDecTop::executeDeblockAndAlf(), a variable pcSlice is defined as follows. TComSlice* pcSlice = pcPic->getPicSym()->getSlice( m_uiSliceIdx );
The variable pcSlice always points non-existent Slice object, since m_uiSliceIdx is the last valid Slice index minus 1 when executeDeblockAndAlf() is called.
Therefore, pcSlice should be removed and the description pcSlice->sortPicList( m_cListPic );
should be replaced with TComSlice::sortPicList( m_cListPic );
Similar description is also found in TDecTop::xGetNewPicBuffer(). Change History (6)comment:1 Changed 14 years ago by davidf
comment:2 Changed 14 years ago by davidfcomment:3 Changed 14 years ago by davidf
comment:4 Changed 13 years ago by davidf
Updating component after adding WD (Text) tickets comment:5 Changed 13 years ago by davidf
comment:6 Changed 13 years ago by davidf
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
|
Resolved by r946