|
I'm happy to report that the next Windows installer, Csound 5.15,
which I will upload to SourceForge in the next day or so, will have a new build of PortAudio with support for WDM-KS drivers (Windows driver model kernel streaming drivers). These drivers do have low latency, and most most audio hardware on even moderately new versions of Windows works with these drivers. Regards, Mike -- Michael Gogins Irreducible Productions http://www.michael-gogins.com Michael dot Gogins at gmail dot com Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email [hidden email] with body "unsubscribe csound" |
|
Great! Did you try to build with WASAPI?
On 5 Feb 2012, at 00:27, Michael Gogins wrote: > I'm happy to report that the next Windows installer, Csound 5.15, > which I will upload to SourceForge in the next day or so, will have a > new build of PortAudio with support for WDM-KS drivers (Windows driver > model kernel streaming drivers). These drivers do have low latency, > and most most audio hardware on even moderately new versions of > Windows works with these drivers. > > Regards, > Mike > > -- > Michael Gogins > Irreducible Productions > http://www.michael-gogins.com > Michael dot Gogins at gmail dot com > > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email [hidden email] with body "unsubscribe csound" > Dr Victor Lazzarini Senior Lecturer Dept. of Music NUI Maynooth Ireland tel.: +353 1 708 3545 Victor dot Lazzarini AT nuim dot ie Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email [hidden email] with body "unsubscribe csound" |
|
It always was, and still is, built with WASAPI. The current built has
drivers for MME, DirectSound (or DirectX), ASIO, WASAPI, and WDMKS. These are all built with same MinGW compiler I use for Csound. The problem is stupid and I should have caught it before. There is a definition of the type of WAVEFORMATEXTENSIBLE in the PortAudio source code, presumably because it was not defined in earlier MinGW compilers. That definition now conflicts with the one that is now defined in the current MinGW compiler. So, I simply removed the PortAudio definition of this type. I'm also going to include the pa_devs utility in the WIndows installer. This prints more complete information about devices that PortAudio can use than Csound does Regards, Mike. On Sun, Feb 5, 2012 at 6:56 AM, Victor Lazzarini <[hidden email]> wrote: > Great! Did you try to build with WASAPI? > On 5 Feb 2012, at 00:27, Michael Gogins wrote: > >> I'm happy to report that the next Windows installer, Csound 5.15, >> which I will upload to SourceForge in the next day or so, will have a >> new build of PortAudio with support for WDM-KS drivers (Windows driver >> model kernel streaming drivers). These drivers do have low latency, >> and most most audio hardware on even moderately new versions of >> Windows works with these drivers. >> >> Regards, >> Mike >> >> -- >> Michael Gogins >> Irreducible Productions >> http://www.michael-gogins.com >> Michael dot Gogins at gmail dot com >> >> >> Send bugs reports to the Sourceforge bug tracker >> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >> Discussions of bugs and features can be posted here >> To unsubscribe, send email [hidden email] with body "unsubscribe csound" >> > > Dr Victor Lazzarini > Senior Lecturer > Dept. of Music > NUI Maynooth Ireland > tel.: +353 1 708 3545 > Victor dot Lazzarini AT nuim dot ie > > > > > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email [hidden email] with body "unsubscribe csound" > -- Michael Gogins Irreducible Productions http://www.michael-gogins.com Michael dot Gogins at gmail dot com Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email [hidden email] with body "unsubscribe csound" |
|
Great. Thanks Mike.
On Sunday, 5 February 2012, Michael Gogins <[hidden email]> wrote: > It always was, and still is, built with WASAPI. The current built has > drivers for MME, DirectSound (or DirectX), ASIO, WASAPI, and WDMKS. > These are all built with same MinGW compiler I use for Csound. > > The problem is stupid and I should have caught it before. There is a > definition of the type of WAVEFORMATEXTENSIBLE in the PortAudio source > code, presumably because it was not defined in earlier MinGW > compilers. That definition now conflicts with the one that is now > defined in the current MinGW compiler. So, I simply removed the > PortAudio definition of this type. > > I'm also going to include the pa_devs utility in the WIndows > installer. This prints more complete information about devices that > PortAudio can use than Csound does > > Regards, > Mike. > > On Sun, Feb 5, 2012 at 6:56 AM, Victor Lazzarini > <[hidden email]> wrote: >> Great! Did you try to build with WASAPI? >> On 5 Feb 2012, at 00:27, Michael Gogins wrote: >> >>> I'm happy to report that the next Windows installer, Csound 5.15, >>> which I will upload to SourceForge in the next day or so, will have a >>> new build of PortAudio with support for WDM-KS drivers (Windows driver >>> model kernel streaming drivers). These drivers do have low latency, >>> and most most audio hardware on even moderately new versions of >>> Windows works with these drivers. >>> >>> Regards, >>> Mike >>> >>> -- >>> Michael Gogins >>> Irreducible Productions >>> http://www.michael-gogins.com >>> Michael dot Gogins at gmail dot com >>> >>> >>> Send bugs reports to the Sourceforge bug tracker >>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>> Discussions of bugs and features can be posted here >>> To unsubscribe, send email [hidden email] with body "unsubscribe csound" >>> >> >> Dr Victor Lazzarini >> Senior Lecturer >> Dept. of Music >> NUI Maynooth Ireland >> tel.: +353 1 708 3545 >> Victor dot Lazzarini AT nuim dot ie >> >> >> >> >> >> Send bugs reports to the Sourceforge bug tracker >> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >> Discussions of bugs and features can be posted here >> To unsubscribe, send email [hidden email] with body "unsubscribe csound" >> > > > > -- > Michael Gogins > Irreducible Productions > http://www.michael-gogins.com > Michael dot Gogins at gmail dot com > > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email [hidden email] with body "unsubscribe csound" > > |
|
Thanks Mike! Which version of MinGW did you build WDM-KS support with?
And what's the conflicting definition? On 2/5/12, Rory Walsh <[hidden email]> wrote: > Great. Thanks Mike. > > On Sunday, 5 February 2012, Michael Gogins <[hidden email]> wrote: >> It always was, and still is, built with WASAPI. The current built has >> drivers for MME, DirectSound (or DirectX), ASIO, WASAPI, and WDMKS. >> These are all built with same MinGW compiler I use for Csound. >> >> The problem is stupid and I should have caught it before. There is a >> definition of the type of WAVEFORMATEXTENSIBLE in the PortAudio source >> code, presumably because it was not defined in earlier MinGW >> compilers. That definition now conflicts with the one that is now >> defined in the current MinGW compiler. So, I simply removed the >> PortAudio definition of this type. >> >> I'm also going to include the pa_devs utility in the WIndows >> installer. This prints more complete information about devices that >> PortAudio can use than Csound does >> >> Regards, >> Mike. >> >> On Sun, Feb 5, 2012 at 6:56 AM, Victor Lazzarini >> <[hidden email]> wrote: >>> Great! Did you try to build with WASAPI? >>> On 5 Feb 2012, at 00:27, Michael Gogins wrote: >>> >>>> I'm happy to report that the next Windows installer, Csound 5.15, >>>> which I will upload to SourceForge in the next day or so, will have a >>>> new build of PortAudio with support for WDM-KS drivers (Windows driver >>>> model kernel streaming drivers). These drivers do have low latency, >>>> and most most audio hardware on even moderately new versions of >>>> Windows works with these drivers. >>>> >>>> Regards, >>>> Mike >>>> >>>> -- >>>> Michael Gogins >>>> Irreducible Productions >>>> http://www.michael-gogins.com >>>> Michael dot Gogins at gmail dot com >>>> >>>> >>>> Send bugs reports to the Sourceforge bug tracker >>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>>> Discussions of bugs and features can be posted here >>>> To unsubscribe, send email [hidden email] with body > "unsubscribe csound" >>>> >>> >>> Dr Victor Lazzarini >>> Senior Lecturer >>> Dept. of Music >>> NUI Maynooth Ireland >>> tel.: +353 1 708 3545 >>> Victor dot Lazzarini AT nuim dot ie >>> >>> >>> >>> >>> >>> Send bugs reports to the Sourceforge bug tracker >>> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >>> Discussions of bugs and features can be posted here >>> To unsubscribe, send email [hidden email] with body "unsubscribe > csound" >>> >> >> >> >> -- >> Michael Gogins >> Irreducible Productions >> http://www.michael-gogins.com >> Michael dot Gogins at gmail dot com >> >> >> Send bugs reports to the Sourceforge bug tracker >> https://sourceforge.net/tracker/?group_id=81968&atid=564599 >> Discussions of bugs and features can be posted here >> To unsubscribe, send email [hidden email] with body "unsubscribe > csound" >> >> > > Send bugs reports to the Sourceforge bug tracker > https://sourceforge.net/tracker/?group_id=81968&atid=564599 > Discussions of bugs and features can be posted here > To unsubscribe, send email [hidden email] with body "unsubscribe > csound" > > Send bugs reports to the Sourceforge bug tracker https://sourceforge.net/tracker/?group_id=81968&atid=564599 Discussions of bugs and features can be posted here To unsubscribe, send email [hidden email] with body "unsubscribe csound" |
| Powered by Nabble | See how NAML generates this page |
