avcodec/ppc/h264qpel_template: Fix alignment assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
07cb6bf985
commit
d0b294286c
1 changed files with 1 additions and 1 deletions
|
|
@ -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){\
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue