~ubuntu-branches/ubuntu/precise/csound/precise

« back to all changes in this revision

Viewing changes to iOS/Csound iOS Examples/Csound iOS Examples/ViewControllers/AudioInTest/audiofiletest.csd

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2012-04-19 09:26:46 UTC
  • mfrom: (3.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20120419092646-96xbj1n6atuqosk2
Tags: 1:5.17.6~dfsg-1
* New upstream release
 - Do not build the wiimote opcodes (we need wiiuse).
* Add new API function to symbols file
* Disable lua opcodes, they were broken. Requires OpenMP to be enabled.
* Backport fixes from upstream:
  - Link dssi4cs with dl. Backport
  - Fix building of CsoundAC

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<CsoundSynthesizer>
 
2
<CsOptions>
 
3
-o dac -+rtmidi=null -+rtaudio=null -d -+msg_color=0 -M0 -m0 -i adc
 
4
</CsOptions>
 
5
<CsInstruments>
 
6
sr        = 44100
 
7
ksmps     = 256
 
8
nchnls    = 2
 
9
0dbfs     = 1
 
10
 
 
11
        instr 1
 
12
S_file = p4
 
13
ilen filelen S_file
 
14
S_score sprintfk {{ i 2 0 %f "%s" }}, ilen, S_file
 
15
scoreline S_score, 1
 
16
turnoff
 
17
        endin
 
18
 
 
19
        instr 2
 
20
kpitch chnget "pitch"
 
21
aL, aR diskin2 p4, kpitch
 
22
aL = aL
 
23
aR = aR
 
24
outs aL, aR
 
25
        endin
 
26
 
 
27
 
 
28
</CsInstruments>
 
29
<CsScore>
 
30
 
 
31
f0 100000
 
32
 
 
33
</CsScore>
 
34
</CsoundSynthesizer>