diff --git a/README.rst b/README.rst index 1c0775b..79f1cc7 100644 --- a/README.rst +++ b/README.rst @@ -43,7 +43,7 @@ Rendering in real-time using a render thread if changed:k(kchan) == 1 then println "Channel: %d", kchan + 1 endif - asig = {signal} + asig = pinker() * 0.2 outch kchan + 1, asig endin @@ -80,7 +80,7 @@ Render offline if changed:k(kchan) == 1 then println "Channel: %d", kchan + 1 endif - asig = {signal} + asig = pinker() * 0.2 outch kchan + 1, asig endin diff --git a/docs/_build/doctrees/csound7.doctree b/docs/_build/doctrees/csound7.doctree index 9a259f2..f0e4f77 100644 Binary files a/docs/_build/doctrees/csound7.doctree and b/docs/_build/doctrees/csound7.doctree differ diff --git a/docs/_build/doctrees/environment.pickle b/docs/_build/doctrees/environment.pickle index d3ada9a..65397eb 100644 Binary files a/docs/_build/doctrees/environment.pickle and b/docs/_build/doctrees/environment.pickle differ diff --git a/docs/_build/html/_modules/ctcsound7/api6.html b/docs/_build/html/_modules/ctcsound7/api6.html index 0f73152..5bd2d2e 100644 --- a/docs/_build/html/_modules/ctcsound7/api6.html +++ b/docs/_build/html/_modules/ctcsound7/api6.html @@ -2825,6 +2825,9 @@

Source code for ctcsound7.api6

         libcsound.csoundScoreEventAbsoluteAsync(self.cs, cchar(type_), ptr, numFields, ct.c_double(timeOffset))
+ def setEndMarker(self, time: float) -> None: + self.scoreEvent("e", [0, time]) +
[docs] def inputMessage(self, message: str) -> None: diff --git a/docs/_build/html/_modules/ctcsound7/api7.html b/docs/_build/html/_modules/ctcsound7/api7.html index 163af19..1018adc 100644 --- a/docs/_build/html/_modules/ctcsound7/api7.html +++ b/docs/_build/html/_modules/ctcsound7/api7.html @@ -365,6 +365,8 @@

Source code for ctcsound7.api7

 DRAWGRAPHFUNC = ct.CFUNCTYPE(None, ct.c_void_p, ct.POINTER(Windat))
 KILLGRAPHFUNC = ct.CFUNCTYPE(None, ct.c_void_p, ct.POINTER(Windat))
 EXITGRAPHFUNC = ct.CFUNCTYPE(ct.c_int32, ct.c_void_p)
+CSOUNDPERFTHREAD_p = ct.c_void_p
+PROCESSFUNC = ct.CFUNCTYPE(None, ct.c_void_p)
 
 
 def _declareAPI(libcsound, libcspt):
@@ -2267,7 +2269,7 @@ 

Source code for ctcsound7.api7

 
 
[docs] - def event(self, kind: str, pfields: _t.Sequence[float] | np.ndarray, block=True): + def event(self, kind: str, pfields: _t.Sequence[float] | np.ndarray, block=True) -> None: """ Send a new event. @@ -2277,7 +2279,8 @@

Source code for ctcsound7.api7

             block: if True, the operation is blocking. Otherwise it is
                 performed asynchronously
 
-
+        .. note:: this method does not exist in csound 6. For backwards compatibility
+            use :meth:`Csound.scoreEvent` or :meth:`Csound.scoreEventAsync`
         """
         eventtype = _scoreEventToTypenum.get(kind)
         if eventtype is None:
@@ -2285,8 +2288,7 @@ 

Source code for ctcsound7.api7

         p = np.asarray(pfields, dtype=MYFLT)
         ptr = p.ctypes.data_as(ct.POINTER(MYFLT))
         n_fields = ct.c_int32(p.size)
-        libcsound.csoundEvent(self.cs, ct.c_int32(eventtype), ptr, n_fields,
-            ct.c_int32(not block))
+ libcsound.csoundEvent(self.cs, ct.c_int32(eventtype), ptr, n_fields, ct.c_int32(not block))
@@ -2322,6 +2324,9 @@

Source code for ctcsound7.api7

         return self.event(kind=kind, pfields=pfields, block=False)
+ def setEndMarker(self, time: float) -> None: + self.scoreEvent("e", [0, time]) +
[docs] def inputMessage(self, s: str): @@ -2476,8 +2481,13 @@

Source code for ctcsound7.api7

     def scoreTime(self) -> float:
         """Returns the current score time.
 
+        Returns:
+            current time, in seconds
+
         The return value is the time in seconds since the beginning of
-        performance.
+        performance. This can be used to schedule events at absolute times
+
+        .. seealso:: :meth:`Csound.currentTimeSamples`
         """
         return libcsound.csoundGetScoreTime(self.cs)
@@ -2487,9 +2497,9 @@

Source code for ctcsound7.api7

     def isScorePending(self) -> bool:
         """Tells whether Csound score events are performed or not.
 
-        Independently of real-time MIDI events (see set_score_pending()).
+        Independently of real-time MIDI events (see :py:meth:`setScorePending`).
         """
-        return libcsound.csoundIsScorePending(self.cs) != 0
+ return bool(libcsound.csoundIsScorePending(self.cs))
@@ -2540,7 +2550,7 @@

Source code for ctcsound7.api7

     def rewindScore(self) -> None:
         """Rewinds a compiled Csound score.
 
-        It is rewinded to the time specified with set_score_offset_seconds().
+        It is rewinded to the time specified with :py:meth:`setScoreOffsetSeconds()`.
         """
         libcsound.csoundRewindScore(self.cs)
@@ -2844,13 +2854,6 @@

Source code for ctcsound7.api7

 
 
 
-
-
-CSOUNDPERFTHREAD_p = ct.c_void_p
-PROCESSFUNC = ct.CFUNCTYPE(None, ct.c_void_p)
-
-
-
 
[docs] class CsoundPerformanceThread: @@ -3043,7 +3046,10 @@

Source code for ctcsound7.api7

         (pause, send score event, etc.)
         """
         libcspt.csoundPerformanceThreadFlushMessageQueue(self.cpt)
-
+ + + def setEndMarker(self, time: float, absolute=False) -> None: + self.scoreEvent(int(absolute), "e", [0, time])
diff --git a/docs/_build/html/csound7.html b/docs/_build/html/csound7.html index e99b46d..d1b9437 100644 --- a/docs/_build/html/csound7.html +++ b/docs/_build/html/csound7.html @@ -2411,7 +2411,15 @@

Csound 7 performed asynchronously

+
Return type:
+

None

+
+
@@ -2579,20 +2587,27 @@

Csound 7
scoreTime()[source]#

Returns the current score time.

-

The return value is the time in seconds since the beginning of -performance.

Return type:

float

+
Returns:
+

current time, in seconds

+
+

The return value is the time in seconds since the beginning of +performance. This can be used to schedule events at absolute times

+

isScorePending()[source]#

Tells whether Csound score events are performed or not.

-

Independently of real-time MIDI events (see set_score_pending()).

+

Independently of real-time MIDI events (see setScorePending()).

Return type:

bool

@@ -2652,7 +2667,7 @@

Csound 7
rewindScore()[source]#

Rewinds a compiled Csound score.

-

It is rewinded to the time specified with set_score_offset_seconds().

+

It is rewinded to the time specified with setScoreOffsetSeconds().

Return type:

None

diff --git a/docs/_build/html/searchindex.js b/docs/_build/html/searchindex.js index 150e316..52bd5d1 100644 --- a/docs/_build/html/searchindex.js +++ b/docs/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"Csound 6": [[0, null]], "Csound 7": [[1, null]], "Introduction": [[3, null]], "Welcome to ctcsound7\u2019s documentation!": [[2, null]]}, "docnames": ["csound6", "csound7", "index", "introduction"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["csound6.rst", "csound7.rst", "index.rst", "introduction.rst"], "indexentries": {"a4() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.A4", false]], "a4() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.A4", false]], "addspinsample() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.addSpinSample", false]], "allocatedchannels() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.allocatedChannels", false]], "apiversion() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.APIVersion", false]], "apiversion() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.APIVersion", false]], "appendopcode() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.appendOpcode", false]], "appendopcode() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.appendOpcode", false]], "arraydata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.arrayData", false]], "arraydatadimensions() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.arrayDataDimensions", false]], "arraydatasizes() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.arrayDataSizes", false]], "arraydatatype() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.arrayDataType", false]], "audiochannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.audioChannel", false]], "audiochannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.audioChannel", false]], "audiodevlist() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.audioDevList", false]], "audiodevlist() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.audioDevList", false]], "channeldatasize() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.channelDatasize", false]], "channeldatasize() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.channelDatasize", false]], "channelinfo() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.channelInfo", false]], "channelinfo() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.channelInfo", false]], "channellock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.channelLock", false]], "channelptr() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.channelPtr", false]], "channelptr() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.channelPtr", false]], "channelvartypename() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.channelVarTypeName", false]], "cleanup() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.cleanup", false]], "cleanup() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.cleanup", false]], "clearspin() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.clearSpin", false]], "closelibrary() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.closeLibrary", false]], "compile_() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compile_", false]], "compile_() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.compile_", false]], "compileargs() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileArgs", false]], "compilecsd() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileCsd", false]], "compilecsd() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.compileCsd", false]], "compilecsdtext() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileCsdText", false]], "compilecsdtext() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.compileCsdText", false]], "compileorc() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileOrc", false]], "compileorc() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.compileOrc", false]], "compileorcasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileOrcAsync", false]], "compileorcasync() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.compileOrcAsync", false]], "compiletree() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileTree", false]], "compiletreeasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileTreeAsync", false]], "controlchannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.controlChannel", false]], "controlchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.controlChannel", false]], "controlchannelhints() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.controlChannelHints", false]], "controlchannelhints() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.controlChannelHints", false]], "cputime() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.CPUTime", false]], "createbarrier() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createBarrier", false]], "createcircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createCircularBuffer", false]], "createcircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.createCircularBuffer", false]], "createglobalvariable() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createGlobalVariable", false]], "createmessagebuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createMessageBuffer", false]], "createmessagebuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.createMessageBuffer", false]], "createmutex() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createMutex", false]], "createthread() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createThread", false]], "createthread2() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createThread2", false]], "createthreadlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createThreadLock", false]], "cs (ctcsound7.api7.csound attribute)": [[1, "ctcsound7.api7.Csound.cs", false]], "csound (class in ctcsound7.api6)": [[0, "ctcsound7.api6.Csound", false]], "csound (class in ctcsound7.api7)": [[1, "ctcsound7.api7.Csound", false]], "csound() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.csound", false]], "csound() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.csound", false]], "csound() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.csound", false]], "csound() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.csound", false]], "csoundperformancethread (class in ctcsound7.api6)": [[0, "ctcsound7.api6.CsoundPerformanceThread", false]], "csoundperformancethread (class in ctcsound7.api7)": [[1, "ctcsound7.api7.CsoundPerformanceThread", false]], "currentthreadid() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.currentThreadId", false]], "currenttimesamples() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.currentTimeSamples", false]], "currenttimesamples() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.currentTimeSamples", false]], "debug() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.debug", false]], "debug() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.debug", false]], "deletechannellist() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.deleteChannelList", false]], "deletechannellist() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.deleteChannelList", false]], "deletetree() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.deleteTree", false]], "destroybarrier() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyBarrier", false]], "destroycircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyCircularBuffer", false]], "destroycircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.destroyCircularBuffer", false]], "destroyglobalvariable() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyGlobalVariable", false]], "destroymessagebuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyMessageBuffer", false]], "destroymessagebuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.destroyMessageBuffer", false]], "destroymutex() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyMutex", false]], "destroythreadlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyThreadLock", false]], "disposeopcodelist() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.disposeOpcodeList", false]], "env() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.env", false]], "env() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.env", false]], "evalcode() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.evalCode", false]], "evalcode() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.evalCode", false]], "event() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.event", false]], "eventstring() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.eventString", false]], "firstmessage() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.firstMessage", false]], "firstmessage() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.firstMessage", false]], "firstmessageattr() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.firstMessageAttr", false]], "firstmessageattr() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.firstMessageAttr", false]], "flushcircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.flushCircularBuffer", false]], "flushcircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.flushCircularBuffer", false]], "flushmessagequeue() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.flushMessageQueue", false]], "flushmessagequeue() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.flushMessageQueue", false]], "frompointer (ctcsound7.api7.csound attribute)": [[1, "ctcsound7.api7.Csound.fromPointer", false]], "get0dbfs() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.get0dBFS", false]], "get0dbfs() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.get0dBFS", false]], "getlibrarysymbol() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.getLibrarySymbol", false]], "getopcodes() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.getOpcodes", false]], "hostdata() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.hostData", false]], "hostdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.hostData", false]], "initarraychannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.initArrayChannel", false]], "initpvschannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.initPvsChannel", false]], "inittimerstruct() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.initTimerStruct", false]], "inputbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.inputBuffer", false]], "inputbuffersize() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.inputBufferSize", false]], "inputmessage() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.inputMessage", false]], "inputmessage() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.inputMessage", false]], "inputmessage() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.inputMessage", false]], "inputmessage() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.inputMessage", false]], "inputmessageasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.inputMessageAsync", false]], "inputname() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.inputName", false]], "isnamedgen() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.isNamedGEN", false]], "isrunning() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.isRunning", false]], "isrunning() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.isRunning", false]], "isscorepending() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.isScorePending", false]], "isscorepending() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.isScorePending", false]], "itermessages() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.iterMessages", false]], "itermessages() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.iterMessages", false]], "join() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.join", false]], "join() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.join", false]], "jointhread() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.joinThread", false]], "keypress() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.keyPress", false]], "keypress() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.keyPress", false]], "killinstance() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.killInstance", false]], "kr() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.kr", false]], "kr() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.kr", false]], "ksmps() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.ksmps", false]], "ksmps() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.ksmps", false]], "listchannels() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.listChannels", false]], "listchannels() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.listChannels", false]], "listutilities() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.listUtilities", false]], "loadplugins() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.loadPlugins", false]], "loadplugins() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.loadPlugins", false]], "lockchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.lockChannel", false]], "lockmutex() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.lockMutex", false]], "lockmutexnowait() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.lockMutexNoWait", false]], "message() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.message", false]], "message() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.message", false]], "messagecnt() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.messageCnt", false]], "messagecnt() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.messageCnt", false]], "messagelevel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.messageLevel", false]], "messagelevel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.messageLevel", false]], "messages() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.messageS", false]], "messages() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.messageS", false]], "mididevlist() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.midiDevList", false]], "mididevlist() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.midiDevList", false]], "module() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.module", false]], "module() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.module", false]], "modules() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.modules", false]], "modules() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.modules", false]], "namedgen() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.namedGEN", false]], "namedgens() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.namedGens", false]], "nchnls() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.nchnls", false]], "nchnls() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.nchnls", false]], "nchnlsinput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.nchnlsInput", false]], "nchnlsinput() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.nchnlsInput", false]], "newopcodelist() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.newOpcodeList", false]], "notifythreadlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.notifyThreadLock", false]], "openlibrary() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.openLibrary", false]], "outputbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.outputBuffer", false]], "outputbuffersize() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.outputBufferSize", false]], "outputformat() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.outputFormat", false]], "outputname() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.outputName", false]], "params() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.params", false]], "params() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.params", false]], "parseorc() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.parseOrc", false]], "pause() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.pause", false]], "pause() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.pause", false]], "peekcircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.peekCircularBuffer", false]], "peekcircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.peekCircularBuffer", false]], "perform() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.perform", false]], "performancethread() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.performanceThread", false]], "performancethread() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.performanceThread", false]], "performbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.performBuffer", false]], "performksmps() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.performKsmps", false]], "performksmps() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.performKsmps", false]], "play() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.play", false]], "play() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.play", false]], "popfirstmessage() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.popFirstMessage", false]], "popfirstmessage() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.popFirstMessage", false]], "processcallback() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.processCallback", false]], "processcallback() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.processCallback", false]], "pvschannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.pvsChannel", false]], "pvsdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsData", false]], "pvsdatafftsize() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsDataFftSize", false]], "pvsdataformat() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsDataFormat", false]], "pvsdataframecount() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsDataFramecount", false]], "pvsdataoverlap() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsDataOverlap", false]], "pvsdatawindowsize() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsDataWindowSize", false]], "queryglobalvariable() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.queryGlobalVariable", false]], "queryglobalvariablenocheck() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.queryGlobalVariableNoCheck", false]], "rand31() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.rand31", false]], "randmt() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.randMT", false]], "randomseedfromtime() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.randomSeedFromTime", false]], "readcircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.readCircularBuffer", false]], "readcircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.readCircularBuffer", false]], "readmessage() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.readMessage", false]], "readmessage() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.readMessage", false]], "readscore() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.readScore", false]], "readscoreasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.readScoreAsync", false]], "realtime() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.realTime", false]], "record() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.record", false]], "record() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.record", false]], "registerkeyboardcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.registerKeyboardCallback", false]], "registerkeyboardcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.registerKeyboardCallback", false]], "registersenseeventcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.registerSenseEventCallback", false]], "removekeyboardcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.removeKeyboardCallback", false]], "removekeyboardcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.removeKeyboardCallback", false]], "reset() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.reset", false]], "reset() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.reset", false]], "rewindscore() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.rewindScore", false]], "rewindscore() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.rewindScore", false]], "rtplayduserdata() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.rtPlaydUserData", false]], "rtrecorduserdata() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.rtRecordUserData", false]], "runcommand() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.runCommand", false]], "runutility() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.runUtility", false]], "runutility() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.runUtility", false]], "scoreevent() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreEvent", false]], "scoreevent() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.scoreEvent", false]], "scoreevent() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.scoreEvent", false]], "scoreevent() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.scoreEvent", false]], "scoreeventabsolute() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreEventAbsolute", false]], "scoreeventabsoluteasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreEventAbsoluteAsync", false]], "scoreeventasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreEventAsync", false]], "scoreeventasync() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.scoreEventAsync", false]], "scoreoffsetseconds() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreOffsetSeconds", false]], "scoreoffsetseconds() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.scoreOffsetSeconds", false]], "scoretime() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreTime", false]], "scoretime() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.scoreTime", false]], "seedrandmt() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.seedRandMT", false]], "setarraydata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setArrayData", false]], "setaudiochannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setAudioChannel", false]], "setaudiochannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setAudioChannel", false]], "setaudiodevlistcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setAudioDevListCallback", false]], "setcontrolchannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setControlChannel", false]], "setcontrolchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setControlChannel", false]], "setcontrolchannelhints() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setControlChannelHints", false]], "setcontrolchannelhints() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setControlChannelHints", false]], "setcscorecallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setCscoreCallback", false]], "setdebug() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setDebug", false]], "setdebug() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setDebug", false]], "setdrawgraphcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setDrawGraphCallback", false]], "setdrawgraphcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setDrawGraphCallback", false]], "setexitgraphcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExitGraphCallback", false]], "setexitgraphcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExitGraphCallback", false]], "setexternalmidierrorstringcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiErrorStringCallback", false]], "setexternalmidierrorstringcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiErrorStringCallback", false]], "setexternalmidiinclosecallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiInCloseCallback", false]], "setexternalmidiinclosecallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiInCloseCallback", false]], "setexternalmidiinopencallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiInOpenCallback", false]], "setexternalmidiinopencallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiInOpenCallback", false]], "setexternalmidioutclosecallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiOutCloseCallback", false]], "setexternalmidioutclosecallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiOutCloseCallback", false]], "setexternalmidioutopencallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiOutOpenCallback", false]], "setexternalmidioutopencallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiOutOpenCallback", false]], "setexternalmidireadcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiReadCallback", false]], "setexternalmidireadcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiReadCallback", false]], "setexternalmidiwritecallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiWriteCallback", false]], "setexternalmidiwritecallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiWriteCallback", false]], "setfileopencallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setFileOpenCallback", false]], "setglobalenv() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setGlobalEnv", false]], "setglobalenv() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setGlobalEnv", false]], "sethostaudioio() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setHostAudioIO", false]], "sethostdata() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setHostData", false]], "sethostdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setHostData", false]], "sethostimplementedaudioio() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setHostImplementedAudioIO", false]], "sethostimplementedmidiio() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setHostImplementedMidiIO", false]], "sethostimplementedmidiio() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setHostImplementedMIDIIO", false]], "sethostmidiio() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setHostMidiIO", false]], "setinput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setInput", false]], "setinput() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setInput", false]], "setinputchannelcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setInputChannelCallback", false]], "setinputchannelcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setInputChannelCallback", false]], "setisgraphable() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setIsGraphable", false]], "setisgraphable() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setIsGraphable", false]], "setkillgraphcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setKillGraphCallback", false]], "setkillgraphcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setKillGraphCallback", false]], "setlanguage() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setLanguage", false]], "setmakegraphcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMakeGraphCallback", false]], "setmakegraphcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setMakeGraphCallback", false]], "setmessagelevel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMessageLevel", false]], "setmessagelevel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setMessageLevel", false]], "setmessagestringcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setMessageStringCallback", false]], "setmididevicelistcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setMidiDeviceListCallback", false]], "setmididevlistcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMidiDevListCallback", false]], "setmidifileinput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMIDIFileInput", false]], "setmidifileoutput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMIDIFileOutput", false]], "setmidiinput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMIDIInput", false]], "setmidimodule() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMidiModule", false]], "setmidimodule() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setMidiModule", false]], "setmidioutput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMIDIOutput", false]], "setopenfilecallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setOpenFileCallback", false]], "setopensoundfilecallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setOpenSoundFileCallback", false]], "setoption() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setOption", false]], "setoption() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setOption", false]], "setoutput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setOutput", false]], "setoutput() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setOutput", false]], "setoutputchannelcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setOutputChannelCallback", false]], "setoutputchannelcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setOutputChannelCallback", false]], "setparams() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setParams", false]], "setplayopencallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setPlayOpenCallback", false]], "setprocesscallback() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.setProcessCallback", false]], "setprocesscallback() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.setProcessCallback", false]], "setpvschannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setPvsChannel", false]], "setpvsdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setPvsData", false]], "setrecordopencallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setRecordOpenCallback", false]], "setrtaudiomodule() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setRTAudioModule", false]], "setrtaudiomodule() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setRTAudioModule", false]], "setrtclosecallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setRtCloseCallback", false]], "setrtplaycallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setRtPlayCallback", false]], "setrtrecordcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setRtRecordCallback", false]], "setscoreoffsetseconds() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setScoreOffsetSeconds", false]], "setscoreoffsetseconds() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.setScoreOffsetSeconds", false]], "setscoreoffsetseconds() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setScoreOffsetSeconds", false]], "setscoreoffsetseconds() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.setScoreOffsetSeconds", false]], "setscorepending() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setScorePending", false]], "setscorepending() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setScorePending", false]], "setspinsample() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setSpinSample", false]], "setstringchannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setStringChannel", false]], "setstringchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setStringChannel", false]], "setstringdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setStringData", false]], "setyieldcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setYieldCallback", false]], "sizeofmyflt() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.sizeOfMYFLT", false]], "sizeofmyflt() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.sizeOfMYFLT", false]], "sleep() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.sleep", false]], "sleep() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.sleep", false]], "spin() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spin", false]], "spin() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.spin", false]], "spinlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spinLock", false]], "spinlockinit() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spinLockInit", false]], "spintrylock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spinTryLock", false]], "spinunlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spinUnlock", false]], "spout() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spout", false]], "spout() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.spout", false]], "spoutsample() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spoutSample", false]], "sr() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.sr", false]], "sr() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.sr", false]], "start() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.start", false]], "start() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.start", false]], "status() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.status", false]], "status() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.status", false]], "stop() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.stop", false]], "stop() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.stop", false]], "stop() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.stop", false]], "stop() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.stop", false]], "stoprecord() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.stopRecord", false]], "stoprecord() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.stopRecord", false]], "stopudpconsole() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.stopUDPConsole", false]], "stringchannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.stringChannel", false]], "stringchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.stringChannel", false]], "stringdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.stringData", false]], "systemsr() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.systemSr", false]], "systemsr() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.systemSr", false]], "table() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.table", false]], "table() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.table", false]], "tableargs() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableArgs", false]], "tableargs() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.tableArgs", false]], "tablecopyin() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableCopyIn", false]], "tablecopyinasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableCopyInAsync", false]], "tablecopyout() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableCopyOut", false]], "tablecopyoutasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableCopyOutAsync", false]], "tableget() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableGet", false]], "tablelength() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableLength", false]], "tablelength() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.tableLength", false]], "tableset() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableSet", false]], "togglepause() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.togglePause", false]], "togglepause() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.togglePause", false]], "udpconsole() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.UDPConsole", false]], "udpserverclose() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.UDPServerClose", false]], "udpserverstart() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.UDPServerStart", false]], "udpserverstatus() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.UDPServerStatus", false]], "unlockchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.unlockChannel", false]], "unlockmutex() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.unlockMutex", false]], "utilitydescription() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.utilityDescription", false]], "version() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.version", false]], "version() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.version", false]], "waitbarrier() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.waitBarrier", false]], "waitthreadlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.waitThreadLock", false]], "waitthreadlocknotimeout() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.waitThreadLockNoTimeout", false]], "writecircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.writeCircularBuffer", false]], "writecircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.writeCircularBuffer", false]]}, "objects": {"ctcsound7.api6": [[0, 0, 1, "", "Csound"], [0, 0, 1, "", "CsoundPerformanceThread"]], "ctcsound7.api6.Csound": [[0, 1, 1, "", "A4"], [0, 1, 1, "", "APIVersion"], [0, 1, 1, "", "CPUTime"], [0, 1, 1, "", "UDPConsole"], [0, 1, 1, "", "UDPServerClose"], [0, 1, 1, "", "UDPServerStart"], [0, 1, 1, "", "UDPServerStatus"], [0, 1, 1, "", "addSpinSample"], [0, 1, 1, "", "appendOpcode"], [0, 1, 1, "", "audioChannel"], [0, 1, 1, "", "audioDevList"], [0, 1, 1, "", "channelDatasize"], [0, 1, 1, "", "channelInfo"], [0, 1, 1, "", "channelLock"], [0, 1, 1, "", "channelPtr"], [0, 1, 1, "", "cleanup"], [0, 1, 1, "", "clearSpin"], [0, 1, 1, "", "closeLibrary"], [0, 1, 1, "", "compileArgs"], [0, 1, 1, "", "compileCsd"], [0, 1, 1, "", "compileCsdText"], [0, 1, 1, "", "compileOrc"], [0, 1, 1, "", "compileOrcAsync"], [0, 1, 1, "", "compileTree"], [0, 1, 1, "", "compileTreeAsync"], [0, 1, 1, "", "compile_"], [0, 1, 1, "", "controlChannel"], [0, 1, 1, "", "controlChannelHints"], [0, 1, 1, "", "createBarrier"], [0, 1, 1, "", "createCircularBuffer"], [0, 1, 1, "", "createGlobalVariable"], [0, 1, 1, "", "createMessageBuffer"], [0, 1, 1, "", "createMutex"], [0, 1, 1, "", "createThread"], [0, 1, 1, "", "createThread2"], [0, 1, 1, "", "createThreadLock"], [0, 1, 1, "", "csound"], [0, 1, 1, "", "currentThreadId"], [0, 1, 1, "", "currentTimeSamples"], [0, 1, 1, "", "debug"], [0, 1, 1, "", "deleteChannelList"], [0, 1, 1, "", "deleteTree"], [0, 1, 1, "", "destroyBarrier"], [0, 1, 1, "", "destroyCircularBuffer"], [0, 1, 1, "", "destroyGlobalVariable"], [0, 1, 1, "", "destroyMessageBuffer"], [0, 1, 1, "", "destroyMutex"], [0, 1, 1, "", "destroyThreadLock"], [0, 1, 1, "", "disposeOpcodeList"], [0, 1, 1, "", "env"], [0, 1, 1, "", "evalCode"], [0, 1, 1, "", "firstMessage"], [0, 1, 1, "", "firstMessageAttr"], [0, 1, 1, "", "flushCircularBuffer"], [0, 1, 1, "", "get0dBFS"], [0, 1, 1, "", "getLibrarySymbol"], [0, 1, 1, "", "getOpcodes"], [0, 1, 1, "", "hostData"], [0, 1, 1, "", "initTimerStruct"], [0, 1, 1, "", "inputBuffer"], [0, 1, 1, "", "inputBufferSize"], [0, 1, 1, "", "inputMessage"], [0, 1, 1, "", "inputMessageAsync"], [0, 1, 1, "", "inputName"], [0, 1, 1, "", "isNamedGEN"], [0, 1, 1, "", "isScorePending"], [0, 1, 1, "", "iterMessages"], [0, 1, 1, "", "joinThread"], [0, 1, 1, "", "keyPress"], [0, 1, 1, "", "killInstance"], [0, 1, 1, "", "kr"], [0, 1, 1, "", "ksmps"], [0, 1, 1, "", "listChannels"], [0, 1, 1, "", "listUtilities"], [0, 1, 1, "", "loadPlugins"], [0, 1, 1, "", "lockMutex"], [0, 1, 1, "", "lockMutexNoWait"], [0, 1, 1, "", "message"], [0, 1, 1, "", "messageCnt"], [0, 1, 1, "", "messageLevel"], [0, 1, 1, "", "messageS"], [0, 1, 1, "", "midiDevList"], [0, 1, 1, "", "module"], [0, 1, 1, "", "modules"], [0, 1, 1, "", "namedGEN"], [0, 1, 1, "", "namedGens"], [0, 1, 1, "", "nchnls"], [0, 1, 1, "", "nchnlsInput"], [0, 1, 1, "", "newOpcodeList"], [0, 1, 1, "", "notifyThreadLock"], [0, 1, 1, "", "openLibrary"], [0, 1, 1, "", "outputBuffer"], [0, 1, 1, "", "outputBufferSize"], [0, 1, 1, "", "outputFormat"], [0, 1, 1, "", "outputName"], [0, 1, 1, "", "params"], [0, 1, 1, "", "parseOrc"], [0, 1, 1, "", "peekCircularBuffer"], [0, 1, 1, "", "perform"], [0, 1, 1, "", "performBuffer"], [0, 1, 1, "", "performKsmps"], [0, 1, 1, "", "performanceThread"], [0, 1, 1, "", "popFirstMessage"], [0, 1, 1, "", "pvsChannel"], [0, 1, 1, "", "queryGlobalVariable"], [0, 1, 1, "", "queryGlobalVariableNoCheck"], [0, 1, 1, "", "rand31"], [0, 1, 1, "", "randMT"], [0, 1, 1, "", "randomSeedFromTime"], [0, 1, 1, "", "readCircularBuffer"], [0, 1, 1, "", "readMessage"], [0, 1, 1, "", "readScore"], [0, 1, 1, "", "readScoreAsync"], [0, 1, 1, "", "realTime"], [0, 1, 1, "", "registerKeyboardCallback"], [0, 1, 1, "", "registerSenseEventCallback"], [0, 1, 1, "", "removeKeyboardCallback"], [0, 1, 1, "", "reset"], [0, 1, 1, "", "rewindScore"], [0, 1, 1, "", "rtPlaydUserData"], [0, 1, 1, "", "rtRecordUserData"], [0, 1, 1, "", "runCommand"], [0, 1, 1, "", "runUtility"], [0, 1, 1, "", "scoreEvent"], [0, 1, 1, "", "scoreEventAbsolute"], [0, 1, 1, "", "scoreEventAbsoluteAsync"], [0, 1, 1, "", "scoreEventAsync"], [0, 1, 1, "", "scoreOffsetSeconds"], [0, 1, 1, "", "scoreTime"], [0, 1, 1, "", "seedRandMT"], [0, 1, 1, "", "setAudioChannel"], [0, 1, 1, "", "setAudioDevListCallback"], [0, 1, 1, "", "setControlChannel"], [0, 1, 1, "", "setControlChannelHints"], [0, 1, 1, "", "setCscoreCallback"], [0, 1, 1, "", "setDebug"], [0, 1, 1, "", "setDrawGraphCallback"], [0, 1, 1, "", "setExitGraphCallback"], [0, 1, 1, "", "setExternalMidiErrorStringCallback"], [0, 1, 1, "", "setExternalMidiInCloseCallback"], [0, 1, 1, "", "setExternalMidiInOpenCallback"], [0, 1, 1, "", "setExternalMidiOutCloseCallback"], [0, 1, 1, "", "setExternalMidiOutOpenCallback"], [0, 1, 1, "", "setExternalMidiReadCallback"], [0, 1, 1, "", "setExternalMidiWriteCallback"], [0, 1, 1, "", "setFileOpenCallback"], [0, 1, 1, "", "setGlobalEnv"], [0, 1, 1, "", "setHostData"], [0, 1, 1, "", "setHostImplementedAudioIO"], [0, 1, 1, "", "setHostImplementedMidiIO"], [0, 1, 1, "", "setInput"], [0, 1, 1, "", "setInputChannelCallback"], [0, 1, 1, "", "setIsGraphable"], [0, 1, 1, "", "setKillGraphCallback"], [0, 1, 1, "", "setLanguage"], [0, 1, 1, "", "setMIDIFileInput"], [0, 1, 1, "", "setMIDIFileOutput"], [0, 1, 1, "", "setMIDIInput"], [0, 1, 1, "", "setMIDIOutput"], [0, 1, 1, "", "setMakeGraphCallback"], [0, 1, 1, "", "setMessageLevel"], [0, 1, 1, "", "setMidiDevListCallback"], [0, 1, 1, "", "setMidiModule"], [0, 1, 1, "", "setOption"], [0, 1, 1, "", "setOutput"], [0, 1, 1, "", "setOutputChannelCallback"], [0, 1, 1, "", "setParams"], [0, 1, 1, "", "setPlayOpenCallback"], [0, 1, 1, "", "setPvsChannel"], [0, 1, 1, "", "setRTAudioModule"], [0, 1, 1, "", "setRecordOpenCallback"], [0, 1, 1, "", "setRtCloseCallback"], [0, 1, 1, "", "setRtPlayCallback"], [0, 1, 1, "", "setRtRecordCallback"], [0, 1, 1, "", "setScoreOffsetSeconds"], [0, 1, 1, "", "setScorePending"], [0, 1, 1, "", "setSpinSample"], [0, 1, 1, "", "setStringChannel"], [0, 1, 1, "", "setYieldCallback"], [0, 1, 1, "", "sizeOfMYFLT"], [0, 1, 1, "", "sleep"], [0, 1, 1, "", "spin"], [0, 1, 1, "", "spinLock"], [0, 1, 1, "", "spinLockInit"], [0, 1, 1, "", "spinTryLock"], [0, 1, 1, "", "spinUnlock"], [0, 1, 1, "", "spout"], [0, 1, 1, "", "spoutSample"], [0, 1, 1, "", "sr"], [0, 1, 1, "", "start"], [0, 1, 1, "", "stop"], [0, 1, 1, "", "stopUDPConsole"], [0, 1, 1, "", "stringChannel"], [0, 1, 1, "", "systemSr"], [0, 1, 1, "", "table"], [0, 1, 1, "", "tableArgs"], [0, 1, 1, "", "tableCopyIn"], [0, 1, 1, "", "tableCopyInAsync"], [0, 1, 1, "", "tableCopyOut"], [0, 1, 1, "", "tableCopyOutAsync"], [0, 1, 1, "", "tableGet"], [0, 1, 1, "", "tableLength"], [0, 1, 1, "", "tableSet"], [0, 1, 1, "", "unlockMutex"], [0, 1, 1, "", "utilityDescription"], [0, 1, 1, "", "version"], [0, 1, 1, "", "waitBarrier"], [0, 1, 1, "", "waitThreadLock"], [0, 1, 1, "", "waitThreadLockNoTimeout"], [0, 1, 1, "", "writeCircularBuffer"]], "ctcsound7.api6.CsoundPerformanceThread": [[0, 1, 1, "", "csound"], [0, 1, 1, "", "flushMessageQueue"], [0, 1, 1, "", "inputMessage"], [0, 1, 1, "", "isRunning"], [0, 1, 1, "", "join"], [0, 1, 1, "", "pause"], [0, 1, 1, "", "play"], [0, 1, 1, "", "processCallback"], [0, 1, 1, "", "record"], [0, 1, 1, "", "scoreEvent"], [0, 1, 1, "", "setProcessCallback"], [0, 1, 1, "", "setScoreOffsetSeconds"], [0, 1, 1, "", "status"], [0, 1, 1, "", "stop"], [0, 1, 1, "", "stopRecord"], [0, 1, 1, "", "togglePause"]], "ctcsound7.api7": [[1, 0, 1, "", "Csound"], [1, 0, 1, "", "CsoundPerformanceThread"]], "ctcsound7.api7.Csound": [[1, 1, 1, "", "A4"], [1, 1, 1, "", "APIVersion"], [1, 1, 1, "", "allocatedChannels"], [1, 1, 1, "", "appendOpcode"], [1, 1, 1, "", "arrayData"], [1, 1, 1, "", "arrayDataDimensions"], [1, 1, 1, "", "arrayDataSizes"], [1, 1, 1, "", "arrayDataType"], [1, 1, 1, "", "audioChannel"], [1, 1, 1, "", "audioDevList"], [1, 1, 1, "", "channelDatasize"], [1, 1, 1, "", "channelInfo"], [1, 1, 1, "", "channelPtr"], [1, 1, 1, "", "channelVarTypeName"], [1, 1, 1, "", "cleanup"], [1, 1, 1, "", "compileCsd"], [1, 1, 1, "", "compileCsdText"], [1, 1, 1, "", "compileOrc"], [1, 1, 1, "", "compileOrcAsync"], [1, 1, 1, "", "compile_"], [1, 1, 1, "", "controlChannel"], [1, 1, 1, "", "controlChannelHints"], [1, 1, 1, "", "createCircularBuffer"], [1, 1, 1, "", "createMessageBuffer"], [1, 2, 1, "", "cs"], [1, 1, 1, "", "csound"], [1, 1, 1, "", "currentTimeSamples"], [1, 1, 1, "", "debug"], [1, 1, 1, "", "deleteChannelList"], [1, 1, 1, "", "destroyCircularBuffer"], [1, 1, 1, "", "destroyMessageBuffer"], [1, 1, 1, "", "env"], [1, 1, 1, "", "evalCode"], [1, 1, 1, "", "event"], [1, 1, 1, "", "eventString"], [1, 1, 1, "", "firstMessage"], [1, 1, 1, "", "firstMessageAttr"], [1, 1, 1, "", "flushCircularBuffer"], [1, 2, 1, "", "fromPointer"], [1, 1, 1, "", "get0dBFS"], [1, 1, 1, "", "hostData"], [1, 1, 1, "", "initArrayChannel"], [1, 1, 1, "", "initPvsChannel"], [1, 1, 1, "", "inputMessage"], [1, 1, 1, "", "isScorePending"], [1, 1, 1, "", "iterMessages"], [1, 1, 1, "", "keyPress"], [1, 1, 1, "", "kr"], [1, 1, 1, "", "ksmps"], [1, 1, 1, "", "listChannels"], [1, 1, 1, "", "loadPlugins"], [1, 1, 1, "", "lockChannel"], [1, 1, 1, "", "message"], [1, 1, 1, "", "messageCnt"], [1, 1, 1, "", "messageLevel"], [1, 1, 1, "", "messageS"], [1, 1, 1, "", "midiDevList"], [1, 1, 1, "", "module"], [1, 1, 1, "", "modules"], [1, 1, 1, "", "nchnls"], [1, 1, 1, "", "nchnlsInput"], [1, 1, 1, "", "params"], [1, 1, 1, "", "peekCircularBuffer"], [1, 1, 1, "", "performKsmps"], [1, 1, 1, "", "performanceThread"], [1, 1, 1, "", "popFirstMessage"], [1, 1, 1, "", "pvsData"], [1, 1, 1, "", "pvsDataFftSize"], [1, 1, 1, "", "pvsDataFormat"], [1, 1, 1, "", "pvsDataFramecount"], [1, 1, 1, "", "pvsDataOverlap"], [1, 1, 1, "", "pvsDataWindowSize"], [1, 1, 1, "", "readCircularBuffer"], [1, 1, 1, "", "readMessage"], [1, 1, 1, "", "registerKeyboardCallback"], [1, 1, 1, "", "removeKeyboardCallback"], [1, 1, 1, "", "reset"], [1, 1, 1, "", "rewindScore"], [1, 1, 1, "", "runUtility"], [1, 1, 1, "", "scoreEvent"], [1, 1, 1, "", "scoreEventAsync"], [1, 1, 1, "", "scoreOffsetSeconds"], [1, 1, 1, "", "scoreTime"], [1, 1, 1, "", "setArrayData"], [1, 1, 1, "", "setAudioChannel"], [1, 1, 1, "", "setControlChannel"], [1, 1, 1, "", "setControlChannelHints"], [1, 1, 1, "", "setDebug"], [1, 1, 1, "", "setDrawGraphCallback"], [1, 1, 1, "", "setExitGraphCallback"], [1, 1, 1, "", "setExternalMidiErrorStringCallback"], [1, 1, 1, "", "setExternalMidiInCloseCallback"], [1, 1, 1, "", "setExternalMidiInOpenCallback"], [1, 1, 1, "", "setExternalMidiOutCloseCallback"], [1, 1, 1, "", "setExternalMidiOutOpenCallback"], [1, 1, 1, "", "setExternalMidiReadCallback"], [1, 1, 1, "", "setExternalMidiWriteCallback"], [1, 1, 1, "", "setGlobalEnv"], [1, 1, 1, "", "setHostAudioIO"], [1, 1, 1, "", "setHostData"], [1, 1, 1, "", "setHostImplementedMIDIIO"], [1, 1, 1, "", "setHostMidiIO"], [1, 1, 1, "", "setInput"], [1, 1, 1, "", "setInputChannelCallback"], [1, 1, 1, "", "setIsGraphable"], [1, 1, 1, "", "setKillGraphCallback"], [1, 1, 1, "", "setMakeGraphCallback"], [1, 1, 1, "", "setMessageLevel"], [1, 1, 1, "", "setMessageStringCallback"], [1, 1, 1, "", "setMidiDeviceListCallback"], [1, 1, 1, "", "setMidiModule"], [1, 1, 1, "", "setOpenFileCallback"], [1, 1, 1, "", "setOpenSoundFileCallback"], [1, 1, 1, "", "setOption"], [1, 1, 1, "", "setOutput"], [1, 1, 1, "", "setOutputChannelCallback"], [1, 1, 1, "", "setPvsData"], [1, 1, 1, "", "setRTAudioModule"], [1, 1, 1, "", "setScoreOffsetSeconds"], [1, 1, 1, "", "setScorePending"], [1, 1, 1, "", "setStringChannel"], [1, 1, 1, "", "setStringData"], [1, 1, 1, "", "sizeOfMYFLT"], [1, 1, 1, "", "sleep"], [1, 1, 1, "", "spin"], [1, 1, 1, "", "spout"], [1, 1, 1, "", "sr"], [1, 1, 1, "", "start"], [1, 1, 1, "", "stop"], [1, 1, 1, "", "stringChannel"], [1, 1, 1, "", "stringData"], [1, 1, 1, "", "systemSr"], [1, 1, 1, "", "table"], [1, 1, 1, "", "tableArgs"], [1, 1, 1, "", "tableLength"], [1, 1, 1, "", "unlockChannel"], [1, 1, 1, "", "version"], [1, 1, 1, "", "writeCircularBuffer"]], "ctcsound7.api7.CsoundPerformanceThread": [[1, 1, 1, "", "csound"], [1, 1, 1, "", "flushMessageQueue"], [1, 1, 1, "", "inputMessage"], [1, 1, 1, "", "isRunning"], [1, 1, 1, "", "join"], [1, 1, 1, "", "pause"], [1, 1, 1, "", "play"], [1, 1, 1, "", "processCallback"], [1, 1, 1, "", "record"], [1, 1, 1, "", "scoreEvent"], [1, 1, 1, "", "setProcessCallback"], [1, 1, 1, "", "setScoreOffsetSeconds"], [1, 1, 1, "", "status"], [1, 1, 1, "", "stop"], [1, 1, 1, "", "stopRecord"], [1, 1, 1, "", "togglePause"]]}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "attribute", "Python attribute"]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:attribute"}, "terms": {"": [0, 1], "0": [0, 1], "00": 0, "0dbf": [0, 1], "0x10000": [0, 1], "1": [0, 1], "10": [0, 1], "100": 0, "1000": [0, 1], "1024": [0, 1], "16": [0, 1], "18": [0, 1], "2": [0, 1], "2147483646": 0, "2147483647": 0, "231": [0, 1], "24": [0, 1], "24bit": [0, 1], "255": 0, "32": [0, 1], "4": [0, 1], "5": [0, 1], "6": [1, 2], "6180": [0, 1], "65535": [0, 1], "65536": [0, 1], "7": [0, 2], "742938285": 0, "8": 0, "A": [0, 1], "As": [0, 1], "At": [0, 1], "But": 1, "For": [0, 1], "If": [0, 1], "In": [0, 1], "It": [0, 1], "NOT": 0, "Not": [0, 1], "OR": [0, 1], "On": [0, 1], "One": [0, 1], "Or": [0, 1], "The": [0, 1], "These": [0, 1], "To": 0, "With": [0, 1], "a1": [0, 1], "a4": [0, 1], "about": [0, 1], "abov": [0, 1], "absolut": 0, "absp2mod": [0, 1], "access": [0, 1], "account": 0, "acquir": 0, "across": 0, "activ": [0, 1], "actual": [0, 1], "ad": [0, 1], "adat": 1, "adata": 1, "add": [0, 1], "addit": [0, 1], "addr": 0, "address": [0, 1], "addspinsampl": 0, "affect": 0, "after": [0, 1], "again": [0, 1], "aiff": [0, 1], "alaw": [0, 1], "alia": 1, "all": [0, 1], "alloc": [0, 1], "allocatedchannel": 1, "allow": [0, 1], "allowreleas": 0, "alphabet": 0, "alreadi": [0, 1], "also": [0, 1], "altern": 1, "alwai": [0, 1], "an": [0, 1], "analysi": [0, 1], "ani": [0, 1], "anoth": 0, "anyth": 1, "aopfunc": 0, "api": [0, 1], "api6": 0, "api7": 1, "apivers": [0, 1], "append": [0, 1], "appendopcod": [0, 1], "appli": 1, "applic": [0, 1], "ar": [0, 1], "arg": [0, 1], "argument": [0, 1], "arrai": [0, 1], "arraydat": 1, "arraydat_p": 1, "arraydata": 1, "arraydatadimens": 1, "arraydatas": 1, "arraydatatyp": 1, "ascii": [0, 1], "associ": [0, 1], "assum": [0, 1], "async": [0, 1], "asynchron": [0, 1], "atom": 0, "attach": [0, 1], "attempt": 0, "attr": [0, 1], "attribut": [0, 1], "au": [0, 1], "au_hal": [0, 1], "audio": [0, 1], "audiochannel": [0, 1], "audiodevic": [0, 1], "audiodevlist": [0, 1], "avail": [0, 1], "avr": [0, 1], "b": 0, "backend": 1, "barrier": 0, "becaus": [0, 1], "becom": [0, 1], "been": [0, 1], "befor": [0, 1], "begin": [0, 1], "behav": 0, "behavior": 0, "being": [0, 1], "below": [0, 1], "between": [0, 1], "bharris3": 1, "bharrismin": 1, "bidirect": [0, 1], "bit": [0, 1], "bitwis": [0, 1], "blackman": 1, "blank": 0, "block": [0, 1], "bool": [0, 1], "boolean": [0, 1], "both": [0, 1], "bound": 0, "break": [0, 1], "bu": 0, "buf": 0, "buffer": [0, 1], "bufsiz": 0, "byte": [0, 1], "c": [0, 1], "c_char_p": [0, 1], "c_int": 0, "c_int32": 0, "c_void_p": [0, 1], "caf": [0, 1], "call": [0, 1], "callabl": [0, 1], "callback": [0, 1], "caller": [0, 1], "can": [0, 1], "cannot": [0, 1], "care": 0, "carri": 1, "case": [0, 1], "cast": [0, 1], "certain": 1, "chang": 0, "channel": [0, 1], "channeldatas": [0, 1], "channelinfo": [0, 1], "channellock": 0, "channelptr": [0, 1], "channelvartypenam": 1, "charact": 0, "characterist": [0, 1], "check": 0, "child": 0, "chnparam": [0, 1], "circular": [0, 1], "circularbuf": [0, 1], "circularbuff": 0, "class": [0, 1], "clean": [0, 1], "cleanup": [0, 1], "clear": [0, 1], "clearspin": 0, "close": [0, 1], "closelibrari": 0, "code": [0, 1], "come": [0, 1], "command": [0, 1], "compar": 0, "compat": [0, 1], "compil": [0, 1], "compile_": [0, 1], "compilearg": 0, "compilecsd": [0, 1], "compilecsdtext": [0, 1], "compileorc": [0, 1], "compileorcasync": [0, 1], "compiletre": 0, "compiletreeasync": 0, "configur": 0, "congruenti": 0, "consol": 0, "constrain": [0, 1], "construct": [0, 1], "constructor": [0, 1], "contain": [0, 1], "content": [0, 1], "continu": [0, 1], "control": [0, 1], "controlchannel": [0, 1], "controlchannelhint": [0, 1], "controlchannelinfo": [0, 1], "convert": [0, 1], "coopert": 0, "copi": [0, 1], "coreaudio": [0, 1], "correspond": 0, "could": 0, "cpu": [0, 1], "cputim": 0, "crash": 0, "creat": [0, 1], "createbarri": 0, "createcircularbuff": [0, 1], "createglobalvari": 0, "createmessagebuff": [0, 1], "createmutex": 0, "createthread": 0, "createthread2": 0, "createthreadlock": 0, "creation": [0, 1], "cs_audiodevic": [0, 1], "cscore": 0, "csd": [0, 1], "csd_text": 0, "cslanguage_default": 0, "cslanguage_english_uk": 0, "cslanguage_french": 0, "csoption": [0, 1], "csound": 2, "csound6": [0, 1], "csound7": 1, "csound_audio_channel": 0, "csound_callback_kbd_ev": [0, 1], "csound_callback_kbd_text": [0, 1], "csound_control_channel": 0, "csound_creat": 1, "csound_error": [0, 1], "csound_filetyp": 0, "csound_input_channel": 0, "csound_memori": [0, 1], "csound_output_channel": 0, "csound_string_channel": 0, "csound_success": [0, 1], "csoundcreat": [0, 1], "csoundparam": [0, 1], "csoundperformancethread": [0, 1, 2], "csoundrandmt": 0, "csoundrandmtst": 0, "csoundrtaudioparam": 0, "csp": [0, 1], "csscore": 1, "csstrng": 0, "ct": [0, 1], "ctcsound": [0, 1], "ctcsound7": [0, 1], "ctype": 0, "current": [0, 1], "currentthreadid": 0, "currenttimesampl": [0, 1], "cycl": 0, "d": [0, 1], "data": [0, 1], "databas": 0, "dataclass": 0, "datatyp": 1, "dealloc": 0, "debug": [0, 1], "debugmsg": [0, 1], "def": 0, "default": [0, 1], "defin": 0, "deinitfunc": 1, "delet": [0, 1], "delete_channel_list": 1, "deletechannellist": [0, 1], "deletetre": 0, "depend": [0, 1], "describ": [0, 1], "descript": 0, "dest": 0, "destin": [0, 1], "destroi": [0, 1], "destroybarri": 0, "destroycircularbuff": [0, 1], "destroyglobalvari": 0, "destroymessagebuff": [0, 1], "destroymutex": 0, "destroythreadlock": 0, "detail": [0, 1], "determin": [0, 1], "devic": [0, 1], "device_id": [0, 1], "device_nam": [0, 1], "deviceid": [0, 1], "devicenam": [0, 1], "dictionnari": [0, 1], "dimens": 1, "dir": [0, 1], "direct": [0, 1], "directli": [0, 1], "directori": [0, 1], "disabl": [0, 1], "dispatch": [0, 1], "displai": [0, 1], "disposeopcodelist": 0, "do": 0, "doe": [0, 1], "done": [0, 1], "doubl": [0, 1], "drawgraph": [0, 1], "driven": 0, "dsblksiz": [0, 1], "dtype": 1, "durat": 0, "dure": [0, 1], "dynam": 0, "e": [0, 1], "each": [0, 1], "echo": [0, 1], "effici": 0, "eg": [0, 1], "either": [0, 1], "elaps": 0, "element": [0, 1], "elems": [0, 1], "elsewher": 1, "empti": [0, 1], "enabl": [0, 1], "end": [0, 1], "endin": [0, 1], "engin": [0, 1], "enough": [0, 1], "ensur": 0, "entir": [0, 1], "enumer": [0, 1], "env": [0, 1], "environ": [0, 1], "equal": 0, "err": [0, 1], "errcod": 1, "errmsg": 1, "error": [0, 1], "errorcod": 1, "errormsg": 0, "especi": 0, "etc": [0, 1], "evalcod": [0, 1], "evalu": [0, 1], "event": [0, 1], "eventstr": 1, "ever": 0, "everi": [0, 1], "exact": 1, "exactli": 0, "exampl": [0, 1], "except": 0, "execut": [0, 1], "exist": [0, 1], "exit": 0, "exitgraph": [0, 1], "expect": [0, 1], "explain": 1, "expos": 1, "extend": [0, 1], "extern": [0, 1], "f": [0, 1], "facil": 0, "fail": [0, 1], "failur": [0, 1], "fals": [0, 1], "faster": 0, "fetch": [0, 1], "fft": 1, "fftsize": 1, "file": [0, 1], "filenam": [0, 1], "filetyp": [0, 1], "fill": 0, "fin": 0, "final": 0, "find": 0, "finish": [0, 1], "first": [0, 1], "firstmessag": [0, 1], "firstmessageattr": [0, 1], "flac": [0, 1], "flag": [0, 1], "float": [0, 1], "flush": [0, 1], "flushcircularbuff": [0, 1], "flushmessagequeu": [0, 1], "fmt": 0, "folder": 1, "follow": [0, 1], "form": [0, 1], "format": [0, 1], "found": [0, 1], "fout": 0, "fraction": 0, "frame": [0, 1], "framecount": 1, "frames": 0, "free": [0, 1], "freed": [0, 1], "frequenc": [0, 1], "from": [0, 1], "frompoint": 1, "front": [0, 1], "fsig": [0, 1], "full": [0, 1], "function": [0, 1], "futur": [0, 1], "g": 1, "gen": [0, 1], "gener": [0, 1], "get": [0, 1], "get0dbf": [0, 1], "getchanneldatas": 0, "getlibrarysymbol": 0, "getopcod": 0, "given": [0, 1], "global": [0, 1], "global_buff": 0, "go": 1, "gracefulli": 0, "granular": 1, "graphic": [0, 1], "greater": 0, "guarante": 0, "guard": [0, 1], "gui": [0, 1], "h": [0, 1], "ha": [0, 1], "ham": 1, "handl": [0, 1], "hann": 1, "have": [0, 1], "header": 0, "here": 1, "hint": [0, 1], "hold": [0, 1], "host": [0, 1], "hostdata": [0, 1], "how": [0, 1], "howev": [0, 1], "htk": [0, 1], "hw": [0, 1], "i": [0, 1], "i1": [0, 1], "id": 0, "ident": [0, 1], "identifi": [0, 1], "ignor": [0, 1], "immedi": [0, 1], "immediatli": [0, 1], "implement": [0, 1], "impli": 0, "import": [0, 1], "includ": [0, 1], "incompat": 0, "indefinit": [0, 1], "independ": [0, 1], "index": 0, "indic": [0, 1], "infinit": 0, "info": [0, 1], "inform": [0, 1], "init": [0, 1], "initarraychannel": 1, "initfunc": 1, "initi": [0, 1], "initialis": [0, 1], "initkei": 0, "initpvschannel": 1, "inittimerstruct": 0, "input": [0, 1], "inputbuff": 0, "inputbuffers": 0, "inputmessag": [0, 1], "inputmessageasync": 0, "inputnam": 0, "insert": 0, "instanc": [0, 1], "instanti": 1, "instead": [0, 1], "instr": [0, 1], "instrnam": 0, "instrument": [0, 1], "int": [0, 1], "integ": [0, 1], "interface_nam": [0, 1], "interleav": 0, "intern": [0, 1], "introduct": 2, "intyp": [0, 1], "invalid": [0, 1], "invalu": [0, 1], "io": [0, 1], "iopfunc": 0, "ipsum": 2, "ircam": [0, 1], "isgraph": [0, 1], "isnamedgen": 0, "isoutput": [0, 1], "isrecurs": 0, "isrun": [0, 1], "isscorepend": [0, 1], "item": [0, 1], "iter": [0, 1], "itermessag": [0, 1], "its": [0, 1], "itself": 1, "jack": [0, 1], "join": [0, 1], "joint": [0, 1], "jointhread": 0, "k": [0, 1], "kaiser": 1, "keep": 0, "kei": [0, 1], "keyboard": [0, 1], "keypress": [0, 1], "kill": 0, "killgraph": [0, 1], "killinst": 0, "kind": [0, 1], "known": [0, 1], "kopfunc": 0, "kr": [0, 1], "ksmp": [0, 1], "l": 0, "langcod": 0, "languag": 0, "last": [0, 1], "later": 0, "latter": [0, 1], "least": [0, 1], "len": 0, "length": [0, 1], "less": 1, "level": [0, 1], "libcsound": 1, "librari": [0, 1], "librarypath": 0, "like": [0, 1], "line": [0, 1], "linear": 0, "linux": [0, 1], "list": [0, 1], "list_channel": 1, "listchannel": [0, 1], "listutil": 0, "littl": 0, "live": [0, 1], "load": [0, 1], "loadplugin": [0, 1], "local": [0, 1], "lock": [0, 1], "lockchannel": 1, "lockmutex": 0, "lockmutexnowait": 0, "logic": 1, "long": [0, 1], "loop": [0, 1], "lori": 2, "lst": [0, 1], "maco": [0, 1], "made": [0, 1], "mai": [0, 1], "make": [0, 1], "makegraph": [0, 1], "mani": 0, "manner": 1, "mask": [0, 1], "masnchnl": 1, "master": 0, "mat4": [0, 1], "mat5": [0, 1], "match": [0, 1], "max": 0, "maxnchnl": 0, "maxthread": 0, "mean": 1, "meaning": [0, 1], "measur": [0, 1], "memori": [0, 1], "mention": [0, 1], "merg": [0, 1], "mersenn": 0, "messag": [0, 1], "message_": 1, "messagecnt": [0, 1], "messagelevel": [0, 1], "meth": 0, "method": [0, 1], "midi": [0, 1], "midi_modul": [0, 1], "mididevic": [0, 1], "mididevlist": [0, 1], "midwai": [0, 1], "might": 0, "millisecond": [0, 1], "mirror": 0, "mode": [0, 1], "modul": [0, 1], "moment": 1, "monitor": 0, "more": [0, 1], "most": [0, 1], "move": [0, 1], "mpc2k": [0, 1], "msg_attr": [0, 1], "mt19937": 0, "multipl": [0, 1], "multitask": 0, "must": [0, 1], "mute": [0, 1], "mutex": 0, "myflt": [0, 1], "n": [0, 1], "n_getstr": 0, "name": [0, 1], "namedgen": 0, "namelen": 0, "nb": [0, 1], "nbyte": 0, "nchnl": [0, 1], "nchnls_i": 0, "nchnlsinput": [0, 1], "ndarrai": [0, 1], "nearest": 0, "need": [0, 1], "neg": [0, 1], "new": [0, 1], "newest": 0, "newli": 0, "newlin": 1, "newopcodelist": 0, "next": 0, "nist": [0, 1], "node": 0, "non": [0, 1], "none": [0, 1], "normal": [0, 1], "note": [0, 1], "noth": 0, "notic": 0, "notifi": 0, "notifythreadlock": 0, "nowait": 0, "null": [0, 1], "num": 0, "number": [0, 1], "numbuf": [0, 1], "numelem": [0, 1], "numitem": [0, 1], "numpi": [0, 1], "nuttallc3": 1, "o": [0, 1], "object": [0, 1], "obtain": [0, 1], "occur": [0, 1], "off": [0, 1], "offlin": [0, 1], "offset": [0, 1], "often": 0, "ogg": [0, 1], "ok": [0, 1], "old": 0, "oldest": 0, "onc": [0, 1], "one": [0, 1], "ones": 0, "onli": [0, 1], "op": 1, "opaqu": [0, 1], "oparm": 0, "opcod": [0, 1], "opcodedef": 0, "opcodedir": [0, 1], "opcodelistentri": 0, "open": [0, 1], "openlibrari": 0, "oper": [0, 1], "opnam": [0, 1], "option": [0, 1], "orc": [0, 1], "orchestra": [0, 1], "order": [0, 1], "other": [0, 1], "otherwis": [0, 1], "out": [0, 1], "output": [0, 1], "outputbuff": 0, "outputbuffers": 0, "outputformat": 0, "outputnam": 0, "outtyp": 0, "outvalu": [0, 1], "outyp": [0, 1], "over": [0, 1], "overlap": 1, "own": 0, "p": [0, 1], "p1": [0, 1], "p3": 0, "pa_cb": [0, 1], "paf": [0, 1], "pair": 0, "param": [0, 1], "paramet": [0, 1], "pars": [0, 1], "parseorc": 0, "part": 0, "pass": [0, 1], "path": [0, 1], "pathnam": [0, 1], "paus": [0, 1], "peekcircularbuff": [0, 1], "pend": [0, 1], "per": [0, 1], "perffunc": 1, "perform": [0, 1], "perform_ksmp": 1, "performancethread": [0, 1], "performbuff": 0, "performksmp": [0, 1], "perfthread": [0, 1], "period": [0, 1], "perspect": [0, 1], "pfield": [0, 1], "pid": 0, "piec": [0, 1], "place": [0, 1], "plai": [0, 1], "platform": [0, 1], "playback": [0, 1], "plu": 0, "plugin": [0, 1], "point": [0, 1], "pointer": [0, 1], "popfirstmessag": [0, 1], "port": 0, "portaudio": [0, 1], "posit": [0, 1], "possibl": 1, "possil": 1, "pre": 1, "prealloc": [0, 1], "prepar": [0, 1], "preprocess": [0, 1], "present": [0, 1], "preserv": [0, 1], "press": [0, 1], "previou": 0, "previous": [0, 1], "print": [0, 1], "prior": [0, 1], "prng": 0, "process": [0, 1], "processcallback": [0, 1], "processor": 0, "program": 0, "protect": 0, "provid": 0, "proxi": 1, "pseudo": 0, "ptr": 1, "purpos": [0, 1], "pv": [0, 1], "pvf": [0, 1], "pvschannel": 0, "pvsdat": 1, "pvsdata": 1, "pvsdataffts": 1, "pvsdataformat": 1, "pvsdataframecount": 1, "pvsdataoverlap": 1, "pvsdatawindows": 1, "pvsdatext": 0, "pvsin": 0, "pvsout": 0, "py": 0, "python": 0, "q": 0, "queri": [0, 1], "queryglobalvari": 0, "queryglobalvariablenocheck": 0, "queue": [0, 1], "r": [0, 1], "rand": [0, 1], "rand31": 0, "randmt": 0, "random": 0, "randomseedfromtim": 0, "rang": [0, 1], "rate": [0, 1], "rather": 0, "raw": [0, 1], "re": 0, "reach": [0, 1], "read": [0, 1], "readcircularbuff": [0, 1], "reader": [0, 1], "readmessag": [0, 1], "readscor": 0, "readscoreasync": 0, "real": [0, 1], "realloc": 0, "realtim": [0, 1], "reason": [0, 1], "receiv": [0, 1], "recent": [0, 1], "record": [0, 1], "recov": 0, "rect": 1, "recurs": 0, "reentrant": 0, "refer": [0, 1], "regist": [0, 1], "register_keyboard_callback": 1, "registerkeyboardcallback": [0, 1], "registersenseeventcallback": 0, "registr": [0, 1], "rel": [0, 1], "releas": [0, 1], "reload": [0, 1], "remain": [0, 1], "remov": [0, 1], "removekeyboardcallback": [0, 1], "repeat": [0, 1], "repeatedli": [0, 1], "replac": [0, 1], "repres": [0, 1], "request": 1, "requir": 0, "reset": [0, 1], "resourc": [0, 1], "respect": 0, "respons": [0, 1], "result": [0, 1], "retain": [0, 1], "retcod": 0, "retriev": [0, 1], "return": [0, 1], "returncod": [0, 1], "retval": [0, 1], "revers": [0, 1], "rewind": [0, 1], "rewindscor": [0, 1], "rf64": [0, 1], "routin": 0, "rt": [0, 1], "rtaudio": 0, "rtmodul": [0, 1], "rtplayduserdata": 0, "rtrecorduserdata": 0, "rtype": [0, 1], "run": [0, 1], "runcommand": 0, "runutil": [0, 1], "safe": [0, 1], "same": [0, 1], "sampl": [0, 1], "samplebit": [0, 1], "schar": [0, 1], "schedul": 0, "sco": 0, "score": [0, 1], "scoreev": [0, 1], "scoreeventabsolut": 0, "scoreeventabsoluteasync": 0, "scoreeventasync": [0, 1], "scoreoffsetsecond": [0, 1], "scoretim": [0, 1], "sd": [0, 1], "sd2": [0, 1], "sdata": 1, "search": [0, 1], "second": [0, 1], "section": 1, "see": [0, 1], "seed": 0, "seedrandmt": 0, "select": 0, "send": [0, 1], "sens": [0, 1], "sensekei": [0, 1], "sensev": 0, "sent": [0, 1], "separ": [0, 1], "sequenc": [0, 1], "server": 0, "set": [0, 1], "set_score_offset_second": 1, "set_score_pend": 1, "setarraydata": 1, "setaudiochannel": [0, 1], "setaudiodevlistcallback": 0, "setcontrolchannel": [0, 1], "setcontrolchannelhint": [0, 1], "setcscorecallback": 0, "setdebug": [0, 1], "setdrawgraphcallback": [0, 1], "setexitgraphcallback": [0, 1], "setexternalmidierrorstringcallback": [0, 1], "setexternalmidiinclosecallback": [0, 1], "setexternalmidiinopencallback": [0, 1], "setexternalmidioutclosecallback": [0, 1], "setexternalmidioutopencallback": [0, 1], "setexternalmidireadcallback": [0, 1], "setexternalmidiwritecallback": [0, 1], "setfileopencallback": 0, "setglobalenv": [0, 1], "sethostaudioio": [0, 1], "sethostdata": [0, 1], "sethostimplementedaudioio": 0, "sethostimplementedmidiio": [0, 1], "sethostmidiio": 1, "setinput": [0, 1], "setinputchannelcallback": [0, 1], "setisgraph": [0, 1], "setkillgraphcallback": [0, 1], "setlanguag": 0, "setmakegraphcallback": [0, 1], "setmessagecallback": [0, 1], "setmessagelevel": [0, 1], "setmessagestringcallback": 1, "setmididevicelistcallback": 1, "setmididevlistcallback": 0, "setmidifileinput": 0, "setmidifileoutput": 0, "setmidiinput": 0, "setmidimodul": [0, 1], "setmidioutput": 0, "setopenfilecallback": 1, "setopensoundfilecallback": 1, "setopt": [0, 1], "setoutput": [0, 1], "setoutputchannelcallback": [0, 1], "setparam": [0, 1], "setplayopencallback": 0, "setprocesscallback": [0, 1], "setpvschannel": 0, "setpvsdata": 1, "setrecordopencallback": 0, "setrtaudiomodul": [0, 1], "setrtclosecallback": 0, "setrtplaycallback": 0, "setrtrecordcallback": 0, "setscoreoffsetsecond": [0, 1], "setscorepend": [0, 1], "setspinsampl": 0, "setstringchannel": [0, 1], "setstringdata": 1, "setyieldcallback": 0, "share": 0, "short": [0, 1], "should": [0, 1], "signal": 0, "signatur": 1, "similar": [0, 1], "similarli": [0, 1], "simpl": 0, "simpli": [0, 1], "sinc": [0, 1], "singl": [0, 1], "size": [0, 1], "sizeofmyflt": [0, 1], "sleep": [0, 1], "slot": [0, 1], "so": [0, 1], "softwar": [0, 1], "some": [0, 1], "sooner": 0, "sort": 0, "sound": [0, 1], "soundfil": [0, 1], "sourc": [0, 1], "space": [0, 1], "special": [0, 1], "specifi": [0, 1], "spin": [0, 1], "spinlock": 0, "spinlockinit": 0, "spintrylock": 0, "spinunlock": 0, "spout": [0, 1], "spoutsampl": 0, "sr": [0, 1], "src": 0, "stack": 0, "start": [0, 1], "state": [0, 1], "statement": [0, 1], "statu": [0, 1], "stderr": [0, 1], "stdout": [0, 1], "still": [0, 1], "stop": [0, 1], "stoprecord": [0, 1], "stopudpconsol": 0, "storag": [0, 1], "store": [0, 1], "str": [0, 1], "string": [0, 1], "stringchannel": [0, 1], "stringdat": 1, "stringdata": 1, "struct": [0, 1], "structur": [0, 1], "stuct": 0, "style": 0, "success": [0, 1], "successful": 1, "successfulli": [0, 1], "suffici": 0, "sum": 0, "suppli": [0, 1], "support": [0, 1], "sure": [0, 1], "svx": [0, 1], "swap": 0, "symbol": 0, "symbolnam": 0, "synchron": [0, 1], "system": [0, 1], "systemsr": [0, 1], "tabl": [0, 1], "tablearg": [0, 1], "tablecopyin": 0, "tablecopyinasync": 0, "tablecopyout": 0, "tablecopyoutasync": 0, "tableget": 0, "tablelength": [0, 1], "tablenum": [0, 1], "tableset": 0, "tag": [0, 1], "take": [0, 1], "taken": [0, 1], "tell": [0, 1], "temporari": 0, "termin": [0, 1], "text": [0, 1], "than": 0, "thei": [0, 1], "them": [0, 1], "therefor": 0, "thi": [0, 1], "those": [0, 1], "thread": [0, 1], "threadsaf": [0, 1], "threadsafeti": 0, "through": [0, 1], "ti": [0, 1], "time": [0, 1], "timeoffset": 0, "timer": 0, "timerstruct": 0, "todo": [0, 1, 3], "togglepaus": [0, 1], "top": 0, "track": [0, 1], "translat": [0, 1], "transmiss": 0, "transmit": 0, "tree": 0, "tri": 0, "true": [0, 1], "tupl": [0, 1], "turn": [0, 1], "turnoff": 0, "twister": 0, "two": 0, "type": [0, 1], "type_": 0, "type_mask": 1, "typemask": 1, "uchar": [0, 1], "udp": 0, "udpconsol": 0, "udpserverclos": 0, "udpserverstart": 0, "udpserverstatu": 0, "ulaw": [0, 1], "undefin": 0, "underli": 1, "unimpl": 0, "union": [0, 1], "unless": 0, "unload": 0, "unlock": [0, 1], "unlockchannel": 1, "unlockmutex": 0, "unshift": [0, 1], "unsign": 0, "until": [0, 1], "up": [0, 1], "updat": [0, 1], "us": [0, 1], "user": [0, 1], "userdata": [0, 1], "usual": 0, "util": [0, 1], "utilitydescript": 0, "val": [0, 1], "valid": 0, "valu": [0, 1], "var": 1, "vari": 0, "variabl": [0, 1], "variad": 0, "version": [0, 1], "via": [0, 1], "voc": [0, 1], "void": [0, 1], "vorbi": [0, 1], "vst": [0, 1], "w64": [0, 1], "wa": [0, 1], "wai": 0, "wait": [0, 1], "waitbarri": 0, "waitthreadlock": 0, "waitthreadlocknotimeout": 0, "want": [0, 1], "wav": [0, 1], "wavex": [0, 1], "well": 0, "what": 1, "when": [0, 1], "whenev": [0, 1], "where": [0, 1], "whether": [0, 1], "which": [0, 1], "whichev": 0, "while": [0, 1], "window": [0, 1], "winmm": [0, 1], "winsiz": 1, "wintyp": 1, "withcsoundinst": 0, "within": 1, "without": [0, 1], "work": [0, 1], "workaround": 0, "worth": [0, 1], "write": [0, 1], "writecircularbuff": [0, 1], "written": [0, 1], "wve": [0, 1], "xi": [0, 1], "yet": [0, 1], "yield": [0, 1], "you": [0, 1], "zero": [0, 1]}, "titles": ["Csound 6", "Csound 7", "Welcome to ctcsound7\u2019s documentation!", "Introduction"], "titleterms": {"": 2, "6": 0, "7": 1, "csound": [0, 1], "ctcsound7": 2, "document": 2, "introduct": 3, "welcom": 2}}) \ No newline at end of file +Search.setIndex({"alltitles": {"Csound 6": [[0, null]], "Csound 7": [[1, null]], "Introduction": [[3, null]], "Welcome to ctcsound7\u2019s documentation!": [[2, null]]}, "docnames": ["csound6", "csound7", "index", "introduction"], "envversion": {"sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["csound6.rst", "csound7.rst", "index.rst", "introduction.rst"], "indexentries": {"a4() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.A4", false]], "a4() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.A4", false]], "addspinsample() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.addSpinSample", false]], "allocatedchannels() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.allocatedChannels", false]], "apiversion() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.APIVersion", false]], "apiversion() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.APIVersion", false]], "appendopcode() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.appendOpcode", false]], "appendopcode() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.appendOpcode", false]], "arraydata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.arrayData", false]], "arraydatadimensions() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.arrayDataDimensions", false]], "arraydatasizes() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.arrayDataSizes", false]], "arraydatatype() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.arrayDataType", false]], "audiochannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.audioChannel", false]], "audiochannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.audioChannel", false]], "audiodevlist() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.audioDevList", false]], "audiodevlist() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.audioDevList", false]], "channeldatasize() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.channelDatasize", false]], "channeldatasize() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.channelDatasize", false]], "channelinfo() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.channelInfo", false]], "channelinfo() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.channelInfo", false]], "channellock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.channelLock", false]], "channelptr() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.channelPtr", false]], "channelptr() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.channelPtr", false]], "channelvartypename() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.channelVarTypeName", false]], "cleanup() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.cleanup", false]], "cleanup() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.cleanup", false]], "clearspin() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.clearSpin", false]], "closelibrary() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.closeLibrary", false]], "compile_() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compile_", false]], "compile_() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.compile_", false]], "compileargs() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileArgs", false]], "compilecsd() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileCsd", false]], "compilecsd() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.compileCsd", false]], "compilecsdtext() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileCsdText", false]], "compilecsdtext() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.compileCsdText", false]], "compileorc() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileOrc", false]], "compileorc() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.compileOrc", false]], "compileorcasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileOrcAsync", false]], "compileorcasync() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.compileOrcAsync", false]], "compiletree() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileTree", false]], "compiletreeasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.compileTreeAsync", false]], "controlchannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.controlChannel", false]], "controlchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.controlChannel", false]], "controlchannelhints() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.controlChannelHints", false]], "controlchannelhints() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.controlChannelHints", false]], "cputime() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.CPUTime", false]], "createbarrier() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createBarrier", false]], "createcircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createCircularBuffer", false]], "createcircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.createCircularBuffer", false]], "createglobalvariable() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createGlobalVariable", false]], "createmessagebuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createMessageBuffer", false]], "createmessagebuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.createMessageBuffer", false]], "createmutex() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createMutex", false]], "createthread() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createThread", false]], "createthread2() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createThread2", false]], "createthreadlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.createThreadLock", false]], "cs (ctcsound7.api7.csound attribute)": [[1, "ctcsound7.api7.Csound.cs", false]], "csound (class in ctcsound7.api6)": [[0, "ctcsound7.api6.Csound", false]], "csound (class in ctcsound7.api7)": [[1, "ctcsound7.api7.Csound", false]], "csound() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.csound", false]], "csound() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.csound", false]], "csound() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.csound", false]], "csound() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.csound", false]], "csoundperformancethread (class in ctcsound7.api6)": [[0, "ctcsound7.api6.CsoundPerformanceThread", false]], "csoundperformancethread (class in ctcsound7.api7)": [[1, "ctcsound7.api7.CsoundPerformanceThread", false]], "currentthreadid() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.currentThreadId", false]], "currenttimesamples() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.currentTimeSamples", false]], "currenttimesamples() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.currentTimeSamples", false]], "debug() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.debug", false]], "debug() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.debug", false]], "deletechannellist() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.deleteChannelList", false]], "deletechannellist() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.deleteChannelList", false]], "deletetree() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.deleteTree", false]], "destroybarrier() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyBarrier", false]], "destroycircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyCircularBuffer", false]], "destroycircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.destroyCircularBuffer", false]], "destroyglobalvariable() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyGlobalVariable", false]], "destroymessagebuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyMessageBuffer", false]], "destroymessagebuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.destroyMessageBuffer", false]], "destroymutex() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyMutex", false]], "destroythreadlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.destroyThreadLock", false]], "disposeopcodelist() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.disposeOpcodeList", false]], "env() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.env", false]], "env() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.env", false]], "evalcode() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.evalCode", false]], "evalcode() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.evalCode", false]], "event() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.event", false]], "eventstring() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.eventString", false]], "firstmessage() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.firstMessage", false]], "firstmessage() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.firstMessage", false]], "firstmessageattr() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.firstMessageAttr", false]], "firstmessageattr() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.firstMessageAttr", false]], "flushcircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.flushCircularBuffer", false]], "flushcircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.flushCircularBuffer", false]], "flushmessagequeue() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.flushMessageQueue", false]], "flushmessagequeue() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.flushMessageQueue", false]], "frompointer (ctcsound7.api7.csound attribute)": [[1, "ctcsound7.api7.Csound.fromPointer", false]], "get0dbfs() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.get0dBFS", false]], "get0dbfs() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.get0dBFS", false]], "getlibrarysymbol() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.getLibrarySymbol", false]], "getopcodes() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.getOpcodes", false]], "hostdata() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.hostData", false]], "hostdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.hostData", false]], "initarraychannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.initArrayChannel", false]], "initpvschannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.initPvsChannel", false]], "inittimerstruct() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.initTimerStruct", false]], "inputbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.inputBuffer", false]], "inputbuffersize() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.inputBufferSize", false]], "inputmessage() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.inputMessage", false]], "inputmessage() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.inputMessage", false]], "inputmessage() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.inputMessage", false]], "inputmessage() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.inputMessage", false]], "inputmessageasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.inputMessageAsync", false]], "inputname() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.inputName", false]], "isnamedgen() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.isNamedGEN", false]], "isrunning() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.isRunning", false]], "isrunning() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.isRunning", false]], "isscorepending() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.isScorePending", false]], "isscorepending() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.isScorePending", false]], "itermessages() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.iterMessages", false]], "itermessages() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.iterMessages", false]], "join() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.join", false]], "join() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.join", false]], "jointhread() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.joinThread", false]], "keypress() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.keyPress", false]], "keypress() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.keyPress", false]], "killinstance() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.killInstance", false]], "kr() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.kr", false]], "kr() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.kr", false]], "ksmps() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.ksmps", false]], "ksmps() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.ksmps", false]], "listchannels() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.listChannels", false]], "listchannels() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.listChannels", false]], "listutilities() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.listUtilities", false]], "loadplugins() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.loadPlugins", false]], "loadplugins() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.loadPlugins", false]], "lockchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.lockChannel", false]], "lockmutex() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.lockMutex", false]], "lockmutexnowait() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.lockMutexNoWait", false]], "message() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.message", false]], "message() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.message", false]], "messagecnt() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.messageCnt", false]], "messagecnt() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.messageCnt", false]], "messagelevel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.messageLevel", false]], "messagelevel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.messageLevel", false]], "messages() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.messageS", false]], "messages() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.messageS", false]], "mididevlist() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.midiDevList", false]], "mididevlist() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.midiDevList", false]], "module() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.module", false]], "module() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.module", false]], "modules() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.modules", false]], "modules() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.modules", false]], "namedgen() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.namedGEN", false]], "namedgens() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.namedGens", false]], "nchnls() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.nchnls", false]], "nchnls() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.nchnls", false]], "nchnlsinput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.nchnlsInput", false]], "nchnlsinput() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.nchnlsInput", false]], "newopcodelist() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.newOpcodeList", false]], "notifythreadlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.notifyThreadLock", false]], "openlibrary() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.openLibrary", false]], "outputbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.outputBuffer", false]], "outputbuffersize() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.outputBufferSize", false]], "outputformat() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.outputFormat", false]], "outputname() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.outputName", false]], "params() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.params", false]], "params() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.params", false]], "parseorc() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.parseOrc", false]], "pause() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.pause", false]], "pause() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.pause", false]], "peekcircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.peekCircularBuffer", false]], "peekcircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.peekCircularBuffer", false]], "perform() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.perform", false]], "performancethread() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.performanceThread", false]], "performancethread() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.performanceThread", false]], "performbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.performBuffer", false]], "performksmps() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.performKsmps", false]], "performksmps() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.performKsmps", false]], "play() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.play", false]], "play() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.play", false]], "popfirstmessage() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.popFirstMessage", false]], "popfirstmessage() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.popFirstMessage", false]], "processcallback() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.processCallback", false]], "processcallback() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.processCallback", false]], "pvschannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.pvsChannel", false]], "pvsdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsData", false]], "pvsdatafftsize() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsDataFftSize", false]], "pvsdataformat() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsDataFormat", false]], "pvsdataframecount() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsDataFramecount", false]], "pvsdataoverlap() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsDataOverlap", false]], "pvsdatawindowsize() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.pvsDataWindowSize", false]], "queryglobalvariable() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.queryGlobalVariable", false]], "queryglobalvariablenocheck() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.queryGlobalVariableNoCheck", false]], "rand31() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.rand31", false]], "randmt() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.randMT", false]], "randomseedfromtime() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.randomSeedFromTime", false]], "readcircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.readCircularBuffer", false]], "readcircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.readCircularBuffer", false]], "readmessage() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.readMessage", false]], "readmessage() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.readMessage", false]], "readscore() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.readScore", false]], "readscoreasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.readScoreAsync", false]], "realtime() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.realTime", false]], "record() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.record", false]], "record() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.record", false]], "registerkeyboardcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.registerKeyboardCallback", false]], "registerkeyboardcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.registerKeyboardCallback", false]], "registersenseeventcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.registerSenseEventCallback", false]], "removekeyboardcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.removeKeyboardCallback", false]], "removekeyboardcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.removeKeyboardCallback", false]], "reset() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.reset", false]], "reset() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.reset", false]], "rewindscore() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.rewindScore", false]], "rewindscore() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.rewindScore", false]], "rtplayduserdata() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.rtPlaydUserData", false]], "rtrecorduserdata() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.rtRecordUserData", false]], "runcommand() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.runCommand", false]], "runutility() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.runUtility", false]], "runutility() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.runUtility", false]], "scoreevent() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreEvent", false]], "scoreevent() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.scoreEvent", false]], "scoreevent() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.scoreEvent", false]], "scoreevent() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.scoreEvent", false]], "scoreeventabsolute() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreEventAbsolute", false]], "scoreeventabsoluteasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreEventAbsoluteAsync", false]], "scoreeventasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreEventAsync", false]], "scoreeventasync() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.scoreEventAsync", false]], "scoreoffsetseconds() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreOffsetSeconds", false]], "scoreoffsetseconds() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.scoreOffsetSeconds", false]], "scoretime() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.scoreTime", false]], "scoretime() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.scoreTime", false]], "seedrandmt() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.seedRandMT", false]], "setarraydata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setArrayData", false]], "setaudiochannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setAudioChannel", false]], "setaudiochannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setAudioChannel", false]], "setaudiodevlistcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setAudioDevListCallback", false]], "setcontrolchannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setControlChannel", false]], "setcontrolchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setControlChannel", false]], "setcontrolchannelhints() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setControlChannelHints", false]], "setcontrolchannelhints() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setControlChannelHints", false]], "setcscorecallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setCscoreCallback", false]], "setdebug() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setDebug", false]], "setdebug() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setDebug", false]], "setdrawgraphcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setDrawGraphCallback", false]], "setdrawgraphcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setDrawGraphCallback", false]], "setexitgraphcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExitGraphCallback", false]], "setexitgraphcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExitGraphCallback", false]], "setexternalmidierrorstringcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiErrorStringCallback", false]], "setexternalmidierrorstringcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiErrorStringCallback", false]], "setexternalmidiinclosecallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiInCloseCallback", false]], "setexternalmidiinclosecallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiInCloseCallback", false]], "setexternalmidiinopencallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiInOpenCallback", false]], "setexternalmidiinopencallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiInOpenCallback", false]], "setexternalmidioutclosecallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiOutCloseCallback", false]], "setexternalmidioutclosecallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiOutCloseCallback", false]], "setexternalmidioutopencallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiOutOpenCallback", false]], "setexternalmidioutopencallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiOutOpenCallback", false]], "setexternalmidireadcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiReadCallback", false]], "setexternalmidireadcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiReadCallback", false]], "setexternalmidiwritecallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setExternalMidiWriteCallback", false]], "setexternalmidiwritecallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setExternalMidiWriteCallback", false]], "setfileopencallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setFileOpenCallback", false]], "setglobalenv() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setGlobalEnv", false]], "setglobalenv() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setGlobalEnv", false]], "sethostaudioio() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setHostAudioIO", false]], "sethostdata() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setHostData", false]], "sethostdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setHostData", false]], "sethostimplementedaudioio() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setHostImplementedAudioIO", false]], "sethostimplementedmidiio() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setHostImplementedMidiIO", false]], "sethostimplementedmidiio() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setHostImplementedMIDIIO", false]], "sethostmidiio() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setHostMidiIO", false]], "setinput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setInput", false]], "setinput() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setInput", false]], "setinputchannelcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setInputChannelCallback", false]], "setinputchannelcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setInputChannelCallback", false]], "setisgraphable() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setIsGraphable", false]], "setisgraphable() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setIsGraphable", false]], "setkillgraphcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setKillGraphCallback", false]], "setkillgraphcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setKillGraphCallback", false]], "setlanguage() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setLanguage", false]], "setmakegraphcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMakeGraphCallback", false]], "setmakegraphcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setMakeGraphCallback", false]], "setmessagelevel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMessageLevel", false]], "setmessagelevel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setMessageLevel", false]], "setmessagestringcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setMessageStringCallback", false]], "setmididevicelistcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setMidiDeviceListCallback", false]], "setmididevlistcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMidiDevListCallback", false]], "setmidifileinput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMIDIFileInput", false]], "setmidifileoutput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMIDIFileOutput", false]], "setmidiinput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMIDIInput", false]], "setmidimodule() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMidiModule", false]], "setmidimodule() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setMidiModule", false]], "setmidioutput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setMIDIOutput", false]], "setopenfilecallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setOpenFileCallback", false]], "setopensoundfilecallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setOpenSoundFileCallback", false]], "setoption() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setOption", false]], "setoption() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setOption", false]], "setoutput() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setOutput", false]], "setoutput() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setOutput", false]], "setoutputchannelcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setOutputChannelCallback", false]], "setoutputchannelcallback() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setOutputChannelCallback", false]], "setparams() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setParams", false]], "setplayopencallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setPlayOpenCallback", false]], "setprocesscallback() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.setProcessCallback", false]], "setprocesscallback() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.setProcessCallback", false]], "setpvschannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setPvsChannel", false]], "setpvsdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setPvsData", false]], "setrecordopencallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setRecordOpenCallback", false]], "setrtaudiomodule() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setRTAudioModule", false]], "setrtaudiomodule() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setRTAudioModule", false]], "setrtclosecallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setRtCloseCallback", false]], "setrtplaycallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setRtPlayCallback", false]], "setrtrecordcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setRtRecordCallback", false]], "setscoreoffsetseconds() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setScoreOffsetSeconds", false]], "setscoreoffsetseconds() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.setScoreOffsetSeconds", false]], "setscoreoffsetseconds() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setScoreOffsetSeconds", false]], "setscoreoffsetseconds() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.setScoreOffsetSeconds", false]], "setscorepending() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setScorePending", false]], "setscorepending() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setScorePending", false]], "setspinsample() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setSpinSample", false]], "setstringchannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setStringChannel", false]], "setstringchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setStringChannel", false]], "setstringdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.setStringData", false]], "setyieldcallback() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.setYieldCallback", false]], "sizeofmyflt() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.sizeOfMYFLT", false]], "sizeofmyflt() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.sizeOfMYFLT", false]], "sleep() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.sleep", false]], "sleep() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.sleep", false]], "spin() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spin", false]], "spin() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.spin", false]], "spinlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spinLock", false]], "spinlockinit() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spinLockInit", false]], "spintrylock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spinTryLock", false]], "spinunlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spinUnlock", false]], "spout() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spout", false]], "spout() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.spout", false]], "spoutsample() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.spoutSample", false]], "sr() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.sr", false]], "sr() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.sr", false]], "start() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.start", false]], "start() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.start", false]], "status() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.status", false]], "status() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.status", false]], "stop() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.stop", false]], "stop() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.stop", false]], "stop() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.stop", false]], "stop() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.stop", false]], "stoprecord() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.stopRecord", false]], "stoprecord() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.stopRecord", false]], "stopudpconsole() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.stopUDPConsole", false]], "stringchannel() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.stringChannel", false]], "stringchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.stringChannel", false]], "stringdata() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.stringData", false]], "systemsr() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.systemSr", false]], "systemsr() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.systemSr", false]], "table() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.table", false]], "table() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.table", false]], "tableargs() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableArgs", false]], "tableargs() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.tableArgs", false]], "tablecopyin() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableCopyIn", false]], "tablecopyinasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableCopyInAsync", false]], "tablecopyout() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableCopyOut", false]], "tablecopyoutasync() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableCopyOutAsync", false]], "tableget() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableGet", false]], "tablelength() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableLength", false]], "tablelength() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.tableLength", false]], "tableset() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.tableSet", false]], "togglepause() (ctcsound7.api6.csoundperformancethread method)": [[0, "ctcsound7.api6.CsoundPerformanceThread.togglePause", false]], "togglepause() (ctcsound7.api7.csoundperformancethread method)": [[1, "ctcsound7.api7.CsoundPerformanceThread.togglePause", false]], "udpconsole() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.UDPConsole", false]], "udpserverclose() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.UDPServerClose", false]], "udpserverstart() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.UDPServerStart", false]], "udpserverstatus() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.UDPServerStatus", false]], "unlockchannel() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.unlockChannel", false]], "unlockmutex() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.unlockMutex", false]], "utilitydescription() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.utilityDescription", false]], "version() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.version", false]], "version() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.version", false]], "waitbarrier() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.waitBarrier", false]], "waitthreadlock() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.waitThreadLock", false]], "waitthreadlocknotimeout() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.waitThreadLockNoTimeout", false]], "writecircularbuffer() (ctcsound7.api6.csound method)": [[0, "ctcsound7.api6.Csound.writeCircularBuffer", false]], "writecircularbuffer() (ctcsound7.api7.csound method)": [[1, "ctcsound7.api7.Csound.writeCircularBuffer", false]]}, "objects": {"ctcsound7.api6": [[0, 0, 1, "", "Csound"], [0, 0, 1, "", "CsoundPerformanceThread"]], "ctcsound7.api6.Csound": [[0, 1, 1, "", "A4"], [0, 1, 1, "", "APIVersion"], [0, 1, 1, "", "CPUTime"], [0, 1, 1, "", "UDPConsole"], [0, 1, 1, "", "UDPServerClose"], [0, 1, 1, "", "UDPServerStart"], [0, 1, 1, "", "UDPServerStatus"], [0, 1, 1, "", "addSpinSample"], [0, 1, 1, "", "appendOpcode"], [0, 1, 1, "", "audioChannel"], [0, 1, 1, "", "audioDevList"], [0, 1, 1, "", "channelDatasize"], [0, 1, 1, "", "channelInfo"], [0, 1, 1, "", "channelLock"], [0, 1, 1, "", "channelPtr"], [0, 1, 1, "", "cleanup"], [0, 1, 1, "", "clearSpin"], [0, 1, 1, "", "closeLibrary"], [0, 1, 1, "", "compileArgs"], [0, 1, 1, "", "compileCsd"], [0, 1, 1, "", "compileCsdText"], [0, 1, 1, "", "compileOrc"], [0, 1, 1, "", "compileOrcAsync"], [0, 1, 1, "", "compileTree"], [0, 1, 1, "", "compileTreeAsync"], [0, 1, 1, "", "compile_"], [0, 1, 1, "", "controlChannel"], [0, 1, 1, "", "controlChannelHints"], [0, 1, 1, "", "createBarrier"], [0, 1, 1, "", "createCircularBuffer"], [0, 1, 1, "", "createGlobalVariable"], [0, 1, 1, "", "createMessageBuffer"], [0, 1, 1, "", "createMutex"], [0, 1, 1, "", "createThread"], [0, 1, 1, "", "createThread2"], [0, 1, 1, "", "createThreadLock"], [0, 1, 1, "", "csound"], [0, 1, 1, "", "currentThreadId"], [0, 1, 1, "", "currentTimeSamples"], [0, 1, 1, "", "debug"], [0, 1, 1, "", "deleteChannelList"], [0, 1, 1, "", "deleteTree"], [0, 1, 1, "", "destroyBarrier"], [0, 1, 1, "", "destroyCircularBuffer"], [0, 1, 1, "", "destroyGlobalVariable"], [0, 1, 1, "", "destroyMessageBuffer"], [0, 1, 1, "", "destroyMutex"], [0, 1, 1, "", "destroyThreadLock"], [0, 1, 1, "", "disposeOpcodeList"], [0, 1, 1, "", "env"], [0, 1, 1, "", "evalCode"], [0, 1, 1, "", "firstMessage"], [0, 1, 1, "", "firstMessageAttr"], [0, 1, 1, "", "flushCircularBuffer"], [0, 1, 1, "", "get0dBFS"], [0, 1, 1, "", "getLibrarySymbol"], [0, 1, 1, "", "getOpcodes"], [0, 1, 1, "", "hostData"], [0, 1, 1, "", "initTimerStruct"], [0, 1, 1, "", "inputBuffer"], [0, 1, 1, "", "inputBufferSize"], [0, 1, 1, "", "inputMessage"], [0, 1, 1, "", "inputMessageAsync"], [0, 1, 1, "", "inputName"], [0, 1, 1, "", "isNamedGEN"], [0, 1, 1, "", "isScorePending"], [0, 1, 1, "", "iterMessages"], [0, 1, 1, "", "joinThread"], [0, 1, 1, "", "keyPress"], [0, 1, 1, "", "killInstance"], [0, 1, 1, "", "kr"], [0, 1, 1, "", "ksmps"], [0, 1, 1, "", "listChannels"], [0, 1, 1, "", "listUtilities"], [0, 1, 1, "", "loadPlugins"], [0, 1, 1, "", "lockMutex"], [0, 1, 1, "", "lockMutexNoWait"], [0, 1, 1, "", "message"], [0, 1, 1, "", "messageCnt"], [0, 1, 1, "", "messageLevel"], [0, 1, 1, "", "messageS"], [0, 1, 1, "", "midiDevList"], [0, 1, 1, "", "module"], [0, 1, 1, "", "modules"], [0, 1, 1, "", "namedGEN"], [0, 1, 1, "", "namedGens"], [0, 1, 1, "", "nchnls"], [0, 1, 1, "", "nchnlsInput"], [0, 1, 1, "", "newOpcodeList"], [0, 1, 1, "", "notifyThreadLock"], [0, 1, 1, "", "openLibrary"], [0, 1, 1, "", "outputBuffer"], [0, 1, 1, "", "outputBufferSize"], [0, 1, 1, "", "outputFormat"], [0, 1, 1, "", "outputName"], [0, 1, 1, "", "params"], [0, 1, 1, "", "parseOrc"], [0, 1, 1, "", "peekCircularBuffer"], [0, 1, 1, "", "perform"], [0, 1, 1, "", "performBuffer"], [0, 1, 1, "", "performKsmps"], [0, 1, 1, "", "performanceThread"], [0, 1, 1, "", "popFirstMessage"], [0, 1, 1, "", "pvsChannel"], [0, 1, 1, "", "queryGlobalVariable"], [0, 1, 1, "", "queryGlobalVariableNoCheck"], [0, 1, 1, "", "rand31"], [0, 1, 1, "", "randMT"], [0, 1, 1, "", "randomSeedFromTime"], [0, 1, 1, "", "readCircularBuffer"], [0, 1, 1, "", "readMessage"], [0, 1, 1, "", "readScore"], [0, 1, 1, "", "readScoreAsync"], [0, 1, 1, "", "realTime"], [0, 1, 1, "", "registerKeyboardCallback"], [0, 1, 1, "", "registerSenseEventCallback"], [0, 1, 1, "", "removeKeyboardCallback"], [0, 1, 1, "", "reset"], [0, 1, 1, "", "rewindScore"], [0, 1, 1, "", "rtPlaydUserData"], [0, 1, 1, "", "rtRecordUserData"], [0, 1, 1, "", "runCommand"], [0, 1, 1, "", "runUtility"], [0, 1, 1, "", "scoreEvent"], [0, 1, 1, "", "scoreEventAbsolute"], [0, 1, 1, "", "scoreEventAbsoluteAsync"], [0, 1, 1, "", "scoreEventAsync"], [0, 1, 1, "", "scoreOffsetSeconds"], [0, 1, 1, "", "scoreTime"], [0, 1, 1, "", "seedRandMT"], [0, 1, 1, "", "setAudioChannel"], [0, 1, 1, "", "setAudioDevListCallback"], [0, 1, 1, "", "setControlChannel"], [0, 1, 1, "", "setControlChannelHints"], [0, 1, 1, "", "setCscoreCallback"], [0, 1, 1, "", "setDebug"], [0, 1, 1, "", "setDrawGraphCallback"], [0, 1, 1, "", "setExitGraphCallback"], [0, 1, 1, "", "setExternalMidiErrorStringCallback"], [0, 1, 1, "", "setExternalMidiInCloseCallback"], [0, 1, 1, "", "setExternalMidiInOpenCallback"], [0, 1, 1, "", "setExternalMidiOutCloseCallback"], [0, 1, 1, "", "setExternalMidiOutOpenCallback"], [0, 1, 1, "", "setExternalMidiReadCallback"], [0, 1, 1, "", "setExternalMidiWriteCallback"], [0, 1, 1, "", "setFileOpenCallback"], [0, 1, 1, "", "setGlobalEnv"], [0, 1, 1, "", "setHostData"], [0, 1, 1, "", "setHostImplementedAudioIO"], [0, 1, 1, "", "setHostImplementedMidiIO"], [0, 1, 1, "", "setInput"], [0, 1, 1, "", "setInputChannelCallback"], [0, 1, 1, "", "setIsGraphable"], [0, 1, 1, "", "setKillGraphCallback"], [0, 1, 1, "", "setLanguage"], [0, 1, 1, "", "setMIDIFileInput"], [0, 1, 1, "", "setMIDIFileOutput"], [0, 1, 1, "", "setMIDIInput"], [0, 1, 1, "", "setMIDIOutput"], [0, 1, 1, "", "setMakeGraphCallback"], [0, 1, 1, "", "setMessageLevel"], [0, 1, 1, "", "setMidiDevListCallback"], [0, 1, 1, "", "setMidiModule"], [0, 1, 1, "", "setOption"], [0, 1, 1, "", "setOutput"], [0, 1, 1, "", "setOutputChannelCallback"], [0, 1, 1, "", "setParams"], [0, 1, 1, "", "setPlayOpenCallback"], [0, 1, 1, "", "setPvsChannel"], [0, 1, 1, "", "setRTAudioModule"], [0, 1, 1, "", "setRecordOpenCallback"], [0, 1, 1, "", "setRtCloseCallback"], [0, 1, 1, "", "setRtPlayCallback"], [0, 1, 1, "", "setRtRecordCallback"], [0, 1, 1, "", "setScoreOffsetSeconds"], [0, 1, 1, "", "setScorePending"], [0, 1, 1, "", "setSpinSample"], [0, 1, 1, "", "setStringChannel"], [0, 1, 1, "", "setYieldCallback"], [0, 1, 1, "", "sizeOfMYFLT"], [0, 1, 1, "", "sleep"], [0, 1, 1, "", "spin"], [0, 1, 1, "", "spinLock"], [0, 1, 1, "", "spinLockInit"], [0, 1, 1, "", "spinTryLock"], [0, 1, 1, "", "spinUnlock"], [0, 1, 1, "", "spout"], [0, 1, 1, "", "spoutSample"], [0, 1, 1, "", "sr"], [0, 1, 1, "", "start"], [0, 1, 1, "", "stop"], [0, 1, 1, "", "stopUDPConsole"], [0, 1, 1, "", "stringChannel"], [0, 1, 1, "", "systemSr"], [0, 1, 1, "", "table"], [0, 1, 1, "", "tableArgs"], [0, 1, 1, "", "tableCopyIn"], [0, 1, 1, "", "tableCopyInAsync"], [0, 1, 1, "", "tableCopyOut"], [0, 1, 1, "", "tableCopyOutAsync"], [0, 1, 1, "", "tableGet"], [0, 1, 1, "", "tableLength"], [0, 1, 1, "", "tableSet"], [0, 1, 1, "", "unlockMutex"], [0, 1, 1, "", "utilityDescription"], [0, 1, 1, "", "version"], [0, 1, 1, "", "waitBarrier"], [0, 1, 1, "", "waitThreadLock"], [0, 1, 1, "", "waitThreadLockNoTimeout"], [0, 1, 1, "", "writeCircularBuffer"]], "ctcsound7.api6.CsoundPerformanceThread": [[0, 1, 1, "", "csound"], [0, 1, 1, "", "flushMessageQueue"], [0, 1, 1, "", "inputMessage"], [0, 1, 1, "", "isRunning"], [0, 1, 1, "", "join"], [0, 1, 1, "", "pause"], [0, 1, 1, "", "play"], [0, 1, 1, "", "processCallback"], [0, 1, 1, "", "record"], [0, 1, 1, "", "scoreEvent"], [0, 1, 1, "", "setProcessCallback"], [0, 1, 1, "", "setScoreOffsetSeconds"], [0, 1, 1, "", "status"], [0, 1, 1, "", "stop"], [0, 1, 1, "", "stopRecord"], [0, 1, 1, "", "togglePause"]], "ctcsound7.api7": [[1, 0, 1, "", "Csound"], [1, 0, 1, "", "CsoundPerformanceThread"]], "ctcsound7.api7.Csound": [[1, 1, 1, "", "A4"], [1, 1, 1, "", "APIVersion"], [1, 1, 1, "", "allocatedChannels"], [1, 1, 1, "", "appendOpcode"], [1, 1, 1, "", "arrayData"], [1, 1, 1, "", "arrayDataDimensions"], [1, 1, 1, "", "arrayDataSizes"], [1, 1, 1, "", "arrayDataType"], [1, 1, 1, "", "audioChannel"], [1, 1, 1, "", "audioDevList"], [1, 1, 1, "", "channelDatasize"], [1, 1, 1, "", "channelInfo"], [1, 1, 1, "", "channelPtr"], [1, 1, 1, "", "channelVarTypeName"], [1, 1, 1, "", "cleanup"], [1, 1, 1, "", "compileCsd"], [1, 1, 1, "", "compileCsdText"], [1, 1, 1, "", "compileOrc"], [1, 1, 1, "", "compileOrcAsync"], [1, 1, 1, "", "compile_"], [1, 1, 1, "", "controlChannel"], [1, 1, 1, "", "controlChannelHints"], [1, 1, 1, "", "createCircularBuffer"], [1, 1, 1, "", "createMessageBuffer"], [1, 2, 1, "", "cs"], [1, 1, 1, "", "csound"], [1, 1, 1, "", "currentTimeSamples"], [1, 1, 1, "", "debug"], [1, 1, 1, "", "deleteChannelList"], [1, 1, 1, "", "destroyCircularBuffer"], [1, 1, 1, "", "destroyMessageBuffer"], [1, 1, 1, "", "env"], [1, 1, 1, "", "evalCode"], [1, 1, 1, "", "event"], [1, 1, 1, "", "eventString"], [1, 1, 1, "", "firstMessage"], [1, 1, 1, "", "firstMessageAttr"], [1, 1, 1, "", "flushCircularBuffer"], [1, 2, 1, "", "fromPointer"], [1, 1, 1, "", "get0dBFS"], [1, 1, 1, "", "hostData"], [1, 1, 1, "", "initArrayChannel"], [1, 1, 1, "", "initPvsChannel"], [1, 1, 1, "", "inputMessage"], [1, 1, 1, "", "isScorePending"], [1, 1, 1, "", "iterMessages"], [1, 1, 1, "", "keyPress"], [1, 1, 1, "", "kr"], [1, 1, 1, "", "ksmps"], [1, 1, 1, "", "listChannels"], [1, 1, 1, "", "loadPlugins"], [1, 1, 1, "", "lockChannel"], [1, 1, 1, "", "message"], [1, 1, 1, "", "messageCnt"], [1, 1, 1, "", "messageLevel"], [1, 1, 1, "", "messageS"], [1, 1, 1, "", "midiDevList"], [1, 1, 1, "", "module"], [1, 1, 1, "", "modules"], [1, 1, 1, "", "nchnls"], [1, 1, 1, "", "nchnlsInput"], [1, 1, 1, "", "params"], [1, 1, 1, "", "peekCircularBuffer"], [1, 1, 1, "", "performKsmps"], [1, 1, 1, "", "performanceThread"], [1, 1, 1, "", "popFirstMessage"], [1, 1, 1, "", "pvsData"], [1, 1, 1, "", "pvsDataFftSize"], [1, 1, 1, "", "pvsDataFormat"], [1, 1, 1, "", "pvsDataFramecount"], [1, 1, 1, "", "pvsDataOverlap"], [1, 1, 1, "", "pvsDataWindowSize"], [1, 1, 1, "", "readCircularBuffer"], [1, 1, 1, "", "readMessage"], [1, 1, 1, "", "registerKeyboardCallback"], [1, 1, 1, "", "removeKeyboardCallback"], [1, 1, 1, "", "reset"], [1, 1, 1, "", "rewindScore"], [1, 1, 1, "", "runUtility"], [1, 1, 1, "", "scoreEvent"], [1, 1, 1, "", "scoreEventAsync"], [1, 1, 1, "", "scoreOffsetSeconds"], [1, 1, 1, "", "scoreTime"], [1, 1, 1, "", "setArrayData"], [1, 1, 1, "", "setAudioChannel"], [1, 1, 1, "", "setControlChannel"], [1, 1, 1, "", "setControlChannelHints"], [1, 1, 1, "", "setDebug"], [1, 1, 1, "", "setDrawGraphCallback"], [1, 1, 1, "", "setExitGraphCallback"], [1, 1, 1, "", "setExternalMidiErrorStringCallback"], [1, 1, 1, "", "setExternalMidiInCloseCallback"], [1, 1, 1, "", "setExternalMidiInOpenCallback"], [1, 1, 1, "", "setExternalMidiOutCloseCallback"], [1, 1, 1, "", "setExternalMidiOutOpenCallback"], [1, 1, 1, "", "setExternalMidiReadCallback"], [1, 1, 1, "", "setExternalMidiWriteCallback"], [1, 1, 1, "", "setGlobalEnv"], [1, 1, 1, "", "setHostAudioIO"], [1, 1, 1, "", "setHostData"], [1, 1, 1, "", "setHostImplementedMIDIIO"], [1, 1, 1, "", "setHostMidiIO"], [1, 1, 1, "", "setInput"], [1, 1, 1, "", "setInputChannelCallback"], [1, 1, 1, "", "setIsGraphable"], [1, 1, 1, "", "setKillGraphCallback"], [1, 1, 1, "", "setMakeGraphCallback"], [1, 1, 1, "", "setMessageLevel"], [1, 1, 1, "", "setMessageStringCallback"], [1, 1, 1, "", "setMidiDeviceListCallback"], [1, 1, 1, "", "setMidiModule"], [1, 1, 1, "", "setOpenFileCallback"], [1, 1, 1, "", "setOpenSoundFileCallback"], [1, 1, 1, "", "setOption"], [1, 1, 1, "", "setOutput"], [1, 1, 1, "", "setOutputChannelCallback"], [1, 1, 1, "", "setPvsData"], [1, 1, 1, "", "setRTAudioModule"], [1, 1, 1, "", "setScoreOffsetSeconds"], [1, 1, 1, "", "setScorePending"], [1, 1, 1, "", "setStringChannel"], [1, 1, 1, "", "setStringData"], [1, 1, 1, "", "sizeOfMYFLT"], [1, 1, 1, "", "sleep"], [1, 1, 1, "", "spin"], [1, 1, 1, "", "spout"], [1, 1, 1, "", "sr"], [1, 1, 1, "", "start"], [1, 1, 1, "", "stop"], [1, 1, 1, "", "stringChannel"], [1, 1, 1, "", "stringData"], [1, 1, 1, "", "systemSr"], [1, 1, 1, "", "table"], [1, 1, 1, "", "tableArgs"], [1, 1, 1, "", "tableLength"], [1, 1, 1, "", "unlockChannel"], [1, 1, 1, "", "version"], [1, 1, 1, "", "writeCircularBuffer"]], "ctcsound7.api7.CsoundPerformanceThread": [[1, 1, 1, "", "csound"], [1, 1, 1, "", "flushMessageQueue"], [1, 1, 1, "", "inputMessage"], [1, 1, 1, "", "isRunning"], [1, 1, 1, "", "join"], [1, 1, 1, "", "pause"], [1, 1, 1, "", "play"], [1, 1, 1, "", "processCallback"], [1, 1, 1, "", "record"], [1, 1, 1, "", "scoreEvent"], [1, 1, 1, "", "setProcessCallback"], [1, 1, 1, "", "setScoreOffsetSeconds"], [1, 1, 1, "", "status"], [1, 1, 1, "", "stop"], [1, 1, 1, "", "stopRecord"], [1, 1, 1, "", "togglePause"]]}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "method", "Python method"], "2": ["py", "attribute", "Python attribute"]}, "objtypes": {"0": "py:class", "1": "py:method", "2": "py:attribute"}, "terms": {"": [0, 1], "0": [0, 1], "00": 0, "0dbf": [0, 1], "0x10000": [0, 1], "1": [0, 1], "10": [0, 1], "100": 0, "1000": [0, 1], "1024": [0, 1], "16": [0, 1], "18": [0, 1], "2": [0, 1], "2147483646": 0, "2147483647": 0, "231": [0, 1], "24": [0, 1], "24bit": [0, 1], "255": 0, "32": [0, 1], "4": [0, 1], "5": [0, 1], "6": [1, 2], "6180": [0, 1], "65535": [0, 1], "65536": [0, 1], "7": [0, 2], "742938285": 0, "8": 0, "A": [0, 1], "As": [0, 1], "At": [0, 1], "But": 1, "For": [0, 1], "If": [0, 1], "In": [0, 1], "It": [0, 1], "NOT": 0, "Not": [0, 1], "OR": [0, 1], "On": [0, 1], "One": [0, 1], "Or": [0, 1], "The": [0, 1], "These": [0, 1], "To": 0, "With": [0, 1], "a1": [0, 1], "a4": [0, 1], "about": [0, 1], "abov": [0, 1], "absolut": [0, 1], "absp2mod": [0, 1], "access": [0, 1], "account": 0, "acquir": 0, "across": 0, "activ": [0, 1], "actual": [0, 1], "ad": [0, 1], "adat": 1, "adata": 1, "add": [0, 1], "addit": [0, 1], "addr": 0, "address": [0, 1], "addspinsampl": 0, "affect": 0, "after": [0, 1], "again": [0, 1], "aiff": [0, 1], "alaw": [0, 1], "alia": 1, "all": [0, 1], "alloc": [0, 1], "allocatedchannel": 1, "allow": [0, 1], "allowreleas": 0, "alphabet": 0, "alreadi": [0, 1], "also": [0, 1], "altern": 1, "alwai": [0, 1], "an": [0, 1], "analysi": [0, 1], "ani": [0, 1], "anoth": 0, "anyth": 1, "aopfunc": 0, "api": [0, 1], "api6": 0, "api7": 1, "apivers": [0, 1], "append": [0, 1], "appendopcod": [0, 1], "appli": 1, "applic": [0, 1], "ar": [0, 1], "arg": [0, 1], "argument": [0, 1], "arrai": [0, 1], "arraydat": 1, "arraydat_p": 1, "arraydata": 1, "arraydatadimens": 1, "arraydatas": 1, "arraydatatyp": 1, "ascii": [0, 1], "associ": [0, 1], "assum": [0, 1], "async": [0, 1], "asynchron": [0, 1], "atom": 0, "attach": [0, 1], "attempt": 0, "attr": [0, 1], "attribut": [0, 1], "au": [0, 1], "au_hal": [0, 1], "audio": [0, 1], "audiochannel": [0, 1], "audiodevic": [0, 1], "audiodevlist": [0, 1], "avail": [0, 1], "avr": [0, 1], "b": 0, "backend": 1, "backward": 1, "barrier": 0, "becaus": [0, 1], "becom": [0, 1], "been": [0, 1], "befor": [0, 1], "begin": [0, 1], "behav": 0, "behavior": 0, "being": [0, 1], "below": [0, 1], "between": [0, 1], "bharris3": 1, "bharrismin": 1, "bidirect": [0, 1], "bit": [0, 1], "bitwis": [0, 1], "blackman": 1, "blank": 0, "block": [0, 1], "bool": [0, 1], "boolean": [0, 1], "both": [0, 1], "bound": 0, "break": [0, 1], "bu": 0, "buf": 0, "buffer": [0, 1], "bufsiz": 0, "byte": [0, 1], "c": [0, 1], "c_char_p": [0, 1], "c_int": 0, "c_int32": 0, "c_void_p": [0, 1], "caf": [0, 1], "call": [0, 1], "callabl": [0, 1], "callback": [0, 1], "caller": [0, 1], "can": [0, 1], "cannot": [0, 1], "care": 0, "carri": 1, "case": [0, 1], "cast": [0, 1], "certain": 1, "chang": 0, "channel": [0, 1], "channeldatas": [0, 1], "channelinfo": [0, 1], "channellock": 0, "channelptr": [0, 1], "channelvartypenam": 1, "charact": 0, "characterist": [0, 1], "check": 0, "child": 0, "chnparam": [0, 1], "circular": [0, 1], "circularbuf": [0, 1], "circularbuff": 0, "class": [0, 1], "clean": [0, 1], "cleanup": [0, 1], "clear": [0, 1], "clearspin": 0, "close": [0, 1], "closelibrari": 0, "code": [0, 1], "come": [0, 1], "command": [0, 1], "compar": 0, "compat": [0, 1], "compil": [0, 1], "compile_": [0, 1], "compilearg": 0, "compilecsd": [0, 1], "compilecsdtext": [0, 1], "compileorc": [0, 1], "compileorcasync": [0, 1], "compiletre": 0, "compiletreeasync": 0, "configur": 0, "congruenti": 0, "consol": 0, "constrain": [0, 1], "construct": [0, 1], "constructor": [0, 1], "contain": [0, 1], "content": [0, 1], "continu": [0, 1], "control": [0, 1], "controlchannel": [0, 1], "controlchannelhint": [0, 1], "controlchannelinfo": [0, 1], "convert": [0, 1], "coopert": 0, "copi": [0, 1], "coreaudio": [0, 1], "correspond": 0, "could": 0, "cpu": [0, 1], "cputim": 0, "crash": 0, "creat": [0, 1], "createbarri": 0, "createcircularbuff": [0, 1], "createglobalvari": 0, "createmessagebuff": [0, 1], "createmutex": 0, "createthread": 0, "createthread2": 0, "createthreadlock": 0, "creation": [0, 1], "cs_audiodevic": [0, 1], "cscore": 0, "csd": [0, 1], "csd_text": 0, "cslanguage_default": 0, "cslanguage_english_uk": 0, "cslanguage_french": 0, "csoption": [0, 1], "csound": 2, "csound6": [0, 1], "csound7": 1, "csound_audio_channel": 0, "csound_callback_kbd_ev": [0, 1], "csound_callback_kbd_text": [0, 1], "csound_control_channel": 0, "csound_creat": 1, "csound_error": [0, 1], "csound_filetyp": 0, "csound_input_channel": 0, "csound_memori": [0, 1], "csound_output_channel": 0, "csound_string_channel": 0, "csound_success": [0, 1], "csoundcreat": [0, 1], "csoundparam": [0, 1], "csoundperformancethread": [0, 1, 2], "csoundrandmt": 0, "csoundrandmtst": 0, "csoundrtaudioparam": 0, "csp": [0, 1], "csscore": 1, "csstrng": 0, "ct": [0, 1], "ctcsound": [0, 1], "ctcsound7": [0, 1], "ctype": 0, "current": [0, 1], "currentthreadid": 0, "currenttimesampl": [0, 1], "cycl": 0, "d": [0, 1], "data": [0, 1], "databas": 0, "dataclass": 0, "datatyp": 1, "dealloc": 0, "debug": [0, 1], "debugmsg": [0, 1], "def": 0, "default": [0, 1], "defin": 0, "deinitfunc": 1, "delet": [0, 1], "delete_channel_list": 1, "deletechannellist": [0, 1], "deletetre": 0, "depend": [0, 1], "describ": [0, 1], "descript": 0, "dest": 0, "destin": [0, 1], "destroi": [0, 1], "destroybarri": 0, "destroycircularbuff": [0, 1], "destroyglobalvari": 0, "destroymessagebuff": [0, 1], "destroymutex": 0, "destroythreadlock": 0, "detail": [0, 1], "determin": [0, 1], "devic": [0, 1], "device_id": [0, 1], "device_nam": [0, 1], "deviceid": [0, 1], "devicenam": [0, 1], "dictionnari": [0, 1], "dimens": 1, "dir": [0, 1], "direct": [0, 1], "directli": [0, 1], "directori": [0, 1], "disabl": [0, 1], "dispatch": [0, 1], "displai": [0, 1], "disposeopcodelist": 0, "do": 0, "doe": [0, 1], "done": [0, 1], "doubl": [0, 1], "drawgraph": [0, 1], "driven": 0, "dsblksiz": [0, 1], "dtype": 1, "durat": 0, "dure": [0, 1], "dynam": 0, "e": [0, 1], "each": [0, 1], "echo": [0, 1], "effici": 0, "eg": [0, 1], "either": [0, 1], "elaps": 0, "element": [0, 1], "elems": [0, 1], "elsewher": 1, "empti": [0, 1], "enabl": [0, 1], "end": [0, 1], "endin": [0, 1], "engin": [0, 1], "enough": [0, 1], "ensur": 0, "entir": [0, 1], "enumer": [0, 1], "env": [0, 1], "environ": [0, 1], "equal": 0, "err": [0, 1], "errcod": 1, "errmsg": 1, "error": [0, 1], "errorcod": 1, "errormsg": 0, "especi": 0, "etc": [0, 1], "evalcod": [0, 1], "evalu": [0, 1], "event": [0, 1], "eventstr": 1, "ever": 0, "everi": [0, 1], "exact": 1, "exactli": 0, "exampl": [0, 1], "except": 0, "execut": [0, 1], "exist": [0, 1], "exit": 0, "exitgraph": [0, 1], "expect": [0, 1], "explain": 1, "expos": 1, "extend": [0, 1], "extern": [0, 1], "f": [0, 1], "facil": 0, "fail": [0, 1], "failur": [0, 1], "fals": [0, 1], "faster": 0, "fetch": [0, 1], "fft": 1, "fftsize": 1, "file": [0, 1], "filenam": [0, 1], "filetyp": [0, 1], "fill": 0, "fin": 0, "final": 0, "find": 0, "finish": [0, 1], "first": [0, 1], "firstmessag": [0, 1], "firstmessageattr": [0, 1], "flac": [0, 1], "flag": [0, 1], "float": [0, 1], "flush": [0, 1], "flushcircularbuff": [0, 1], "flushmessagequeu": [0, 1], "fmt": 0, "folder": 1, "follow": [0, 1], "form": [0, 1], "format": [0, 1], "found": [0, 1], "fout": 0, "fraction": 0, "frame": [0, 1], "framecount": 1, "frames": 0, "free": [0, 1], "freed": [0, 1], "frequenc": [0, 1], "from": [0, 1], "frompoint": 1, "front": [0, 1], "fsig": [0, 1], "full": [0, 1], "function": [0, 1], "futur": [0, 1], "g": 1, "gen": [0, 1], "gener": [0, 1], "get": [0, 1], "get0dbf": [0, 1], "getchanneldatas": 0, "getlibrarysymbol": 0, "getopcod": 0, "given": [0, 1], "global": [0, 1], "global_buff": 0, "go": 1, "gracefulli": 0, "granular": 1, "graphic": [0, 1], "greater": 0, "guarante": 0, "guard": [0, 1], "gui": [0, 1], "h": [0, 1], "ha": [0, 1], "ham": 1, "handl": [0, 1], "hann": 1, "have": [0, 1], "header": 0, "here": 1, "hint": [0, 1], "hold": [0, 1], "host": [0, 1], "hostdata": [0, 1], "how": [0, 1], "howev": [0, 1], "htk": [0, 1], "hw": [0, 1], "i": [0, 1], "i1": [0, 1], "id": 0, "ident": [0, 1], "identifi": [0, 1], "ignor": [0, 1], "immedi": [0, 1], "immediatli": [0, 1], "implement": [0, 1], "impli": 0, "import": [0, 1], "includ": [0, 1], "incompat": 0, "indefinit": [0, 1], "independ": [0, 1], "index": 0, "indic": [0, 1], "infinit": 0, "info": [0, 1], "inform": [0, 1], "init": [0, 1], "initarraychannel": 1, "initfunc": 1, "initi": [0, 1], "initialis": [0, 1], "initkei": 0, "initpvschannel": 1, "inittimerstruct": 0, "input": [0, 1], "inputbuff": 0, "inputbuffers": 0, "inputmessag": [0, 1], "inputmessageasync": 0, "inputnam": 0, "insert": 0, "instanc": [0, 1], "instanti": 1, "instead": [0, 1], "instr": [0, 1], "instrnam": 0, "instrument": [0, 1], "int": [0, 1], "integ": [0, 1], "interface_nam": [0, 1], "interleav": 0, "intern": [0, 1], "introduct": 2, "intyp": [0, 1], "invalid": [0, 1], "invalu": [0, 1], "io": [0, 1], "iopfunc": 0, "ipsum": 2, "ircam": [0, 1], "isgraph": [0, 1], "isnamedgen": 0, "isoutput": [0, 1], "isrecurs": 0, "isrun": [0, 1], "isscorepend": [0, 1], "item": [0, 1], "iter": [0, 1], "itermessag": [0, 1], "its": [0, 1], "itself": 1, "jack": [0, 1], "join": [0, 1], "joint": [0, 1], "jointhread": 0, "k": [0, 1], "kaiser": 1, "keep": 0, "kei": [0, 1], "keyboard": [0, 1], "keypress": [0, 1], "kill": 0, "killgraph": [0, 1], "killinst": 0, "kind": [0, 1], "known": [0, 1], "kopfunc": 0, "kr": [0, 1], "ksmp": [0, 1], "l": 0, "langcod": 0, "languag": 0, "last": [0, 1], "later": 0, "latter": [0, 1], "least": [0, 1], "len": 0, "length": [0, 1], "less": 1, "level": [0, 1], "libcsound": 1, "librari": [0, 1], "librarypath": 0, "like": [0, 1], "line": [0, 1], "linear": 0, "linux": [0, 1], "list": [0, 1], "list_channel": 1, "listchannel": [0, 1], "listutil": 0, "littl": 0, "live": [0, 1], "load": [0, 1], "loadplugin": [0, 1], "local": [0, 1], "lock": [0, 1], "lockchannel": 1, "lockmutex": 0, "lockmutexnowait": 0, "logic": 1, "long": [0, 1], "loop": [0, 1], "lori": 2, "lst": [0, 1], "maco": [0, 1], "made": [0, 1], "mai": [0, 1], "make": [0, 1], "makegraph": [0, 1], "mani": 0, "manner": 1, "mask": [0, 1], "masnchnl": 1, "master": 0, "mat4": [0, 1], "mat5": [0, 1], "match": [0, 1], "max": 0, "maxnchnl": 0, "maxthread": 0, "mean": 1, "meaning": [0, 1], "measur": [0, 1], "memori": [0, 1], "mention": [0, 1], "merg": [0, 1], "mersenn": 0, "messag": [0, 1], "message_": 1, "messagecnt": [0, 1], "messagelevel": [0, 1], "meth": 0, "method": [0, 1], "midi": [0, 1], "midi_modul": [0, 1], "mididevic": [0, 1], "mididevlist": [0, 1], "midwai": [0, 1], "might": 0, "millisecond": [0, 1], "mirror": 0, "mode": [0, 1], "modul": [0, 1], "moment": 1, "monitor": 0, "more": [0, 1], "most": [0, 1], "move": [0, 1], "mpc2k": [0, 1], "msg_attr": [0, 1], "mt19937": 0, "multipl": [0, 1], "multitask": 0, "must": [0, 1], "mute": [0, 1], "mutex": 0, "myflt": [0, 1], "n": [0, 1], "n_getstr": 0, "name": [0, 1], "namedgen": 0, "namelen": 0, "nb": [0, 1], "nbyte": 0, "nchnl": [0, 1], "nchnls_i": 0, "nchnlsinput": [0, 1], "ndarrai": [0, 1], "nearest": 0, "need": [0, 1], "neg": [0, 1], "new": [0, 1], "newest": 0, "newli": 0, "newlin": 1, "newopcodelist": 0, "next": 0, "nist": [0, 1], "node": 0, "non": [0, 1], "none": [0, 1], "normal": [0, 1], "note": [0, 1], "noth": 0, "notic": 0, "notifi": 0, "notifythreadlock": 0, "nowait": 0, "null": [0, 1], "num": 0, "number": [0, 1], "numbuf": [0, 1], "numelem": [0, 1], "numitem": [0, 1], "numpi": [0, 1], "nuttallc3": 1, "o": [0, 1], "object": [0, 1], "obtain": [0, 1], "occur": [0, 1], "off": [0, 1], "offlin": [0, 1], "offset": [0, 1], "often": 0, "ogg": [0, 1], "ok": [0, 1], "old": 0, "oldest": 0, "onc": [0, 1], "one": [0, 1], "ones": 0, "onli": [0, 1], "op": 1, "opaqu": [0, 1], "oparm": 0, "opcod": [0, 1], "opcodedef": 0, "opcodedir": [0, 1], "opcodelistentri": 0, "open": [0, 1], "openlibrari": 0, "oper": [0, 1], "opnam": [0, 1], "option": [0, 1], "orc": [0, 1], "orchestra": [0, 1], "order": [0, 1], "other": [0, 1], "otherwis": [0, 1], "out": [0, 1], "output": [0, 1], "outputbuff": 0, "outputbuffers": 0, "outputformat": 0, "outputnam": 0, "outtyp": 0, "outvalu": [0, 1], "outyp": [0, 1], "over": [0, 1], "overlap": 1, "own": 0, "p": [0, 1], "p1": [0, 1], "p3": 0, "pa_cb": [0, 1], "paf": [0, 1], "pair": 0, "param": [0, 1], "paramet": [0, 1], "pars": [0, 1], "parseorc": 0, "part": 0, "pass": [0, 1], "path": [0, 1], "pathnam": [0, 1], "paus": [0, 1], "peekcircularbuff": [0, 1], "pend": [0, 1], "per": [0, 1], "perffunc": 1, "perform": [0, 1], "perform_ksmp": 1, "performancethread": [0, 1], "performbuff": 0, "performksmp": [0, 1], "perfthread": [0, 1], "period": [0, 1], "perspect": [0, 1], "pfield": [0, 1], "pid": 0, "piec": [0, 1], "place": [0, 1], "plai": [0, 1], "platform": [0, 1], "playback": [0, 1], "plu": 0, "plugin": [0, 1], "point": [0, 1], "pointer": [0, 1], "popfirstmessag": [0, 1], "port": 0, "portaudio": [0, 1], "posit": [0, 1], "possibl": 1, "possil": 1, "pre": 1, "prealloc": [0, 1], "prepar": [0, 1], "preprocess": [0, 1], "present": [0, 1], "preserv": [0, 1], "press": [0, 1], "previou": 0, "previous": [0, 1], "print": [0, 1], "prior": [0, 1], "prng": 0, "process": [0, 1], "processcallback": [0, 1], "processor": 0, "program": 0, "protect": 0, "provid": 0, "proxi": 1, "pseudo": 0, "ptr": 1, "purpos": [0, 1], "pv": [0, 1], "pvf": [0, 1], "pvschannel": 0, "pvsdat": 1, "pvsdata": 1, "pvsdataffts": 1, "pvsdataformat": 1, "pvsdataframecount": 1, "pvsdataoverlap": 1, "pvsdatawindows": 1, "pvsdatext": 0, "pvsin": 0, "pvsout": 0, "py": 0, "python": 0, "q": 0, "queri": [0, 1], "queryglobalvari": 0, "queryglobalvariablenocheck": 0, "queue": [0, 1], "r": [0, 1], "rand": [0, 1], "rand31": 0, "randmt": 0, "random": 0, "randomseedfromtim": 0, "rang": [0, 1], "rate": [0, 1], "rather": 0, "raw": [0, 1], "re": 0, "reach": [0, 1], "read": [0, 1], "readcircularbuff": [0, 1], "reader": [0, 1], "readmessag": [0, 1], "readscor": 0, "readscoreasync": 0, "real": [0, 1], "realloc": 0, "realtim": [0, 1], "reason": [0, 1], "receiv": [0, 1], "recent": [0, 1], "record": [0, 1], "recov": 0, "rect": 1, "recurs": 0, "reentrant": 0, "refer": [0, 1], "regist": [0, 1], "register_keyboard_callback": 1, "registerkeyboardcallback": [0, 1], "registersenseeventcallback": 0, "registr": [0, 1], "rel": [0, 1], "releas": [0, 1], "reload": [0, 1], "remain": [0, 1], "remov": [0, 1], "removekeyboardcallback": [0, 1], "repeat": [0, 1], "repeatedli": [0, 1], "replac": [0, 1], "repres": [0, 1], "request": 1, "requir": 0, "reset": [0, 1], "resourc": [0, 1], "respect": 0, "respons": [0, 1], "result": [0, 1], "retain": [0, 1], "retcod": 0, "retriev": [0, 1], "return": [0, 1], "returncod": [0, 1], "retval": [0, 1], "revers": [0, 1], "rewind": [0, 1], "rewindscor": [0, 1], "rf64": [0, 1], "routin": 0, "rt": [0, 1], "rtaudio": 0, "rtmodul": [0, 1], "rtplayduserdata": 0, "rtrecorduserdata": 0, "rtype": [0, 1], "run": [0, 1], "runcommand": 0, "runutil": [0, 1], "safe": [0, 1], "same": [0, 1], "sampl": [0, 1], "samplebit": [0, 1], "schar": [0, 1], "schedul": [0, 1], "sco": 0, "score": [0, 1], "scoreev": [0, 1], "scoreeventabsolut": 0, "scoreeventabsoluteasync": 0, "scoreeventasync": [0, 1], "scoreoffsetsecond": [0, 1], "scoretim": [0, 1], "sd": [0, 1], "sd2": [0, 1], "sdata": 1, "search": [0, 1], "second": [0, 1], "section": 1, "see": [0, 1], "seed": 0, "seedrandmt": 0, "select": 0, "send": [0, 1], "sens": [0, 1], "sensekei": [0, 1], "sensev": 0, "sent": [0, 1], "separ": [0, 1], "sequenc": [0, 1], "server": 0, "set": [0, 1], "set_score_offset_second": [], "set_score_pend": [], "setarraydata": 1, "setaudiochannel": [0, 1], "setaudiodevlistcallback": 0, "setcontrolchannel": [0, 1], "setcontrolchannelhint": [0, 1], "setcscorecallback": 0, "setdebug": [0, 1], "setdrawgraphcallback": [0, 1], "setexitgraphcallback": [0, 1], "setexternalmidierrorstringcallback": [0, 1], "setexternalmidiinclosecallback": [0, 1], "setexternalmidiinopencallback": [0, 1], "setexternalmidioutclosecallback": [0, 1], "setexternalmidioutopencallback": [0, 1], "setexternalmidireadcallback": [0, 1], "setexternalmidiwritecallback": [0, 1], "setfileopencallback": 0, "setglobalenv": [0, 1], "sethostaudioio": [0, 1], "sethostdata": [0, 1], "sethostimplementedaudioio": 0, "sethostimplementedmidiio": [0, 1], "sethostmidiio": 1, "setinput": [0, 1], "setinputchannelcallback": [0, 1], "setisgraph": [0, 1], "setkillgraphcallback": [0, 1], "setlanguag": 0, "setmakegraphcallback": [0, 1], "setmessagecallback": [0, 1], "setmessagelevel": [0, 1], "setmessagestringcallback": 1, "setmididevicelistcallback": 1, "setmididevlistcallback": 0, "setmidifileinput": 0, "setmidifileoutput": 0, "setmidiinput": 0, "setmidimodul": [0, 1], "setmidioutput": 0, "setopenfilecallback": 1, "setopensoundfilecallback": 1, "setopt": [0, 1], "setoutput": [0, 1], "setoutputchannelcallback": [0, 1], "setparam": [0, 1], "setplayopencallback": 0, "setprocesscallback": [0, 1], "setpvschannel": 0, "setpvsdata": 1, "setrecordopencallback": 0, "setrtaudiomodul": [0, 1], "setrtclosecallback": 0, "setrtplaycallback": 0, "setrtrecordcallback": 0, "setscoreoffsetsecond": [0, 1], "setscorepend": [0, 1], "setspinsampl": 0, "setstringchannel": [0, 1], "setstringdata": 1, "setyieldcallback": 0, "share": 0, "short": [0, 1], "should": [0, 1], "signal": 0, "signatur": 1, "similar": [0, 1], "similarli": [0, 1], "simpl": 0, "simpli": [0, 1], "sinc": [0, 1], "singl": [0, 1], "size": [0, 1], "sizeofmyflt": [0, 1], "sleep": [0, 1], "slot": [0, 1], "so": [0, 1], "softwar": [0, 1], "some": [0, 1], "sooner": 0, "sort": 0, "sound": [0, 1], "soundfil": [0, 1], "sourc": [0, 1], "space": [0, 1], "special": [0, 1], "specifi": [0, 1], "spin": [0, 1], "spinlock": 0, "spinlockinit": 0, "spintrylock": 0, "spinunlock": 0, "spout": [0, 1], "spoutsampl": 0, "sr": [0, 1], "src": 0, "stack": 0, "start": [0, 1], "state": [0, 1], "statement": [0, 1], "statu": [0, 1], "stderr": [0, 1], "stdout": [0, 1], "still": [0, 1], "stop": [0, 1], "stoprecord": [0, 1], "stopudpconsol": 0, "storag": [0, 1], "store": [0, 1], "str": [0, 1], "string": [0, 1], "stringchannel": [0, 1], "stringdat": 1, "stringdata": 1, "struct": [0, 1], "structur": [0, 1], "stuct": 0, "style": 0, "success": [0, 1], "successful": 1, "successfulli": [0, 1], "suffici": 0, "sum": 0, "suppli": [0, 1], "support": [0, 1], "sure": [0, 1], "svx": [0, 1], "swap": 0, "symbol": 0, "symbolnam": 0, "synchron": [0, 1], "system": [0, 1], "systemsr": [0, 1], "tabl": [0, 1], "tablearg": [0, 1], "tablecopyin": 0, "tablecopyinasync": 0, "tablecopyout": 0, "tablecopyoutasync": 0, "tableget": 0, "tablelength": [0, 1], "tablenum": [0, 1], "tableset": 0, "tag": [0, 1], "take": [0, 1], "taken": [0, 1], "tell": [0, 1], "temporari": 0, "termin": [0, 1], "text": [0, 1], "than": 0, "thei": [0, 1], "them": [0, 1], "therefor": 0, "thi": [0, 1], "those": [0, 1], "thread": [0, 1], "threadsaf": [0, 1], "threadsafeti": 0, "through": [0, 1], "ti": [0, 1], "time": [0, 1], "timeoffset": 0, "timer": 0, "timerstruct": 0, "todo": [0, 1, 3], "togglepaus": [0, 1], "top": 0, "track": [0, 1], "translat": [0, 1], "transmiss": 0, "transmit": 0, "tree": 0, "tri": 0, "true": [0, 1], "tupl": [0, 1], "turn": [0, 1], "turnoff": 0, "twister": 0, "two": 0, "type": [0, 1], "type_": 0, "type_mask": 1, "typemask": 1, "uchar": [0, 1], "udp": 0, "udpconsol": 0, "udpserverclos": 0, "udpserverstart": 0, "udpserverstatu": 0, "ulaw": [0, 1], "undefin": 0, "underli": 1, "unimpl": 0, "union": [0, 1], "unless": 0, "unload": 0, "unlock": [0, 1], "unlockchannel": 1, "unlockmutex": 0, "unshift": [0, 1], "unsign": 0, "until": [0, 1], "up": [0, 1], "updat": [0, 1], "us": [0, 1], "user": [0, 1], "userdata": [0, 1], "usual": 0, "util": [0, 1], "utilitydescript": 0, "val": [0, 1], "valid": 0, "valu": [0, 1], "var": 1, "vari": 0, "variabl": [0, 1], "variad": 0, "version": [0, 1], "via": [0, 1], "voc": [0, 1], "void": [0, 1], "vorbi": [0, 1], "vst": [0, 1], "w64": [0, 1], "wa": [0, 1], "wai": 0, "wait": [0, 1], "waitbarri": 0, "waitthreadlock": 0, "waitthreadlocknotimeout": 0, "want": [0, 1], "wav": [0, 1], "wavex": [0, 1], "well": 0, "what": 1, "when": [0, 1], "whenev": [0, 1], "where": [0, 1], "whether": [0, 1], "which": [0, 1], "whichev": 0, "while": [0, 1], "window": [0, 1], "winmm": [0, 1], "winsiz": 1, "wintyp": 1, "withcsoundinst": 0, "within": 1, "without": [0, 1], "work": [0, 1], "workaround": 0, "worth": [0, 1], "write": [0, 1], "writecircularbuff": [0, 1], "written": [0, 1], "wve": [0, 1], "xi": [0, 1], "yet": [0, 1], "yield": [0, 1], "you": [0, 1], "zero": [0, 1]}, "titles": ["Csound 6", "Csound 7", "Welcome to ctcsound7\u2019s documentation!", "Introduction"], "titleterms": {"": 2, "6": 0, "7": 1, "csound": [0, 1], "ctcsound7": 2, "document": 2, "introduct": 3, "welcom": 2}}) \ No newline at end of file