mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/ppc/h264qpel_template: Change if DEBUG assert() to av_assert2()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3531594017
commit
d0f315ab6c
|
@ -23,15 +23,12 @@
|
|||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include "libavutil/avassert.h"
|
||||
#include "libavutil/mem.h"
|
||||
#include "libavutil/ppc/types_altivec.h"
|
||||
#include "libavutil/ppc/util_altivec.h"
|
||||
|
||||
#ifdef DEBUG
|
||||
#define ASSERT_ALIGNED(ptr) assert(((unsigned long)ptr&0x0000000F));
|
||||
#else
|
||||
#define ASSERT_ALIGNED(ptr) ;
|
||||
#endif
|
||||
#define ASSERT_ALIGNED(ptr) av_assert2(((unsigned long)ptr&0x0000000F));
|
||||
|
||||
#if HAVE_BIGENDIAN
|
||||
#define load_alignment(s, ali, pm2, pm1, pp0, pp1, pp2, pp3){\
|
||||
|
|
Loading…
Reference in New Issue