]> git.sesse.net Git - ffmpeg/commitdiff
flacdec: switch to av_assert
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 2 Aug 2012 19:58:03 +0000 (21:58 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 2 Aug 2012 19:58:03 +0000 (21:58 +0200)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/flacdec.c

index f0b0b3e6f10f172c069f56ac0bf819bbaff616d2..ffcc253c0d519917ee41158e2997ea60915ba380 100644 (file)
@@ -34,6 +34,7 @@
 #include <limits.h>
 
 #include "libavutil/audioconvert.h"
+#include "libavutil/avassert.h"
 #include "libavutil/crc.h"
 #include "avcodec.h"
 #include "internal.h"
@@ -44,9 +45,6 @@
 #include "flacdata.h"
 #include "flacdsp.h"
 
-#undef NDEBUG
-#include <assert.h>
-
 typedef struct FLACContext {
     FLACSTREAMINFO
 
@@ -141,7 +139,7 @@ static void allocate_buffers(FLACContext *s)
 {
     int i;
 
-    assert(s->max_blocksize);
+    av_assert0(s->max_blocksize);
 
     for (i = 0; i < s->channels; i++) {
         s->decoded[i] = av_malloc(sizeof(int32_t)*s->max_blocksize);