Check for the right function pointer
This code checked whether one function pointer was non-null, but the went on to call a different function pointer. Check for the one that actually was called.
This commit is contained in:
parent
43bc9d7c07
commit
b3d04d88a0
@ -473,7 +473,7 @@ int32_t WelsMdI4x4 (void* pEnc, void* pMd, SMB* pCurMb, SMbCache* pMbCache) {
|
||||
iBestCost = INT_MAX;
|
||||
iBestMode = kpAvailMode[0];
|
||||
|
||||
if (pFunc->sSampleDealingFuncs.pfIntra4x4Combined3Satd && (iAvailCount >= 6)) {
|
||||
if (pFunc->sSampleDealingFuncs.pfIntra4x4Combined3 && (iAvailCount >= 6)) {
|
||||
pDst = &pMbCache->pMemPredBlk4[iBestPredBufferNum << 4];
|
||||
|
||||
iBestCost = pFunc->sSampleDealingFuncs.pfIntra4x4Combined3 (pCurDec, kiLineSizeDec, pCurEnc, kiLineSizeEnc, pDst,
|
||||
|
Loading…
x
Reference in New Issue
Block a user