Skip to content

Commit 14e2e7b

Browse files
peiyigu-intelintel-mediadev
authored andcommittedMar 10, 2025
[VP] Fix OCL FC ADI
ADI will fall back to BOB DI as leagacy FC did
1 parent 7feeaec commit 14e2e7b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎media_softlet/agnostic/common/vp/hal/features/vp_ocl_fc_filter.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -1600,6 +1600,11 @@ MOS_STATUS VpOclFcFilter::InitLayer(SwFilterPipe &executingPipe, bool isInputPip
16001600
{
16011601
layer.diParams.enabled = true;
16021602
layer.diParams.params = *di->GetSwFilterParams().diParams;
1603+
if (layer.diParams.params.DIMode == DI_MODE_ADI)
1604+
{
1605+
VP_PUBLIC_NORMALMESSAGE("Fall back ADI to BOB DI for render only support BOB DI");
1606+
layer.diParams.params.DIMode = DI_MODE_BOB;
1607+
}
16031608
}
16041609
else
16051610
{

0 commit comments

Comments
 (0)