mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 08:12:44 +00:00
avutil/mem: Optimize fill32() by unrolling and using 64bit
Reviewed-by: Marton Balint <cus@passwd.hu> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
32421602df
commit
12b1338be3
@ -399,6 +399,18 @@ static void fill32(uint8_t *dst, int len)
|
|||||||
{
|
{
|
||||||
uint32_t v = AV_RN32(dst - 4);
|
uint32_t v = AV_RN32(dst - 4);
|
||||||
|
|
||||||
|
#if HAVE_FAST_64BIT
|
||||||
|
uint64_t v2= v + ((uint64_t)v<<32);
|
||||||
|
while (len >= 32) {
|
||||||
|
AV_WN64(dst , v2);
|
||||||
|
AV_WN64(dst+ 8, v2);
|
||||||
|
AV_WN64(dst+16, v2);
|
||||||
|
AV_WN64(dst+24, v2);
|
||||||
|
dst += 32;
|
||||||
|
len -= 32;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
while (len >= 4) {
|
while (len >= 4) {
|
||||||
AV_WN32(dst, v);
|
AV_WN32(dst, v);
|
||||||
dst += 4;
|
dst += 4;
|
||||||
|
Loading…
Reference in New Issue
Block a user