зеркало из https://github.com/mozilla/gecko-dev.git
25 строки
1.4 KiB
Diff
25 строки
1.4 KiB
Diff
diff --git a/media/libyuv/libyuv/source/row_any.cc b/media/libyuv/libyuv/source/row_any.cc
|
|
--- a/media/libyuv/libyuv/source/row_any.cc
|
|
+++ b/media/libyuv/libyuv/source/row_any.cc
|
|
@@ -702,18 +702,18 @@ ANY11P(ARGBShuffleRow_Any_NEON, ARGBShuf
|
|
ANY11P(ARGBShuffleRow_Any_MSA, ARGBShuffleRow_MSA, const uint8*, 4, 4, 7)
|
|
#endif
|
|
#undef ANY11P
|
|
|
|
// Any 1 to 1 with parameter and shorts. BPP measures in shorts.
|
|
#define ANY11P16(NAMEANY, ANY_SIMD, T, SBPP, BPP, MASK) \
|
|
void NAMEANY(const uint16* src_ptr, uint16* dst_ptr, T shuffler, \
|
|
int width) { \
|
|
- SIMD_ALIGNED(uint16 temp[32 * 2]); \
|
|
- memset(temp, 0, 64); /* for msan */ \
|
|
+ SIMD_ALIGNED(uint16 temp[64 * 2]); \
|
|
+ memset(temp, 0, 64*sizeof(uint16)); /* for msan */ \
|
|
int r = width & MASK; \
|
|
int n = width & ~MASK; \
|
|
if (n > 0) { \
|
|
ANY_SIMD(src_ptr, dst_ptr, shuffler, n); \
|
|
} \
|
|
memcpy(temp, src_ptr + n * SBPP, r * SBPP); \
|
|
ANY_SIMD(temp, temp + 64, shuffler, MASK + 1); \
|
|
memcpy(dst_ptr + n * BPP, temp + 64, r * BPP); \
|