Csound Csound-dev Csound-tekno Search About

String p-fields in subinstr

Date2015-10-25 19:06
FromBernt Isak Wærstad
SubjectString p-fields in subinstr
AttachmentsMain.csd  Reverb.csd  
Example files attached

I want to use a string sent through p-field to set the name of a chn channel, but I can't it to work neither with subinstr (which is what I want to use) or calling from score. If I try to use this code:

aOutL, aOutR subinstr "Reverb", "ReverbOne", 0.5, 0.9, 6000

I get this error:

error:  Unable to find opcode entry for 'subinstr' with matching argument types:

Found: aa subinstr SSccc

Line: 35

 from file Main.csd (1)


And if i try to call it from score like this:

i "Reverb" 0 10 "ReverbOne" 0.5 0.9 6000

I get a segmentation fault.

Aren't strings allowed as a p-field in the subinstr opcode? Seems like there might be multiple errors here. I'm also open to the fact that this might be a very stupid idea in the first place and that there's a much better solution to the problem :)

 

--
Mvh.

Bernt Isak Wærstad


Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here

Date2015-10-25 19:53
FromTarmo Johannes
SubjectRe: String p-fields in subinstr

Hi,

I guess subinstr does not take string parameters (but would be very nice, if it could - also i miss it by the schedule family opcodes). I have used scoreline in such cases.
Why your i statement line, i cannot guess, this syntax should work.
On your case would be a possible workaround to put the channel names into global string array and pass the index to subinstr.
Best!
Tarmo

25.10.2015 21:07 kirjutas kuupäeval "Bernt Isak Wærstad" <berntisak@gmail.com>:
Example files attached

I want to use a string sent through p-field to set the name of a chn channel, but I can't it to work neither with subinstr (which is what I want to use) or calling from score. If I try to use this code:

aOutL, aOutR subinstr "Reverb", "ReverbOne", 0.5, 0.9, 6000

I get this error:

error:  Unable to find opcode entry for 'subinstr' with matching argument types:

Found: aa subinstr SSccc

Line: 35

 from file Main.csd (1)


And if i try to call it from score like this:

i "Reverb" 0 10 "ReverbOne" 0.5 0.9 6000

I get a segmentation fault.

Aren't strings allowed as a p-field in the subinstr opcode? Seems like there might be multiple errors here. I'm also open to the fact that this might be a very stupid idea in the first place and that there's a much better solution to the problem :)

 

--
Mvh.

Bernt Isak Wærstad


Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here
Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here

Date2015-10-26 07:26
FromOeyvind Brandtsegg
SubjectRe: String p-fields in subinstr
Hi Bernt,

In the reverb instr you do:
Sleft sprintf "%s_L", p4
Sright sprintf "%s_R", p4

I guess this generates some kind of type error with sprintf, since the
variable type is ambiguous (not declared, so to speak).
This will work better:
Schan strget p4
Sleft sprintf "%s_L", Schan
Sright sprintf "%s_R", Schan

As for subinstr, yes, it probably does not take string arguments. This
would be nice to have, and natural to expect it to work just like a
score line (file an issue?).

Oeyvind

2015-10-25 20:53 GMT+01:00 Tarmo Johannes :
> Hi,
>
> I guess subinstr does not take string parameters (but would be very nice, if
> it could - also i miss it by the schedule family opcodes). I have used
> scoreline in such cases.
> Why your i statement line, i cannot guess, this syntax should work.
> On your case would be a possible workaround to put the channel names into
> global string array and pass the index to subinstr.
> Best!
> Tarmo
>
> 25.10.2015 21:07 kirjutas kuupäeval "Bernt Isak Wærstad"
> :
>>
>> Example files attached
>>
>> I want to use a string sent through p-field to set the name of a chn
>> channel, but I can't it to work neither with subinstr (which is what I want
>> to use) or calling from score. If I try to use this code:
>>
>> aOutL, aOutR subinstr "Reverb", "ReverbOne", 0.5, 0.9, 6000
>>
>> I get this error:
>>
>> error:  Unable to find opcode entry for 'subinstr' with matching argument
>> types:
>>
>> Found: aa subinstr SSccc
>>
>> Line: 35
>>
>>  from file Main.csd (1)
>>
>>
>> And if i try to call it from score like this:
>>
>> i "Reverb" 0 10 "ReverbOne" 0.5 0.9 6000
>>
>>
>> I get a segmentation fault.
>>
>> Aren't strings allowed as a p-field in the subinstr opcode? Seems like
>> there might be multiple errors here. I'm also open to the fact that this
>> might be a very stupid idea in the first place and that there's a much
>> better solution to the problem :)
>>
>>
>>
>> --
>> Mvh.
>>
>> Bernt Isak Wærstad
>>
>>
>> Csound mailing list Csound@listserv.heanet.ie
>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to
>> https://github.com/csound/csound/issues Discussions of bugs and features can
>> be posted here
>
> Csound mailing list Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to
> https://github.com/csound/csound/issues Discussions of bugs and features can
> be posted here



-- 

Oeyvind Brandtsegg
Professor of Music Technology
NTNU
7491 Trondheim
Norway
Cell: +47 92 203 205

http://flyndresang.no/
http://www.partikkelaudio.com/
http://soundcloud.com/brandtsegg
http://soundcloud.com/t-emp

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here

Date2015-10-26 22:30
FromBernt Isak Wærstad
SubjectRe: String p-fields in subinstr
Ah, of course! the strget solved the segfault 

The subinstr is still not working though, so I filed an issue.

Tarmo: Hmm, I don't that would work (or at least it would be very messy) - the reason for sending the channel names this way is to simplify the code for users who doesn't know Csound by using macros. I'm not sure this approach is a good one though. I guess I can try to test it with the event opcode instead in the mean time. 

On 26 October 2015 at 08:26, Oeyvind Brandtsegg <oyvind.brandtsegg@ntnu.no> wrote:
Hi Bernt,

In the reverb instr you do:
Sleft sprintf "%s_L", p4
Sright sprintf "%s_R", p4

I guess this generates some kind of type error with sprintf, since the
variable type is ambiguous (not declared, so to speak).
This will work better:
Schan strget p4
Sleft sprintf "%s_L", Schan
Sright sprintf "%s_R", Schan

As for subinstr, yes, it probably does not take string arguments. This
would be nice to have, and natural to expect it to work just like a
score line (file an issue?).

Oeyvind

2015-10-25 20:53 GMT+01:00 Tarmo Johannes <tarmo.johannes@otsakool.edu.ee>:
> Hi,
>
> I guess subinstr does not take string parameters (but would be very nice, if
> it could - also i miss it by the schedule family opcodes). I have used
> scoreline in such cases.
> Why your i statement line, i cannot guess, this syntax should work.
> On your case would be a possible workaround to put the channel names into
> global string array and pass the index to subinstr.
> Best!
> Tarmo
>
> 25.10.2015 21:07 kirjutas kuupäeval "Bernt Isak Wærstad"
> <berntisak@gmail.com>:
>>
>> Example files attached
>>
>> I want to use a string sent through p-field to set the name of a chn
>> channel, but I can't it to work neither with subinstr (which is what I want
>> to use) or calling from score. If I try to use this code:
>>
>> aOutL, aOutR subinstr "Reverb", "ReverbOne", 0.5, 0.9, 6000
>>
>> I get this error:
>>
>> error:  Unable to find opcode entry for 'subinstr' with matching argument
>> types:
>>
>> Found: aa subinstr SSccc
>>
>> Line: 35
>>
>>  from file Main.csd (1)
>>
>>
>> And if i try to call it from score like this:
>>
>> i "Reverb" 0 10 "ReverbOne" 0.5 0.9 6000
>>
>>
>> I get a segmentation fault.
>>
>> Aren't strings allowed as a p-field in the subinstr opcode? Seems like
>> there might be multiple errors here. I'm also open to the fact that this
>> might be a very stupid idea in the first place and that there's a much
>> better solution to the problem :)
>>
>>
>>
>> --
>> Mvh.
>>
>> Bernt Isak Wærstad
>>
>>
>> Csound mailing list Csound@listserv.heanet.ie
>> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to
>> https://github.com/csound/csound/issues Discussions of bugs and features can
>> be posted here
>
> Csound mailing list Csound@listserv.heanet.ie
> https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to
> https://github.com/csound/csound/issues Discussions of bugs and features can
> be posted here



--

Oeyvind Brandtsegg
Professor of Music Technology
NTNU
7491 Trondheim
Norway
Cell: +47 92 203 205

http://flyndresang.no/
http://www.partikkelaudio.com/
http://soundcloud.com/brandtsegg
http://soundcloud.com/t-emp

Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here



--
Mvh.

Bernt Isak Wærstad


Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here