MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / dasAudio_chorusProcess

Function dasAudio_chorusProcess

modules/dasAudio/src/dasAudio.cpp:580–583  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

578}
579
580void dasAudio_chorusProcess ( ma_chorus * chorus, float * input, float * output, int nSamples, Context * context, LineInfoArg * at ) {
581 if ( !chorus ) context->throw_error_at(at,"chorus is null");
582 ma_chorus_process(chorus, input, output, nSamples);
583}
584
585void dasAudio_chorusSetConfig ( ma_chorus * chorus, const ma_chorus_config & config, Context * context, LineInfoArg * at ) {
586 if ( !chorus ) context->throw_error_at(at,"chorus is null");

Callers

nothing calls this directly

Calls 2

ma_chorus_processFunction · 0.85
throw_error_atMethod · 0.80

Tested by

no test coverage detected