Browse Source

adpcmenc: switch to av_assert()

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

+ 1
- 1
libavcodec/adpcmenc.c View File

@@ -376,7 +376,7 @@ static void adpcm_compress_trellis(AVCodecContext *avctx,
*h = generation;\
u = nodes_next[pos];\
if (!u) {\
assert(pathn < FREEZE_INTERVAL << avctx->trellis);\
av_assert1(pathn < FREEZE_INTERVAL << avctx->trellis);\
u = t++;\
nodes_next[pos] = u;\
u->path = pathn++;\


Loading…
Cancel
Save