Commit 3f424346 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/huffyuvencdsp: try to fix misaligned access

Should fix fate on MIPS
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent cddbf95c
......@@ -30,7 +30,7 @@ static void diff_bytes_c(uint8_t *dst, const uint8_t *src1, const uint8_t *src2,
long i;
#if !HAVE_FAST_UNALIGNED
if ((long) src2 & (sizeof(long) - 1)) {
if (((long)src1 | (long)src2) & (sizeof(long) - 1)) {
for (i = 0; i + 7 < w; i += 8) {
dst[i + 0] = src1[i + 0] - src2[i + 0];
dst[i + 1] = src1[i + 1] - src2[i + 1];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment