id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc 153,Strange code in TDecTop::executeDeblockAndAlf(),hao,davidf,"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. pcSlice is used for calling the member function sortPicList() but this usage is meaningless because sortPicList() is defined as a static function. 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().",defect,closed,trivial,HM-3.1,HM,HM-3.0,fixed,,fbossen ksuehring davidf jct-vc@…