mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 22:10:34 +00:00
aaccoder: switch to av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7b1ff5e2f3
commit
688cb71252
@ -506,7 +506,7 @@ static void codebook_trellis_rate(AACEncContext *s, SingleChannelElement *sce,
|
|||||||
idx = cb;
|
idx = cb;
|
||||||
ppos = max_sfb;
|
ppos = max_sfb;
|
||||||
while (ppos > 0) {
|
while (ppos > 0) {
|
||||||
assert(idx >= 0);
|
av_assert1(idx >= 0);
|
||||||
cb = idx;
|
cb = idx;
|
||||||
stackrun[stack_len] = path[ppos][cb].run;
|
stackrun[stack_len] = path[ppos][cb].run;
|
||||||
stackcb [stack_len] = cb;
|
stackcb [stack_len] = cb;
|
||||||
|
Loading…
Reference in New Issue
Block a user