Browse Source

flacdec: drop unnecessary assert

The condition cannot happen anymore.
tags/n2.0
Luca Barbato 12 years ago
parent
commit
39cc4c61de
1 changed files with 0 additions and 5 deletions
  1. +0
    -5
      libavcodec/flacdec.c

+ 0
- 5
libavcodec/flacdec.c View File

@@ -44,9 +44,6 @@
#include "flacdata.h"
#include "flacdsp.h"

#undef NDEBUG
#include <assert.h>

typedef struct FLACContext {
FLACSTREAMINFO

@@ -130,8 +127,6 @@ static int allocate_buffers(FLACContext *s)
{
int buf_size;

assert(s->max_blocksize);

buf_size = av_samples_get_buffer_size(NULL, s->channels, s->max_blocksize,
AV_SAMPLE_FMT_S32P, 0);
if (buf_size < 0)


Loading…
Cancel
Save