summaryrefslogtreecommitdiff
path: root/libavcodec/flacdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-02 21:58:03 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-08-02 21:58:03 +0200
commit4d38b838f094eb928de066a03c8dd41977b74b4e (patch)
tree978527106ff143e763af0639042c4e0dd8d63964 /libavcodec/flacdec.c
parent32aeba12755f05db7fbd24e530dd309e3cf93557 (diff)
flacdec: switch to av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/flacdec.c')
-rw-r--r--libavcodec/flacdec.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c
index f0b0b3e6f1..ffcc253c0d 100644
--- a/libavcodec/flacdec.c
+++ b/libavcodec/flacdec.c
@@ -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);