Skip to content

Commit

Permalink
[VP] Fix the failure of VPL sync for SR feature.
Browse files Browse the repository at this point in the history
* [VP] Fix the failure of VPL sync for SR feature.

Fix the failure of VPL sync for SR feature in 2x.
  • Loading branch information
FurongZhang authored and intel-mediadev committed Nov 6, 2024
1 parent 990440c commit 0a91336
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion media_common/agnostic/common/vp/hal/vp_common_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1075,6 +1075,8 @@ struct VPHAL_RENDER_PARAMS

bool bForceToRender = false; // Force to render to perform scaling.

HANDLE gpuAppTaskEvent; //!< GPU App task event

VPHAL_RENDER_PARAMS() : uSrcCount(0),
pSrc(),
uDstCount(0),
Expand All @@ -1097,7 +1099,8 @@ struct VPHAL_RENDER_PARAMS
pExtensionData(nullptr),
bPathKernel(false),
bUseVEHdrSfc(false),
bNonFirstFrame(false)
bNonFirstFrame(false),
gpuAppTaskEvent(nullptr)
{
}
};
Expand Down

0 comments on commit 0a91336

Please sign in to comment.