mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 13:35:13 +00:00
avfilter/af_loudnorm: fix crash when ebur128 initialization was not successfull/complete
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
4da4bfcdc9
commit
defb960a47
@ -789,6 +789,9 @@ static av_cold void uninit(AVFilterContext *ctx)
|
||||
double i_in, i_out, lra_in, lra_out, thresh_in, thresh_out, tp_in, tp_out;
|
||||
int c;
|
||||
|
||||
if (!s->r128_in || !s->r128_out)
|
||||
goto end;
|
||||
|
||||
ebur128_loudness_range(s->r128_in, &lra_in);
|
||||
ebur128_loudness_global(s->r128_in, &i_in);
|
||||
ebur128_relative_threshold(s->r128_in, &thresh_in);
|
||||
@ -869,7 +872,10 @@ static av_cold void uninit(AVFilterContext *ctx)
|
||||
break;
|
||||
}
|
||||
|
||||
end:
|
||||
if (s->r128_in)
|
||||
ebur128_destroy(&s->r128_in);
|
||||
if (s->r128_out)
|
||||
ebur128_destroy(&s->r128_out);
|
||||
av_freep(&s->limiter_buf);
|
||||
av_freep(&s->prev_smp);
|
||||
|
Loading…
Reference in New Issue
Block a user