You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm not sure if I'm using the calls correctly, but for a 10s window LUFS value in EBUR128_MODE_I , I've used
ebur128_set_max_window(ectx, 10000)
In 1.2.4 this resulted in
st->d->audio_data_frames = st->samplerate * st->d->window / 1000
and it runs fine.
In 1.2.6 it seems that the /1000 is omitted:
safe_size_mul(st->samplerate, window, &new_audio_data_frames)
which gives an insanely big malloc() and runs subsequently in the out of memory killer :(
Hi,
I'm not sure if I'm using the calls correctly, but for a 10s window LUFS value in EBUR128_MODE_I , I've used
ebur128_set_max_window(ectx, 10000)
In 1.2.4 this resulted in
st->d->audio_data_frames = st->samplerate * st->d->window / 1000
and it runs fine.
In 1.2.6 it seems that the /1000 is omitted:
safe_size_mul(st->samplerate, window, &new_audio_data_frames)
which gives an insanely big malloc() and runs subsequently in the out of memory killer :(
Simple test:
The text was updated successfully, but these errors were encountered: