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

Fix formatting: braces, spaces, indentation

parent c6b26fba
No related branches found
No related tags found
No related merge requests found
......@@ -506,19 +506,21 @@ void InterpolationFilter::filterCopy( const ClpRng& clpRng, const Pel *src, int
}
}
else
for (row = 0; row < height; row++)
{
for (col = 0; col < width; col++)
for (row = 0; row < height; row++)
{
Pel val = src[ col ];
val = rightShift_round((val + IF_INTERNAL_OFFS), shift);
for (col = 0; col < width; col++)
{
Pel val = src[col];
val = rightShift_round((val + IF_INTERNAL_OFFS), shift);
dst[col] = ClipPel( val, clpRng );
JVET_J0090_CACHE_ACCESS( &src[col], __FILE__, __LINE__ );
}
dst[col] = ClipPel(val, clpRng);
JVET_J0090_CACHE_ACCESS(&src[col], __FILE__, __LINE__);
}
src += srcStride;
dst += dstStride;
src += srcStride;
dst += dstStride;
}
}
}
}
......@@ -790,7 +792,6 @@ void InterpolationFilter::filterHor(const ComponentID compID, Pel const *src, in
else
{
filterHor<NTAPS_LUMA>( clpRng, src, srcStride, dst, dstStride, width, height, isLast, m_lumaFilter[frac], biMCForDMVR );
}
}
else
......
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