| Now that I have rewind working, I am trying to get the score offset working.
Looking at the code in csound.c, all I see is
static MYFLT csoundScoreOffsetSeconds_ = (MYFLT) 0.0;
PUBLIC void csoundSetScoreOffsetSeconds(void *csound, MYFLT offset)
{
csoundScoreOffsetSeconds_ = offset;
}
PUBLIC MYFLT csoundGetScoreOffsetSeconds(void *csound)
{
return csoundScoreOffsetSeconds_;
}
And csoundScoreOffsetSeconds_ is not used anywhere that I could grep.
So I am confused how this works.
Or does csoundVST use its own score processing ?
regards
Gerard
|