Commit 8da7907a authored by Michael Niedermayer's avatar Michael Niedermayer

adpcmenc: switch to av_assert()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b49d94e4
......@@ -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++;\
......
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