Merge pull request #272 from mstorsjo/enable-missed-asm-func
Take the missed WelsDecoderI4x4LumaPredH_sse2 function into use
This commit is contained in:
commit
b336bbdbd7
@ -98,6 +98,7 @@ void_t WelsDecoderIChromaPredDcNA_mmx (uint8_t* pPred, const int32_t kiStride);
|
||||
|
||||
|
||||
|
||||
void_t WelsDecoderI4x4LumaPredH_sse2(uint8_t *pPred, const int32_t kiStride);
|
||||
void_t WelsDecoderI4x4LumaPredDDR_mmx (uint8_t* pPred, const int32_t kiStride);
|
||||
void_t WelsDecoderI4x4LumaPredHD_mmx (uint8_t* pPred, const int32_t kiStride);
|
||||
void_t WelsDecoderI4x4LumaPredHU_mmx (uint8_t* pPred, const int32_t kiStride);
|
||||
|
@ -723,6 +723,7 @@ void_t AssignFuncPointerForRec (PWelsDecoderContext pCtx) {
|
||||
pCtx->pGetIChromaPredFunc[C_PRED_P ] = WelsDecoderIChromaPredPlane_sse2;
|
||||
pCtx->pGetIChromaPredFunc[C_PRED_DC] = WelsDecoderIChromaPredDc_sse2;
|
||||
pCtx->pGetIChromaPredFunc[C_PRED_DC_T] = WelsDecoderIChromaPredDcTop_sse2;
|
||||
pCtx->pGetI4x4LumaPredFunc[I4_PRED_H] = WelsDecoderI4x4LumaPredH_sse2;
|
||||
}
|
||||
#endif
|
||||
DeblockingInit (&pCtx->sDeblockingFunc, pCtx->uiCpuFlag);
|
||||
|
Loading…
Reference in New Issue
Block a user