Skip to content

Commit

Permalink
[CP] Fix HEVC long scalability hang issue
Browse files Browse the repository at this point in the history
prolog is required in each secondary command buffer in sec decode.
  • Loading branch information
lixin5x authored and intel-mediadev committed Sep 10, 2024
1 parent 57d4101 commit 1336d08
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1619,7 +1619,8 @@ MOS_STATUS CodechalDecodeHevcG12::SendPictureLongFormat()
if ((!m_shortFormatInUse && !CodecHalDecodeScalabilityIsFESeparateSubmission(m_scalabilityState) &&
!m_isRealTile) ||
CodecHalDecodeScalabilityIsBEPhaseG12(m_scalabilityState) ||
CodecHalDecodeScalabilityIsFirstRealTilePhase(m_scalabilityState))
CodecHalDecodeScalabilityIsFirstRealTilePhase(m_scalabilityState) ||
(m_secureDecoder != nullptr && m_osInterface->phasedSubmission))
{
MHW_MI_FORCE_WAKEUP_PARAMS forceWakeupParams;
MOS_ZeroMemory(&forceWakeupParams, sizeof(MHW_MI_FORCE_WAKEUP_PARAMS));
Expand Down

0 comments on commit 1336d08

Please sign in to comment.