Skip to content

Commit

Permalink
[WA] Disable Scalability for VP9 encoding by default
Browse files Browse the repository at this point in the history
In VP9 8K encoding case, scalability is enabled. and make encoding incorrect.
Issue is reported to upstream on intel/media-driver#1847

Tracked-On: OAM-123073
Signed-off-by: Shaofeng Tang <[email protected]>
  • Loading branch information
Shao-Feng committed Sep 3, 2024
1 parent 009068f commit c1e4116
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ MOS_STATUS CodechalVdencVp9StateG12::GetSystemPipeNumberCommon()
&userFeatureData,
m_osInterface->pOsContext);

bool disableScalability = m_hwInterface->IsDisableScalability();
bool disableScalability = true; // m_hwInterface->IsDisableScalability();
if (statusKey == MOS_STATUS_SUCCESS)
{
disableScalability = userFeatureData.i32Data ? true : false;
Expand Down

0 comments on commit c1e4116

Please sign in to comment.