mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-11 19:36:47 +02:00
use aligned stored
This commit is contained in:
parent
0e1d1fdfe0
commit
01af7b69cd
@ -353,8 +353,8 @@ static void SimpleVFilter16SSE2(uint8_t* p, int stride, int thresh) {
|
|||||||
DoFilter2(&p1, &p0, &q0, &q1, thresh);
|
DoFilter2(&p1, &p0, &q0, &q1, thresh);
|
||||||
|
|
||||||
// Store
|
// Store
|
||||||
_mm_store_si128((__m128i*)&p[-stride], p0);
|
_mm_storeu_si128((__m128i*)&p[-stride], p0);
|
||||||
_mm_store_si128((__m128i*)p, q0);
|
_mm_storeu_si128((__m128i*)p, q0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void SimpleHFilter16SSE2(uint8_t* p, int stride, int thresh) {
|
static void SimpleHFilter16SSE2(uint8_t* p, int stride, int thresh) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user