Skip to content
Snippets Groups Projects
Commit ea1696e3 authored by Frank Bossen's avatar Frank Bossen
Browse files

Merge branch 'fix_ticket_210' into 'master'

Fix for Ticket #210: M0147 DMVR interpolation filter incorrect for bit depth != 10

See merge request jvet/VVCSoftware_VTM!343
parents 609383b4 47057b93
No related branches found
No related tags found
No related merge requests found
......@@ -427,8 +427,16 @@ void InterpolationFilter::filter(const ClpRng& clpRng, Pel const *src, int srcSt
#if JVET_M0147_DMVR
if (biMCForDMVR)
{
shift = IF_FILTER_PREC_BILINEAR - (IF_INTERNAL_PREC_BILINEAR - clpRng.bd);
offset = 1 << (shift - 1);
if( isFirst )
{
shift = IF_FILTER_PREC_BILINEAR - (IF_INTERNAL_PREC_BILINEAR - clpRng.bd);
offset = 1 << (shift - 1);
}
else
{
shift = 4;
offset = 1 << (shift - 1);
}
}
#endif
for (row = 0; row < height; row++)
......
......@@ -1131,8 +1131,16 @@ static void simdFilter( const ClpRng& clpRng, Pel const *src, int srcStride, Pel
#if JVET_M0147_DMVR
if (biMCForDMVR)
{
shift = IF_FILTER_PREC_BILINEAR - (IF_INTERNAL_PREC_BILINEAR - clpRng.bd);
offset = 1 << (shift - 1);
if( isFirst )
{
shift = IF_FILTER_PREC_BILINEAR - (IF_INTERNAL_PREC_BILINEAR - clpRng.bd);
offset = 1 << (shift - 1);
}
else
{
shift = 4;
offset = 1 << (shift - 1);
}
}
#endif
if( clpRng.bd <= 10 )
......
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