Remove obsolete check for ladspa->state in rvoice mixer

The decision if plugins can be run should stay in the LADSPA codebase.
This commit is contained in:
Marcus Weseloh 2017-10-23 21:38:55 +02:00
parent a1ff8d0e55
commit f1cf28b00c

View file

@ -142,7 +142,7 @@ fluid_rvoice_mixer_process_fx(fluid_rvoice_mixer_t* mixer)
#ifdef LADSPA
/* Run the signal through the LADSPA Fx unit */
if (mixer->ladspa_fx && mixer->ladspa_fx->state == FLUID_LADSPA_ACTIVE) {
if (mixer->ladspa_fx) {
fluid_ladspa_run(mixer->ladspa_fx,
mixer->buffers.left_buf, mixer->buffers.right_buf,
mixer->buffers.fx_left_buf, mixer->buffers.fx_right_buf,