Merge pull request #504 from mstorsjo/fix-function-name-typo
Fix a typo, Smple -> Sample
This commit is contained in:
commit
e606bae0e9
@ -1257,14 +1257,14 @@ WelsI16x16LumaPredDc_sse2:
|
||||
|
||||
;***********************************************************************
|
||||
;
|
||||
;int32_t WelsSmpleSatdThree4x4_sse2( uint8_t *pDec, int32_t iLineSizeDec, uint8_t *pEnc, int32_t iLinesizeEnc,
|
||||
;int32_t WelsSampleSatdThree4x4_sse2( uint8_t *pDec, int32_t iLineSizeDec, uint8_t *pEnc, int32_t iLinesizeEnc,
|
||||
; uint8_t* pRed, int32_t* pBestMode, int32_t, int32_t, int32_t);
|
||||
;
|
||||
;***********************************************************************
|
||||
%ifdef X86_32
|
||||
WELS_EXTERN WelsSmpleSatdThree4x4_sse2
|
||||
WELS_EXTERN WelsSampleSatdThree4x4_sse2
|
||||
align 16
|
||||
WelsSmpleSatdThree4x4_sse2:
|
||||
WelsSampleSatdThree4x4_sse2:
|
||||
push ebx
|
||||
push esi
|
||||
push edi
|
||||
|
@ -94,7 +94,7 @@ int32_t WelsSampleSatd16x8_sse2 (uint8_t*, int32_t, uint8_t*, int32_t);
|
||||
int32_t WelsSampleSatd8x16_sse2 (uint8_t*, int32_t, uint8_t*, int32_t);
|
||||
int32_t WelsSampleSatd16x16_sse2 (uint8_t*, int32_t, uint8_t*, int32_t);
|
||||
int32_t WelsSampleSatd4x4_sse2 (uint8_t*, int32_t, uint8_t*, int32_t);
|
||||
int32_t WelsSmpleSatdThree4x4_sse2 (uint8_t*, int32_t, uint8_t*, int32_t, uint8_t*, int32_t*, int32_t, int32_t,
|
||||
int32_t WelsSampleSatdThree4x4_sse2 (uint8_t*, int32_t, uint8_t*, int32_t, uint8_t*, int32_t*, int32_t, int32_t,
|
||||
int32_t);
|
||||
|
||||
int32_t WelsSampleSatd8x8_sse41 (uint8_t*, int32_t, uint8_t*, int32_t);
|
||||
|
@ -463,7 +463,7 @@ void WelsInitSampleSadFunc (SWelsFuncPtrList* pFuncList, uint32_t uiCpuFlag) {
|
||||
pFuncList->sSampleDealingFuncs.pfSampleSatd[BLOCK_8x16 ] = WelsSampleSatd8x16_sse2;
|
||||
pFuncList->sSampleDealingFuncs.pfSampleSatd[BLOCK_16x8 ] = WelsSampleSatd16x8_sse2;
|
||||
pFuncList->sSampleDealingFuncs.pfSampleSatd[BLOCK_16x16] = WelsSampleSatd16x16_sse2;
|
||||
//pFuncList->sSampleDealingFuncs.pfIntra4x4Combined3Satd = WelsSmpleSatdThree4x4_sse2;
|
||||
//pFuncList->sSampleDealingFuncs.pfIntra4x4Combined3Satd = WelsSampleSatdThree4x4_sse2;
|
||||
}
|
||||
|
||||
if (uiCpuFlag & WELS_CPU_SSSE3) {
|
||||
|
Loading…
Reference in New Issue
Block a user