﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1485	HM cannot handle multiple appearance of current frame in the reference list	swong10		"Spec allows current frame to be added in the reference list multiple times when IBC is used.
But HM code cannot handle it.  The code exit when the very first appearance is found.

HM Decoder 16.15_SCM8.4
TDecTop.cpp --> Void TDecTop::markCurrentPictureAfterILFforShortTermRef(), need to remove the ""return"" as follows:
      if ( pcPic->getCurrentPicFlag() == true )
      {
        pcPic->setIsLongTerm( false );
        pcPic->getSlice( 0 )->setReferenced( true );
        pcPic->setCurrentPicFlag( false ); //last time to use the current picture flag
      }


TDecTop.cpp --> Void TDecTop::updateCurrentPictureFlag(), need to add the following ""return""
      if ( pcPic->getCurrentPicFlag() == true )
      {
        pcPic->setCurrentPicFlag( false ); //last time to use the current picture flag
        return;
      }


"	defect	new	major		HM SCC				lidong.xu@… samuel.wong@… jct-vc@… iole@…
