Commit 4d38b838 authored by Michael Niedermayer's avatar Michael Niedermayer

flacdec: switch to av_assert

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 32aeba12
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment