[FFmpeg-cvslog] avcodec/ppc/h264qpel_template: Change if DEBUG assert() to av_assert2()
Michael Niedermayer
git at videolan.org
Fri Jan 30 16:44:34 CET 2015
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Jan 30 15:43:08 2015 +0100| [d0f315ab6c7d5829f43ebbe18e1e8827dad4c46b] | committer: Michael Niedermayer
avcodec/ppc/h264qpel_template: Change if DEBUG assert() to av_assert2()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d0f315ab6c7d5829f43ebbe18e1e8827dad4c46b
---
libavcodec/ppc/h264qpel_template.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/libavcodec/ppc/h264qpel_template.c b/libavcodec/ppc/h264qpel_template.c
index 9a34548..0e5ecbd 100644
--- a/libavcodec/ppc/h264qpel_template.c
+++ b/libavcodec/ppc/h264qpel_template.c
@@ -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){\
More information about the ffmpeg-cvslog
mailing list