Browse Source

libschroedingerenc: switch to av_assert

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
72a9e646c3
1 changed files with 3 additions and 5 deletions
  1. +3
    -5
      libavcodec/libschroedingerenc.c

+ 3
- 5
libavcodec/libschroedingerenc.c View File

@@ -27,13 +27,11 @@
* (http://dirac.sourceforge.net/specification.html).
*/

#undef NDEBUG
#include <assert.h>

#include <schroedinger/schro.h>
#include <schroedinger/schrodebug.h>
#include <schroedinger/schrovideoformat.h>

#include "libavutil/avassert.h"
#include "avcodec.h"
#include "internal.h"
#include "libschroedinger.h"
@@ -305,8 +303,8 @@ static int libschroedinger_encode_frame(AVCodecContext *avccontext, AVPacket *pk
case SCHRO_STATE_HAVE_BUFFER:
case SCHRO_STATE_END_OF_STREAM:
enc_buf = schro_encoder_pull(encoder, &presentation_frame);
assert(enc_buf->length > 0);
assert(enc_buf->length <= buf_size);
av_assert0(enc_buf->length > 0);
av_assert0(enc_buf->length <= buf_size);
parse_code = enc_buf->data[4];

/* All non-frame data is prepended to actual frame data to


Loading…
Cancel
Save