Csound Csound-dev Csound-tekno Search About

[Cs-dev] plugin opcode include changes or a bug?

Date2015-08-25 13:26
FromSigurd Saue
Subject[Cs-dev] plugin opcode include changes or a bug?
Hi,

Has there been a significant change in the include files for plugin opcodes (csdl.h and whatever it includes), or is there a bug now?

I just built a new plugin opcode based on the latests from Git, but it causes segmentation fault when loaded with the Csound 6.0.5 binary from April. The function table member ftable is not allocated correctly. Using includes from 6.0.5 behaves nicely.

Sigurd

------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 13:40
Fromjpff
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
Do not know of a significant cange., and csdl.h is unchanged this year. 
Rather too little to go on in this report though .  Were does it crash?

On Tue, 25 Aug 2015, Sigurd Saue wrote:

> Hi,
>
> Has there been a significant change in the include files for plugin opcodes (csdl.h and whatever it includes), or is there a bug now?
>
> I just built a new plugin opcode based on the latests from Git, but it causes segmentation fault when loaded with the Csound 6.0.5 binary from April. The function table member ftable is not allocated correctly. Using includes from 6.0.5 behaves nicely.
>
> Sigurd
>
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 13:49
FromSigurd Saue
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
I managed to get the same crash with ftconv.c from Opcodes in repo, which I modified to be an external plugin (include csdl.h, add an OENTRY struct and LINKAGE at the end).

The crash happens in line 249:
	p->IR_Data[n + k] = ftp->ftable[i] * FFTscale;

Unable to read memory. The ftp->ftable pointer is not initialized properly. It should have been created in line 190: ftp = csound->FTnp2Find(csound, p->iFTNum);


Sigurd


-----Opprinnelig melding-----
Fra: jpff [mailto:jpff@codemist.co.uk] 
Sendt: 25. august 2015 14:40
Til: Developer discussions 
Emne: Re: [Cs-dev] plugin opcode include changes or a bug?

Do not know of a significant cange., and csdl.h is unchanged this year. 
Rather too little to go on in this report though .  Were does it crash?

On Tue, 25 Aug 2015, Sigurd Saue wrote:

> Hi,
>
> Has there been a significant change in the include files for plugin opcodes (csdl.h and whatever it includes), or is there a bug now?
>
> I just built a new plugin opcode based on the latests from Git, but it causes segmentation fault when loaded with the Csound 6.0.5 binary from April. The function table member ftable is not allocated correctly. Using includes from 6.0.5 behaves nicely.
>
> Sigurd
>
> ----------------------------------------------------------------------
> -------- _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 14:02
Fromjpff
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
That function is called on a deferred table.  Which gen was used to create 
the table?  Still rather in the dark; would be nice to trace call to 
csoundFTnp2Find.  Either tat of=r an example please

On Tue, 25 Aug 2015, Sigurd Saue wrote:

> I managed to get the same crash with ftconv.c from Opcodes in repo, which I modified to be an external plugin (include csdl.h, add an OENTRY struct and LINKAGE at the end).
>
> The crash happens in line 249:
> 	p->IR_Data[n + k] = ftp->ftable[i] * FFTscale;
>
> Unable to read memory. The ftp->ftable pointer is not initialized properly. It should have been created in line 190: ftp = csound->FTnp2Find(csound, p->iFTNum);
>
>
> Sigurd
>
>
> -----Opprinnelig melding-----
> Fra: jpff [mailto:jpff@codemist.co.uk]
> Sendt: 25. august 2015 14:40
> Til: Developer discussions 
> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>
> Do not know of a significant cange., and csdl.h is unchanged this year.
> Rather too little to go on in this report though .  Were does it crash?
>
> On Tue, 25 Aug 2015, Sigurd Saue wrote:
>
>> Hi,
>>
>> Has there been a significant change in the include files for plugin opcodes (csdl.h and whatever it includes), or is there a bug now?
>>
>> I just built a new plugin opcode based on the latests from Git, but it causes segmentation fault when loaded with the Csound 6.0.5 binary from April. The function table member ftable is not allocated correctly. Using includes from 6.0.5 behaves nicely.
>>
>> Sigurd
>>
>> ----------------------------------------------------------------------
>> -------- _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 14:16
Fromjpff
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
Another question; are you using a large number of args to a ftable?  The 
only changes i can see at present are to that and gen23

All you say points to ftables which is why I ask these questions
==John ff


------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 14:23
FromSigurd Saue
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
Attachmentsftconv_mod.csd  None  None  
I've attached a very simple csd-file that triggers the crash with my "externalized" ftconv plugin. 
I will try to do some more tests over here and be more specific.

Sigurd



-----Opprinnelig melding-----
Fra: jpff [mailto:jpff@codemist.co.uk] 
Sendt: 25. august 2015 15:17
Til: Developer discussions 
Emne: Re: [Cs-dev] plugin opcode include changes or a bug?

Another question; are you using a large number of args to a ftable?  The only changes i can see at present are to that and gen23

All you say points to ftables which is why I ask these questions ==John ff


------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Date2015-08-25 15:46
FromVictor Lazzarini
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
Can you post your plugin too?
========================
Dr Victor Lazzarini
Dean of Arts, Celtic Studies and Philosophy,
Maynooth University,
Maynooth, Co Kildare, Ireland
Tel: 00 353 7086936
Fax: 00 353 1 7086952 

> On 25 Aug 2015, at 14:23, Sigurd Saue  wrote:
> 
> I've attached a very simple csd-file that triggers the crash with my "externalized" ftconv plugin. 
> I will try to do some more tests over here and be more specific.
> 
> Sigurd
> 
> 
> 
> -----Opprinnelig melding-----
> Fra: jpff [mailto:jpff@codemist.co.uk] 
> Sendt: 25. august 2015 15:17
> Til: Developer discussions 
> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
> 
> Another question; are you using a large number of args to a ftable?  The only changes i can see at present are to that and gen23
> 
> All you say points to ftables which is why I ask these questions ==John ff
> 
> 
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 15:56
FromSigurd Saue
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
Attachmentsftconv_mod.c  None  None  
I've attached the source code of my plugin, if that is what you asked for. It is a variation over ftconv with an optional k-rate parameter for clearing buffers without reinit. The opcode name is "ftconvmod" for now. 

Sigurd

-----Opprinnelig melding-----
Fra: Victor Lazzarini [mailto:Victor.Lazzarini@nuim.ie] 
Sendt: 25. august 2015 16:46
Til: Developer discussions 
Emne: Re: [Cs-dev] plugin opcode include changes or a bug?

Can you post your plugin too?
========================
Dr Victor Lazzarini
Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland
Tel: 00 353 7086936
Fax: 00 353 1 7086952 

> On 25 Aug 2015, at 14:23, Sigurd Saue  wrote:
> 
> I've attached a very simple csd-file that triggers the crash with my "externalized" ftconv plugin. 
> I will try to do some more tests over here and be more specific.
> 
> Sigurd
> 
> 
> 
> -----Opprinnelig melding-----
> Fra: jpff [mailto:jpff@codemist.co.uk]
> Sendt: 25. august 2015 15:17
> Til: Developer discussions 
> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
> 
> Another question; are you using a large number of args to a ftable?  
> The only changes i can see at present are to that and gen23
> 
> All you say points to ftables which is why I ask these questions 
> ==John ff
> 
> 
> ----------------------------------------------------------------------
> -------- _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> ------------------------------------------------------
> ------------------------ 
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

Date2015-08-25 16:07
FromVictor Lazzarini
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
My reply might be predictable, but I compiled and run your code here and it does not crash.
========================
Dr Victor Lazzarini
Dean of Arts, Celtic Studies and Philosophy,
Maynooth University,
Maynooth, Co Kildare, Ireland
Tel: 00 353 7086936
Fax: 00 353 1 7086952 

> On 25 Aug 2015, at 15:56, Sigurd Saue  wrote:
> 
> I've attached the source code of my plugin, if that is what you asked for. It is a variation over ftconv with an optional k-rate parameter for clearing buffers without reinit. The opcode name is "ftconvmod" for now. 
> 
> Sigurd
> 
> -----Opprinnelig melding-----
> Fra: Victor Lazzarini [mailto:Victor.Lazzarini@nuim.ie] 
> Sendt: 25. august 2015 16:46
> Til: Developer discussions 
> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
> 
> Can you post your plugin too?
> ========================
> Dr Victor Lazzarini
> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland
> Tel: 00 353 7086936
> Fax: 00 353 1 7086952 
> 
>> On 25 Aug 2015, at 14:23, Sigurd Saue  wrote:
>> 
>> I've attached a very simple csd-file that triggers the crash with my "externalized" ftconv plugin. 
>> I will try to do some more tests over here and be more specific.
>> 
>> Sigurd
>> 
>> 
>> 
>> -----Opprinnelig melding-----
>> Fra: jpff [mailto:jpff@codemist.co.uk]
>> Sendt: 25. august 2015 15:17
>> Til: Developer discussions 
>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>> 
>> Another question; are you using a large number of args to a ftable?  
>> The only changes i can see at present are to that and gen23
>> 
>> All you say points to ftables which is why I ask these questions 
>> ==John ff
>> 
>> 
>> ----------------------------------------------------------------------
>> -------- _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> ------------------------------------------------------
>> ------------------------ 
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> 
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 16:08
FromFelipe Sateler
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
Did you build against git but run against 6.05?

On 25 August 2015 at 12:07, Victor Lazzarini  wrote:
> My reply might be predictable, but I compiled and run your code here and it does not crash.
> ========================
> Dr Victor Lazzarini
> Dean of Arts, Celtic Studies and Philosophy,
> Maynooth University,
> Maynooth, Co Kildare, Ireland
> Tel: 00 353 7086936
> Fax: 00 353 1 7086952
>
>> On 25 Aug 2015, at 15:56, Sigurd Saue  wrote:
>>
>> I've attached the source code of my plugin, if that is what you asked for. It is a variation over ftconv with an optional k-rate parameter for clearing buffers without reinit. The opcode name is "ftconvmod" for now.
>>
>> Sigurd
>>
>> -----Opprinnelig melding-----
>> Fra: Victor Lazzarini [mailto:Victor.Lazzarini@nuim.ie]
>> Sendt: 25. august 2015 16:46
>> Til: Developer discussions 
>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>>
>> Can you post your plugin too?
>> ========================
>> Dr Victor Lazzarini
>> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland
>> Tel: 00 353 7086936
>> Fax: 00 353 1 7086952
>>
>>> On 25 Aug 2015, at 14:23, Sigurd Saue  wrote:
>>>
>>> I've attached a very simple csd-file that triggers the crash with my "externalized" ftconv plugin.
>>> I will try to do some more tests over here and be more specific.
>>>
>>> Sigurd
>>>
>>>
>>>
>>> -----Opprinnelig melding-----
>>> Fra: jpff [mailto:jpff@codemist.co.uk]
>>> Sendt: 25. august 2015 15:17
>>> Til: Developer discussions 
>>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>>>
>>> Another question; are you using a large number of args to a ftable?
>>> The only changes i can see at present are to that and gen23
>>>
>>> All you say points to ftables which is why I ask these questions
>>> ==John ff
>>>
>>>
>>> ----------------------------------------------------------------------
>>> -------- _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> ------------------------------------------------------
>>> ------------------------
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> ------------------------------------------------------------------------------
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel



-- 

Saludos,
Felipe Sateler

------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 16:50
FromSigurd Saue
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
Yes. 

Sigurd

-----Opprinnelig melding-----
Fra: Felipe Sateler [mailto:fsateler@gmail.com] 
Sendt: 25. august 2015 17:09
Til: Developer discussions 
Emne: Re: [Cs-dev] plugin opcode include changes or a bug?

Did you build against git but run against 6.05?

On 25 August 2015 at 12:07, Victor Lazzarini  wrote:
> My reply might be predictable, but I compiled and run your code here and it does not crash.
> ========================
> Dr Victor Lazzarini
> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, 
> Maynooth, Co Kildare, Ireland
> Tel: 00 353 7086936
> Fax: 00 353 1 7086952
>
>> On 25 Aug 2015, at 15:56, Sigurd Saue  wrote:
>>
>> I've attached the source code of my plugin, if that is what you asked for. It is a variation over ftconv with an optional k-rate parameter for clearing buffers without reinit. The opcode name is "ftconvmod" for now.
>>
>> Sigurd
>>
>> -----Opprinnelig melding-----
>> Fra: Victor Lazzarini [mailto:Victor.Lazzarini@nuim.ie]
>> Sendt: 25. august 2015 16:46
>> Til: Developer discussions 
>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>>
>> Can you post your plugin too?
>> ========================
>> Dr Victor Lazzarini
>> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, 
>> Maynooth, Co Kildare, Ireland
>> Tel: 00 353 7086936
>> Fax: 00 353 1 7086952
>>
>>> On 25 Aug 2015, at 14:23, Sigurd Saue  wrote:
>>>
>>> I've attached a very simple csd-file that triggers the crash with my "externalized" ftconv plugin.
>>> I will try to do some more tests over here and be more specific.
>>>
>>> Sigurd
>>>
>>>
>>>
>>> -----Opprinnelig melding-----
>>> Fra: jpff [mailto:jpff@codemist.co.uk]
>>> Sendt: 25. august 2015 15:17
>>> Til: Developer discussions 
>>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>>>
>>> Another question; are you using a large number of args to a ftable?
>>> The only changes i can see at present are to that and gen23
>>>
>>> All you say points to ftables which is why I ask these questions 
>>> ==John ff
>>>
>>>
>>> --------------------------------------------------------------------
>>> --
>>> -------- _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> ----------------------------------------------------
>>> --
>>> ------------------------
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ---------------------------------------------------------------------
>> --------- _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> -------------------------------------------------------
>> ----------------------- 
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ----------------------------------------------------------------------
> -------- _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel



-- 

Saludos,
Felipe Sateler

------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 16:53
FromVictor Lazzarini
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
What OS is this?
========================
Dr Victor Lazzarini
Dean of Arts, Celtic Studies and Philosophy,
Maynooth University,
Maynooth, Co Kildare, Ireland
Tel: 00 353 7086936
Fax: 00 353 1 7086952 

> On 25 Aug 2015, at 16:50, Sigurd Saue  wrote:
> 
> Yes. 
> 
> Sigurd
> 
> -----Opprinnelig melding-----
> Fra: Felipe Sateler [mailto:fsateler@gmail.com] 
> Sendt: 25. august 2015 17:09
> Til: Developer discussions 
> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
> 
> Did you build against git but run against 6.05?
> 
> On 25 August 2015 at 12:07, Victor Lazzarini  wrote:
>> My reply might be predictable, but I compiled and run your code here and it does not crash.
>> ========================
>> Dr Victor Lazzarini
>> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, 
>> Maynooth, Co Kildare, Ireland
>> Tel: 00 353 7086936
>> Fax: 00 353 1 7086952
>> 
>>> On 25 Aug 2015, at 15:56, Sigurd Saue  wrote:
>>> 
>>> I've attached the source code of my plugin, if that is what you asked for. It is a variation over ftconv with an optional k-rate parameter for clearing buffers without reinit. The opcode name is "ftconvmod" for now.
>>> 
>>> Sigurd
>>> 
>>> -----Opprinnelig melding-----
>>> Fra: Victor Lazzarini [mailto:Victor.Lazzarini@nuim.ie]
>>> Sendt: 25. august 2015 16:46
>>> Til: Developer discussions 
>>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>>> 
>>> Can you post your plugin too?
>>> ========================
>>> Dr Victor Lazzarini
>>> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, 
>>> Maynooth, Co Kildare, Ireland
>>> Tel: 00 353 7086936
>>> Fax: 00 353 1 7086952
>>> 
>>>> On 25 Aug 2015, at 14:23, Sigurd Saue  wrote:
>>>> 
>>>> I've attached a very simple csd-file that triggers the crash with my "externalized" ftconv plugin.
>>>> I will try to do some more tests over here and be more specific.
>>>> 
>>>> Sigurd
>>>> 
>>>> 
>>>> 
>>>> -----Opprinnelig melding-----
>>>> Fra: jpff [mailto:jpff@codemist.co.uk]
>>>> Sendt: 25. august 2015 15:17
>>>> Til: Developer discussions 
>>>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>>>> 
>>>> Another question; are you using a large number of args to a ftable?
>>>> The only changes i can see at present are to that and gen23
>>>> 
>>>> All you say points to ftables which is why I ask these questions 
>>>> ==John ff
>>>> 
>>>> 
>>>> --------------------------------------------------------------------
>>>> --
>>>> -------- _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> ----------------------------------------------------
>>>> --
>>>> ------------------------
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> ---------------------------------------------------------------------
>>> --------- _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> -------------------------------------------------------
>>> ----------------------- 
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ----------------------------------------------------------------------
>> -------- _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> 
> 
> -- 
> 
> Saludos,
> Felipe Sateler
> 
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 16:58
FromSigurd Saue
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
This is  Windows. I use Visual Studio 2013 to build. Building and running on 6.0.5 is fine, while building againt latest Git and running on 6.0.5 fails. Maybe that is to be expected ...

Sigurd

-----Opprinnelig melding-----
Fra: Victor Lazzarini [mailto:Victor.Lazzarini@nuim.ie] 
Sendt: 25. august 2015 17:53
Til: Developer discussions 
Emne: Re: [Cs-dev] plugin opcode include changes or a bug?

What OS is this?
========================
Dr Victor Lazzarini
Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland
Tel: 00 353 7086936
Fax: 00 353 1 7086952 

> On 25 Aug 2015, at 16:50, Sigurd Saue  wrote:
> 
> Yes. 
> 
> Sigurd
> 
> -----Opprinnelig melding-----
> Fra: Felipe Sateler [mailto:fsateler@gmail.com]
> Sendt: 25. august 2015 17:09
> Til: Developer discussions 
> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
> 
> Did you build against git but run against 6.05?
> 
> On 25 August 2015 at 12:07, Victor Lazzarini  wrote:
>> My reply might be predictable, but I compiled and run your code here and it does not crash.
>> ========================
>> Dr Victor Lazzarini
>> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, 
>> Maynooth, Co Kildare, Ireland
>> Tel: 00 353 7086936
>> Fax: 00 353 1 7086952
>> 
>>> On 25 Aug 2015, at 15:56, Sigurd Saue  wrote:
>>> 
>>> I've attached the source code of my plugin, if that is what you asked for. It is a variation over ftconv with an optional k-rate parameter for clearing buffers without reinit. The opcode name is "ftconvmod" for now.
>>> 
>>> Sigurd
>>> 
>>> -----Opprinnelig melding-----
>>> Fra: Victor Lazzarini [mailto:Victor.Lazzarini@nuim.ie]
>>> Sendt: 25. august 2015 16:46
>>> Til: Developer discussions 
>>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>>> 
>>> Can you post your plugin too?
>>> ========================
>>> Dr Victor Lazzarini
>>> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, 
>>> Maynooth, Co Kildare, Ireland
>>> Tel: 00 353 7086936
>>> Fax: 00 353 1 7086952
>>> 
>>>> On 25 Aug 2015, at 14:23, Sigurd Saue  wrote:
>>>> 
>>>> I've attached a very simple csd-file that triggers the crash with my "externalized" ftconv plugin.
>>>> I will try to do some more tests over here and be more specific.
>>>> 
>>>> Sigurd
>>>> 
>>>> 
>>>> 
>>>> -----Opprinnelig melding-----
>>>> Fra: jpff [mailto:jpff@codemist.co.uk]
>>>> Sendt: 25. august 2015 15:17
>>>> Til: Developer discussions 
>>>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>>>> 
>>>> Another question; are you using a large number of args to a ftable?
>>>> The only changes i can see at present are to that and gen23
>>>> 
>>>> All you say points to ftables which is why I ask these questions 
>>>> ==John ff
>>>> 
>>>> 
>>>> -------------------------------------------------------------------
>>>> -
>>>> --
>>>> -------- _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> ---------------------------------------------------
>>>> -
>>>> --
>>>> ------------------------
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> --------------------------------------------------------------------
>>> -
>>> --------- _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> ------------------------------------------------------
>>> -
>>> -----------------------
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ---------------------------------------------------------------------
>> -
>> -------- _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> 
> 
> --
> 
> Saludos,
> Felipe Sateler
> 
> ----------------------------------------------------------------------
> -------- _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ----------------------------------------------------------------------
> -------- _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-devel

------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2015-08-25 17:06
FromVictor Lazzarini
SubjectRe: [Cs-dev] plugin opcode include changes or a bug?
It shouldn’t but it might be the case that you need to run under the latest git too. Also Windows is a mysterious system sometimes.
========================
Dr Victor Lazzarini
Dean of Arts, Celtic Studies and Philosophy,
Maynooth University,
Maynooth, Co Kildare, Ireland
Tel: 00 353 7086936
Fax: 00 353 1 7086952 

> On 25 Aug 2015, at 16:58, Sigurd Saue  wrote:
> 
> This is  Windows. I use Visual Studio 2013 to build. Building and running on 6.0.5 is fine, while building againt latest Git and running on 6.0.5 fails. Maybe that is to be expected ...
> 
> Sigurd
> 
> -----Opprinnelig melding-----
> Fra: Victor Lazzarini [mailto:Victor.Lazzarini@nuim.ie] 
> Sendt: 25. august 2015 17:53
> Til: Developer discussions 
> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
> 
> What OS is this?
> ========================
> Dr Victor Lazzarini
> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland
> Tel: 00 353 7086936
> Fax: 00 353 1 7086952 
> 
>> On 25 Aug 2015, at 16:50, Sigurd Saue  wrote:
>> 
>> Yes. 
>> 
>> Sigurd
>> 
>> -----Opprinnelig melding-----
>> Fra: Felipe Sateler [mailto:fsateler@gmail.com]
>> Sendt: 25. august 2015 17:09
>> Til: Developer discussions 
>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>> 
>> Did you build against git but run against 6.05?
>> 
>> On 25 August 2015 at 12:07, Victor Lazzarini  wrote:
>>> My reply might be predictable, but I compiled and run your code here and it does not crash.
>>> ========================
>>> Dr Victor Lazzarini
>>> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, 
>>> Maynooth, Co Kildare, Ireland
>>> Tel: 00 353 7086936
>>> Fax: 00 353 1 7086952
>>> 
>>>> On 25 Aug 2015, at 15:56, Sigurd Saue  wrote:
>>>> 
>>>> I've attached the source code of my plugin, if that is what you asked for. It is a variation over ftconv with an optional k-rate parameter for clearing buffers without reinit. The opcode name is "ftconvmod" for now.
>>>> 
>>>> Sigurd
>>>> 
>>>> -----Opprinnelig melding-----
>>>> Fra: Victor Lazzarini [mailto:Victor.Lazzarini@nuim.ie]
>>>> Sendt: 25. august 2015 16:46
>>>> Til: Developer discussions 
>>>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>>>> 
>>>> Can you post your plugin too?
>>>> ========================
>>>> Dr Victor Lazzarini
>>>> Dean of Arts, Celtic Studies and Philosophy, Maynooth University, 
>>>> Maynooth, Co Kildare, Ireland
>>>> Tel: 00 353 7086936
>>>> Fax: 00 353 1 7086952
>>>> 
>>>>> On 25 Aug 2015, at 14:23, Sigurd Saue  wrote:
>>>>> 
>>>>> I've attached a very simple csd-file that triggers the crash with my "externalized" ftconv plugin.
>>>>> I will try to do some more tests over here and be more specific.
>>>>> 
>>>>> Sigurd
>>>>> 
>>>>> 
>>>>> 
>>>>> -----Opprinnelig melding-----
>>>>> Fra: jpff [mailto:jpff@codemist.co.uk]
>>>>> Sendt: 25. august 2015 15:17
>>>>> Til: Developer discussions 
>>>>> Emne: Re: [Cs-dev] plugin opcode include changes or a bug?
>>>>> 
>>>>> Another question; are you using a large number of args to a ftable?
>>>>> The only changes i can see at present are to that and gen23
>>>>> 
>>>>> All you say points to ftables which is why I ask these questions 
>>>>> ==John ff
>>>>> 
>>>>> 
>>>>> -------------------------------------------------------------------
>>>>> -
>>>>> --
>>>>> -------- _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> ---------------------------------------------------
>>>>> -
>>>>> --
>>>>> ------------------------
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> 
>>>> 
>>>> --------------------------------------------------------------------
>>>> -
>>>> --------- _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>> ------------------------------------------------------
>>>> -
>>>> -----------------------
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> ---------------------------------------------------------------------
>>> -
>>> -------- _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> 
>> --
>> 
>> Saludos,
>> Felipe Sateler
>> 
>> ----------------------------------------------------------------------
>> -------- _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> ----------------------------------------------------------------------
>> -------- _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> 
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 
> ------------------------------------------------------------------------------
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csoun