Newer
Older

Karsten Suehring
committed
/* The copyright in this software is being made available under the BSD
* License, included below. This software may be subject to other third party
* and contributor rights, including patent rights, and no such rights are
* granted under this license.
*
* Copyright (c) 2010-2025, ITU/ISO/IEC

Karsten Suehring
committed
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* \file
* \brief Implementation of AffineGradientSearch class
*/
// ====================================================================================================================
// Includes
// ====================================================================================================================
#include "AffineGradientSearch.h"
//! \ingroup CommonLib
//! \{
// ====================================================================================================================
// Private member functions
// ====================================================================================================================
AffineGradientSearch::AffineGradientSearch()
{
m_HorizontalSobelFilter = xHorizontalSobelFilter;
m_VerticalSobelFilter = xVerticalSobelFilter;
m_EqualCoeffComputer = xEqualCoeffComputer;
#if ENABLE_SIMD_OPT_AFFINE_ME
#ifdef TARGET_SIMD_X86
initAffineGradientSearchX86();
#endif
#endif
}
void AffineGradientSearch::xHorizontalSobelFilter(Pel *const pPred, const ptrdiff_t predStride, int *const pDerivate,
const ptrdiff_t derivateBufStride, const int width, const int height)

Karsten Suehring
committed
{
for ( int j = 1; j < height - 1; j++ )
{
for ( int k = 1; k < width - 1; k++ )
{

Karsten Suehring
committed
pDerivate[j * derivateBufStride + k] =
(pPred[iCenter + 1 - predStride] -
pPred[iCenter - 1 - predStride] +
(pPred[iCenter + 1] << 1) -
(pPred[iCenter - 1] << 1) +
pPred[iCenter + 1 + predStride] -
pPred[iCenter - 1 + predStride]);
}
pDerivate[j * derivateBufStride] = pDerivate[j * derivateBufStride + 1];
pDerivate[j * derivateBufStride + width - 1] = pDerivate[j * derivateBufStride + width - 2];
}
pDerivate[0] = pDerivate[derivateBufStride + 1];
pDerivate[width - 1] = pDerivate[derivateBufStride + width - 2];
pDerivate[(height - 1) * derivateBufStride] = pDerivate[(height - 2) * derivateBufStride + 1];
pDerivate[(height - 1) * derivateBufStride + width - 1] = pDerivate[(height - 2) * derivateBufStride + (width - 2)];
for ( int j = 1; j < width - 1; j++ )
{
pDerivate[j] = pDerivate[derivateBufStride + j];
pDerivate[(height - 1) * derivateBufStride + j] = pDerivate[(height - 2) * derivateBufStride + j];
}
}
void AffineGradientSearch::xVerticalSobelFilter(Pel *const pPred, const ptrdiff_t predStride, int *const pDerivate,
const ptrdiff_t derivateBufStride, const int width, const int height)

Karsten Suehring
committed
{
for ( int k = 1; k < width - 1; k++ )
{
for ( int j = 1; j < height - 1; j++ )
{

Karsten Suehring
committed
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
pDerivate[j * derivateBufStride + k] =
(pPred[iCenter + predStride - 1] -
pPred[iCenter - predStride - 1] +
(pPred[iCenter + predStride] << 1) -
(pPred[iCenter - predStride] << 1) +
pPred[iCenter + predStride + 1] -
pPred[iCenter - predStride + 1]);
}
pDerivate[k] = pDerivate[derivateBufStride + k];
pDerivate[(height - 1) * derivateBufStride + k] = pDerivate[(height - 2) * derivateBufStride + k];
}
pDerivate[0] = pDerivate[derivateBufStride + 1];
pDerivate[width - 1] = pDerivate[derivateBufStride + width - 2];
pDerivate[(height - 1) * derivateBufStride] = pDerivate[(height - 2) * derivateBufStride + 1];
pDerivate[(height - 1) * derivateBufStride + width - 1] = pDerivate[(height - 2) * derivateBufStride + (width - 2)];
for ( int j = 1; j < height - 1; j++ )
{
pDerivate[j * derivateBufStride] = pDerivate[j * derivateBufStride + 1];
pDerivate[j * derivateBufStride + width - 1] = pDerivate[j * derivateBufStride + width - 2];
}
}
void AffineGradientSearch::xEqualCoeffComputer(Pel *pResidue, ptrdiff_t residueStride, int **ppDerivate,
ptrdiff_t derivateBufStride, int64_t (*pEqualCoeff)[7], int width,
int height, bool b6Param)

Karsten Suehring
committed
{
int affineParamNum = b6Param ? 6 : 4;
for ( int j = 0; j != height; j++ )
{
int cy = ((j >> 2) << 2) + 2;

Karsten Suehring
committed
for ( int k = 0; k != width; k++ )
{
int iC[6];
ptrdiff_t idx = j * derivateBufStride + k;
int cx = ((k >> 2) << 2) + 2;

Karsten Suehring
committed
if ( !b6Param )
{
iC[0] = ppDerivate[0][idx];
iC[1] = cx * ppDerivate[0][idx] + cy * ppDerivate[1][idx];

Karsten Suehring
committed
iC[2] = ppDerivate[1][idx];
iC[3] = cy * ppDerivate[0][idx] - cx * ppDerivate[1][idx];

Karsten Suehring
committed
}
else
{
iC[0] = ppDerivate[0][idx];
iC[1] = cx * ppDerivate[0][idx];

Karsten Suehring
committed
iC[2] = ppDerivate[1][idx];
iC[3] = cx * ppDerivate[1][idx];
iC[4] = cy * ppDerivate[0][idx];
iC[5] = cy * ppDerivate[1][idx];

Karsten Suehring
committed
}
for ( int col = 0; col < affineParamNum; col++ )
{
for ( int row = 0; row < affineParamNum; row++ )
{
pEqualCoeff[col + 1][row] += (int64_t)iC[col] * iC[row];
}
pEqualCoeff[col + 1][affineParamNum] += ((int64_t)iC[col] * pResidue[idx]) << 3;
}
}
}
}
//! \}