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

Remove unused variable

parent 56384ed4
No related branches found
No related tags found
No related merge requests found
......@@ -289,26 +289,6 @@ const TFilterCoeff InterpolationFilter::m_chromaFilterRPR2[CHROMA_INTERPOLATION_
{ -1, 18, 30, 17 }
};
const TFilterCoeff InterpolationFilter::m_bilinearFilter[LUMA_INTERPOLATION_FILTER_SUB_SAMPLE_POSITIONS][NTAPS_BILINEAR] =
{
{ 64, 0, },
{ 60, 4, },
{ 56, 8, },
{ 52, 12, },
{ 48, 16, },
{ 44, 20, },
{ 40, 24, },
{ 36, 28, },
{ 32, 32, },
{ 28, 36, },
{ 24, 40, },
{ 20, 44, },
{ 16, 48, },
{ 12, 52, },
{ 8, 56, },
{ 4, 60, },
};
const TFilterCoeff InterpolationFilter::m_bilinearFilterPrec4[LUMA_INTERPOLATION_FILTER_SUB_SAMPLE_POSITIONS][NTAPS_BILINEAR] =
{
{ 16, 0, },
......
......@@ -68,7 +68,6 @@ public:
static const TFilterCoeff m_affineLumaFilterRPR2[LUMA_INTERPOLATION_FILTER_SUB_SAMPLE_POSITIONS][NTAPS_LUMA]; ///< Luma filter taps 2x
private:
static const TFilterCoeff m_lumaAltHpelIFilter[NTAPS_LUMA]; ///< Luma filter taps
static const TFilterCoeff m_bilinearFilter[LUMA_INTERPOLATION_FILTER_SUB_SAMPLE_POSITIONS][NTAPS_BILINEAR]; ///< bilinear filter taps
static const TFilterCoeff m_bilinearFilterPrec4[LUMA_INTERPOLATION_FILTER_SUB_SAMPLE_POSITIONS][NTAPS_BILINEAR]; ///< bilinear filter taps
public:
template<bool isFirst, bool isLast>
......
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