Csound Csound-dev Csound-tekno Search About

Re: [Cs-dev] Can't rewind the score

Date2005-03-11 14:26
FromMichael Gogins
SubjectRe: [Cs-dev] Can't rewind the score
It may be that these functions only work for VST hosts. I'll look into it and change it if possible.

-----Original Message-----
From: Carlos Pita 
Sent: Mar 11, 2005 5:32 AM
To: csound-devel@lists.sourceforge.net
Subject: [Cs-dev] Can't rewind the score

Hi!

I can neither advance nor rewind the score from the csound API.
In the following example, soundSetScoreOffsetSeconds
and csoundRewindScore do nothing, I mean the score is
performed from beginning to end just one time. I've also
tried setting csoundSetScorePending to 1 although I don't
understand very well which is the point of this function.
Anyway, the results are the same. What am I doing wrong?

Thank you in advance,
Carlos

test.c -----------------------------------------------------------------------------------

#include 

int main()
{
   char *argv[] = { "csound", "-d", "-o", "dac", "test.orc", "test.sco" };
   int argc = 6;

   void *csound = csoundCreate(0);
   csoundCompile(csound, argc, argv);

   csoundSetScoreOffsetSeconds(csound, 1);
   while(!csoundPerformKsmps(csound)) {
      if(csoundGetScoreTime(csound) > 6) break;
   }
   csoundRewindScore(csound);
   while(!csoundPerformKsmps(csound));

   csoundDestroy(csound);

   return 0;
}


test.orc --------------------------------------------------------------------------------

sr      = 44100
kr      = 4410
ksmps   = 10
nchnls  = 1

        instr   1

a1      oscil     10000,     p4,     1
        out       a1

        endin

test.sco ------------------------------------------------------------------------------

f 1 0 4096 10 1

i1     0     1     440
i1     2     1     660
i1     4     1     880

e





-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel





-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2005-03-11 20:58
FromCarlos Pita
SubjectRe: [Cs-dev] Can't rewind the score
AttachmentsNone