flacdec: switch to av_assert

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-08-02 21:58:03 +02:00
parent 32aeba1275
commit 4d38b838f0

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);