Skip to content
Snippets Groups Projects
Commit d4f4ad7d authored by Vadim Seregin's avatar Vadim Seregin
Browse files

Merge branch 'Fix_BvFilter' into 'master'

Fix for bvFilter copying of FIBC

See merge request !788
parents d192d821 114c9336
No related branches found
No related tags found
Loading
Pipeline #13955 passed
...@@ -568,6 +568,9 @@ struct SrchCostBv ...@@ -568,6 +568,9 @@ struct SrchCostBv
#if JVET_AE0078_IBC_LIC_EXTENSION #if JVET_AE0078_IBC_LIC_EXTENSION
bvLicIdx[idxDst] = bvLicIdx[idxSrc]; bvLicIdx[idxDst] = bvLicIdx[idxSrc];
skipLicSrch[idxDst] = skipLicSrch[idxSrc]; skipLicSrch[idxDst] = skipLicSrch[idxSrc];
#endif
#if JVET_AE0159_FIBC
bvFilter[idxDst] = bvFilter[idxSrc];
#endif #endif
} }
} }
...@@ -648,6 +651,9 @@ struct SrchCostBv ...@@ -648,6 +651,9 @@ struct SrchCostBv
#endif #endif
#if JVET_AE0078_IBC_LIC_EXTENSION #if JVET_AE0078_IBC_LIC_EXTENSION
bvLicIdx[idx] = bvLic; bvLicIdx[idx] = bvLic;
#endif
#if JVET_AE0159_FIBC
bvFilter[idx] = false;
#endif #endif
}; };
...@@ -666,6 +672,9 @@ struct SrchCostBv ...@@ -666,6 +672,9 @@ struct SrchCostBv
#endif #endif
#if JVET_AE0078_IBC_LIC_EXTENSION #if JVET_AE0078_IBC_LIC_EXTENSION
bvLicIdx[idx + 1] = bvLicIdx[idx]; bvLicIdx[idx + 1] = bvLicIdx[idx];
#endif
#if JVET_AE0159_FIBC
bvFilter[idx + 1] = bvFilter[idx];
#endif #endif
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment