Browse Source

flacdec: switch to av_assert

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
4d38b838f0
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      libavcodec/flacdec.c

+ 2
- 4
libavcodec/flacdec.c View 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);


Loading…
Cancel
Save