Skip to content

Commit

Permalink
feat(zitarev)#: Extend zitarev to allow processing more than one ster…
Browse files Browse the repository at this point in the history
…eo sample at a time
  • Loading branch information
BlueCyro committed Sep 9, 2024
1 parent 0a5af19 commit 07dbc6c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modules/zitarev.c
Original file line number Diff line number Diff line change
Expand Up @@ -1060,3 +1060,10 @@ int sp_zitarev_compute(sp_data *sp, sp_zitarev *p, SPFLOAT *in1, SPFLOAT *in2, S
computezitarev(dsp, 1, faust_in, faust_out);
return SP_OK;
}

int sp_zitarev_compute_many(sp_data *sp, sp_zitarev *p, int count, SPFLOAT **stereo_in, SPFLOAT **stereo_out)
{
zitarev *dsp = p->faust;
computezitarev(dsp, count, stereo_in, stereo_out);
return SP_OK;
}

0 comments on commit 07dbc6c

Please sign in to comment.