Skip to content
Snippets Groups Projects
Commit 00061bcc authored by Kai Zhang's avatar Kai Zhang
Browse files

Merge branch 'BIF_64x64_fix' into 'ECM'

Fixes issue that ECM encoder crashes on a 64x64 small sequence.

See merge request ecm/VVCSoftware_VTM!14
parents 9a48329b d7414627
No related branches found
No related tags found
No related merge requests found
...@@ -496,16 +496,6 @@ void BilateralFilter::bilateralFilterRDOdiamond5x5(PelBuf& resiBuf, const CPelBu ...@@ -496,16 +496,6 @@ void BilateralFilter::bilateralFilterRDOdiamond5x5(PelBuf& resiBuf, const CPelBu
tempblock[2 + iWidthExtSIMD + xx] = pLUT[tempblock[2 + iWidthExtSIMD + xx]]; tempblock[2 + iWidthExtSIMD + xx] = pLUT[tempblock[2 + iWidthExtSIMD + xx]];
} }
} }
std::copy(earlierPel - earlierStride, earlierPel - earlierStride + area.width, tempblock + 2);
if( doReshape )
{
for( int xx = 0; xx < area.width; xx++ )
{
tempblock[2 + xx] = pLUT[tempblock[2 + xx]];
}
}
} }
// left column // left column
if (leftAvailable) if (leftAvailable)
......
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