Csound Csound-dev Csound-tekno Search About

[CSOUND-DEV:4472] csoundAPI and score handling, scoreOffset doesn't work

Date2004-04-10 16:33
Fromgml@xs4all.nl
Subject[CSOUND-DEV:4472] csoundAPI and score handling, scoreOffset doesn't work
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