From 5d9981995e34d44da2a1b236de4a7594fbe183a8 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 21 Jun 2018 21:59:31 +0900 Subject: [PATCH] Fixed for bug 2845. This is a bit of a quick-n-dirty patch. The assertion looks for extremely small generated values and crash if found one. Removing the assertions seems to cause no arm and audio files of various format play fines. Moreover the problem seems to have completely disappered in recent Debian distros, for example it was reproducable in Stretch but no more in Buster. Signed-off-by: Michele Calgaro --- flow/gsl/gslwaveosc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/flow/gsl/gslwaveosc.c b/flow/gsl/gslwaveosc.c index 7398904..15038f4 100644 --- a/flow/gsl/gslwaveosc.c +++ b/flow/gsl/gslwaveosc.c @@ -219,7 +219,6 @@ gsl_wave_osc_process (GslWaveOscData *wosc, } } g_assert (!GSL_DOUBLE_IS_NANINF (wosc->y[0])); - g_assert (!GSL_DOUBLE_IS_SUBNORMAL (wosc->y[0])); wosc->done = (wosc->block.is_silent && /* FIXME, let filter state run out? */ ((wosc->block.play_dir < 0 && wosc->block.offset < 0) ||