AttachAudioMixedProcessor method

void AttachAudioMixedProcessor(
  1. covariant AudioCallbackBase processor
)

Attach audio stream processor to the entire audio pipeline, receives the samples as 'float'

Implementation

void AttachAudioMixedProcessor(
  covariant AudioCallbackBase processor,
) => run(
  () => _debugLabels.AttachAudioMixedProcessor(processor),
  () => _flat.AttachAudioMixedProcessor(
    processor.attach(),
  ),
);