Commit d0b29428 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/ppc/h264qpel_template: Fix alignment assert

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 07cb6bf9
......@@ -28,7 +28,7 @@
#include "libavutil/ppc/types_altivec.h"
#include "libavutil/ppc/util_altivec.h"
#define ASSERT_ALIGNED(ptr) av_assert2(((unsigned long)ptr&0x0000000F));
#define ASSERT_ALIGNED(ptr) av_assert2(!((uintptr_t)ptr&0x0000000F));
#if HAVE_BIGENDIAN
#define load_alignment(s, ali, pm2, pm1, pp0, pp1, pp2, pp3){\
......
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