mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/nellymoserenc: replace assert by av_assert1()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d0045312c3
commit
0182e5a740
|
@ -271,7 +271,7 @@ static void get_exponent_dynamic(NellyMoserEncodeContext *s, float *cand, int *i
|
|||
}
|
||||
}
|
||||
}
|
||||
assert(c); //FIXME
|
||||
av_assert1(c); //FIXME
|
||||
}
|
||||
|
||||
best_val = INFINITY;
|
||||
|
|
Loading…
Reference in New Issue