| 573 | }; |
| 574 | |
| 575 | void dasAudio_chorusInit ( ma_chorus * chorus, float sample_rate, Context * context, LineInfoArg * at ) { |
| 576 | if ( !chorus ) context->throw_error_at(at,"chorus is null"); |
| 577 | ma_chorus_init(chorus, sample_rate); |
| 578 | } |
| 579 | |
| 580 | void 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"); |
nothing calls this directly
no test coverage detected