Skip to content

Commit

Permalink
openh264[loongarch]: Optimize DeblockLumaLt4V and DeblockLumaLt4H. (c…
Browse files Browse the repository at this point in the history
  • Loading branch information
wangluls authored Feb 24, 2022
1 parent c98ab32 commit caff324
Show file tree
Hide file tree
Showing 6 changed files with 499 additions and 1 deletion.
5 changes: 5 additions & 0 deletions codec/common/inc/deblocking_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ void DeblockChromaLt4H_msa (uint8_t* pPixCb, uint8_t* pPixCr, int32_t iStride, i
int8_t* pTC);
void WelsNonZeroCount_msa (int8_t* pNonZeroCount);
#endif//HAVE_MSA

#if defined(HAVE_LSX)
void DeblockLumaLt4V_lsx (uint8_t* pPixY, int32_t iStride, int32_t iAlpha, int32_t iBeta, int8_t* pTc);
void DeblockLumaLt4H_lsx (uint8_t* pPixY, int32_t iStride, int32_t iAlpha, int32_t iBeta, int8_t* pTc);
#endif//HAVE_LSX
#if defined(__cplusplus)
}
#endif//__cplusplus
Expand Down
Loading

0 comments on commit caff324

Please sign in to comment.