| 626 | }; |
| 627 | |
| 628 | void dasAudio_bitcrushInit ( ma_bitcrush * bc, Context * context, LineInfoArg * at ) { |
| 629 | if ( !bc ) context->throw_error_at(at,"bitcrush is null"); |
| 630 | ma_bitcrush_init(bc); |
| 631 | } |
| 632 | void dasAudio_bitcrushProcess ( ma_bitcrush * bc, float * buf, int nFrames, Context * context, LineInfoArg * at ) { |
| 633 | if ( !bc ) context->throw_error_at(at,"bitcrush is null"); |
| 634 | ma_bitcrush_process(bc, buf, nFrames); |
nothing calls this directly
no test coverage detected