You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
adpcmenc: switch to av_assert()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -376,7 +376,7 @@ static void adpcm_compress_trellis(AVCodecContext *avctx,
|
|||||||
*h = generation;\
|
*h = generation;\
|
||||||
u = nodes_next[pos];\
|
u = nodes_next[pos];\
|
||||||
if (!u) {\
|
if (!u) {\
|
||||||
assert(pathn < FREEZE_INTERVAL << avctx->trellis);\
|
av_assert1(pathn < FREEZE_INTERVAL << avctx->trellis);\
|
||||||
u = t++;\
|
u = t++;\
|
||||||
nodes_next[pos] = u;\
|
nodes_next[pos] = u;\
|
||||||
u->path = pathn++;\
|
u->path = pathn++;\
|
||||||
|
Reference in New Issue
Block a user