Skip to content
Snippets Groups Projects
Commit 8da7907a authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

adpcmenc: switch to av_assert()

parent b49d94e4
Branches
Tags
No related merge requests found
......@@ -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++;\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment