<?xml version="1.0" encoding="utf-8"?>
			<feed xmlns="http://www.w3.org/2005/Atom">
				<title type="text">Breakfast Quay -  All Discussions Feed</title>
				<updated>2010-09-10T07:47:57+00:00</updated>
				<id>http://www.breakfastquay.com/forum/</id>
				<link rel="alternate" type="text/html" hreflang="en"
					href="http://www.breakfastquay.com/forum/search.php?PostBackAction=Search&amp;Type=Topics&amp;Page=1&amp;FeedTitle=All+Discussions+Feed"/>
				<link rel="self" type="application/atom+xml"
					href="http://www.breakfastquay.com/forum/search.php?PostBackAction=Search&amp;Type=Topics&amp;Page=1&amp;Feed=ATOM&amp;FeedTitle=All+Discussions+Feed"/>
				<generator
					uri="http://getvanilla.com/"
					version="1.1.9">
					Lussumo Vanilla &amp; Feed Publisher
				</generator>
				<entry>
			<title>Looking for Linux version of Rubber Band Library</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=21&amp;page=looking-for-linux-version-of-rubber-band-library" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=21&amp;page=looking-for-linux-version-of-rubber-band-library</id>
			<published>2010-07-20T05:32:48+00:00</published>
			<updated>2010-07-20T09:01:44+00:00</updated>
			<author>
				<name>Rajul</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=27</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi All,I am looking for linux version of Rubber Band Library. I want to use it as command line utility.I have downloaded sourcecode from  &amp;quot;http://www.breakfastquay.com/rubberband/&amp;quot;, ...
			</summary>
			<content type="html">
				<![CDATA[Hi All,<br /><br />I am looking for linux version of Rubber Band Library. I want to use it as command line utility.<br /><br />I have downloaded sourcecode from  &quot;http://www.breakfastquay.com/rubberband/&quot;, how ever make is not successful. It gives package missing error.<br /><br />Please help<br /><br />Best Regards,<br />Rajul]]>
			</content>
		</entry>
		<entry>
			<title>Small fix to DSSIVSTPluginInstance</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=20&amp;page=small-fix-to-dssivstplugininstance" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=20&amp;page=small-fix-to-dssivstplugininstance</id>
			<published>2010-07-05T11:01:33+00:00</published>
			<updated>2010-07-09T11:53:01+00:00</updated>
			<author>
				<name>kunitoki</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=13</uri>
			</author>
			<summary type="text" xml:lang="en">
				In case when instantiating the RemoteVSTClient, the server process crashes, on plugin release we free m_alsaDecoder, which may not be already allocated.

By adding m_alsaDecoder(0) in the ...
			</summary>
			<content type="html">
				<![CDATA[<p>In case when instantiating the RemoteVSTClient, the server process crashes, on plugin release we free m_alsaDecoder, which may not be already allocated.</p>

<p>By adding m_alsaDecoder(0) in the initialization list of the DSSIVSTPluginInstance constructor:</p>

<pre><code>DSSIVSTPluginInstance::DSSIVSTPluginInstance(std::string dllName,
                     unsigned long sampleRate) :
    m_sampleRate(sampleRate),
    m_lastSampleCount(0),
    m_controlPorts(0),
    m_controlPortsSaved(0),
    m_controlPortCount(0),
    m_audioIns(0),
    m_audioInCount(0),
    m_audioOuts(0),
    m_audioOutCount(0),
    m_programs(0),
    m_programCount(0),
    m_alsaDecoder(0),                      // &lt;&lt;&lt;&lt;&lt;&lt;&lt; add this here
    m_pendingProgram(false),
    m_plugin(0),
    m_ok(false)
{
   // ...
</code></pre>

<p>We fix a potential crash in the destructor:</p>

<pre><code>DSSIVSTPluginInstance::~DSSIVSTPluginInstance()
{
    std::cerr &lt;&lt; "DSSIVSTPluginInstance::~DSSIVSTPluginInstance" &lt;&lt; std::endl;

    // ...

    if (m_alsaDecoder) {
    snd_midi_event_free(m_alsaDecoder);     // &lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt; to fix a crash here
    }
</code></pre>

<p>Here it is the backtrace:</p>

<pre><code>DSSIVSTPlugin::instantiate(Triangle*II.dll)
DSSIVSTPluginInstance::DSSIVSTPluginInstance(Triangle*II.dll)
Returning file identifiers: ebeZD7uXWT6hWfZOzslg6J2C
DSSI_PATH not set, defaulting to /home/XXX/.dssi:/usr/local/lib/dssi:/usr/lib/dssi
RemoteVSTClient: executing /usr/lib/dssi/dssi-vst/dssi-vst-server Triangle*II.dll,ebeZD7uXWT6hWfZOzslg6J2C
DSSIVSTPluginInstance::DSSIVSTPluginInstance(Triangle*II.dll): startup failed: Plugin server timed out on startup
DSSIVSTPluginInstance::DSSIVSTPluginInstance(Triangle*II.dll) construction complete
...
DSSIVSTPlugin::cleanup
DSSIVSTPluginInstance::~DSSIVSTPluginInstance
*** glibc detected *** ./Debug/XXX: free(): invalid pointer: 0x0a3af3a4 ***
======= Backtrace: =========
/lib/libc.so.6[0x437d0954]
/lib/libc.so.6[0x437d21f3]
/lib/libc.so.6(cfree+0x6d)[0x437d51ed]
/usr/lib/libasound.so.2(snd_midi_event_free+0x2c)[0x41643875]
/usr/lib/dssi/dssi-vst.so(_ZN13DSSIVSTPlugin7cleanupEPv+0x57)[0xa6cb3d9f]
</code></pre>
]]>
			</content>
		</entry>
		<entry>
			<title>Remote VST startup failed: Failed to open FIFO</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=17&amp;page=remote-vst-startup-failed-failed-to-open-fifo" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=17&amp;page=remote-vst-startup-failed-failed-to-open-fifo</id>
			<published>2010-05-10T09:52:55+00:00</published>
			<updated>2010-07-05T10:56:07+00:00</updated>
			<author>
				<name>kunitoki</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=13</uri>
			</author>
			<summary type="text" xml:lang="en">
				I'm getting this error everytime i try to start a vst, no matter which.
i'm using the 0.8 version on a realtime patched gentoo system with wine-1.1.24 . Also trying to run it as root, no sensible ...
			</summary>
			<content type="html">
				<![CDATA[<p>I'm getting this error everytime i try to start a vst, no matter which.
i'm using the 0.8 version on a realtime patched gentoo system with wine-1.1.24 . Also trying to run it as root, no sensible changes (same output here).</p>

<pre><code>Returning file identifiers: ew0Tau3HaSZkG5AQObGCePD2
DSSI_PATH not set, defaulting to /home/kraken/.dssi:/usr/local/lib/dssi:/usr/lib/dssi
RemoteVSTClient: executing /usr/lib/dssi/dssi-vst/dssi-vst-server -g Synth1,ew0Tau3HaSZkG5AQObGCePD2
DSSI VST plugin server v0.986
Copyright (c) 2004-2008 Chris Cannam
Loading "Synth1"... 
dssi-vst-server[1]: found in /home/kraken/vst/Synth1
done
Testing VST compatibility... 
dssi-vst-server[1]: VST 2.4 entrypoint "VSTPluginMain" not found in DLL "Synth1", looking for "main"
dssi-vst-server[1]: VST entrypoint "main" found
dssi-vst-server[1]: plugin instantiated
dssi-vst-server[1]: plugin is a VST
dssi-vst-server[1]: plugin has a GUI
dssi-vst-server[1]: plugin supports processReplacing
ERROR: Remote VST startup failed: Failed to open FIFO
wine: Unhandled page fault on read access to 0x00000010 at address 0x7edc6011 (thread 0009), starting debugger...
Unhandled exception: page fault on read access to 0x00000010 in 32-bit code (0x7edc6011).
Register dump:
 CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
 EIP:7edc6011 ESP:0033fbfc EBP:00000001 EFLAGS:00010206(  R- --  I   - -P- )
 EAX:00000061 EBX:7edceff4 ECX:00000060 EDX:a76553b0
 ESI:00000010 EDI:7d0e6410
Stack dump:
0x0033fbfc:  0033fe04 0033fe04 004b3618 0033fe08
0x0033fc0c:  0033fe2c a7653400 00000000 00000000
0x0033fc1c:  00000000 00000000 00000000 00000000
0x0033fc2c:  00000000 00000000 7ed81ec0 a7663540
0x0033fc3c:  a7663540 00000000 0033fe30 0033fe0c
0x0033fc4c:  0033fe08 0033fe04 0033fe08 0033fdf0
Backtrace:
0x7edc6011 WinMain+0xb75 in dssi-vst-server: movl   0x0(%esi),%eax
Modules:
Module  Address         Debug info  Name (86 modules)
PE  10000000-101d9000   Deferred        synth1
ELF 41000000-41119000   Deferred        libx11.so.6
ELF 4111b000-41136000   Deferred        libxcb.so.1
ELF 41138000-41148000   Deferred        libxext.so.6
...
ELF 7b800000-7b94e000   Deferred        kernel32&lt;elf&gt;
  \-PE  7b820000-7b94e000   \               kernel32
ELF 7bc00000-7bcaf000   Deferred        ntdll&lt;elf&gt;
  \-PE  7bc10000-7bcaf000   \               ntdll
ELF 7bf00000-7bf04000   Deferred        &lt;wine-loader&gt;
ELF 7df8d000-7dfa6000   Deferred        spoolss&lt;elf&gt;
  \-PE  7df90000-7dfa6000   \               spoolss
ELF 7dfa6000-7dfc4000   Deferred        localspl&lt;elf&gt;
  \-PE  7dfb0000-7dfc4000   \               localspl
ELF 7e01b000-7e04e000   Deferred        uxtheme&lt;elf&gt;
  \-PE  7e020000-7e04e000   \               uxtheme
ELF 7e04e000-7e138000   Deferred        oleaut32&lt;elf&gt;
  \-PE  7e070000-7e138000   \               oleaut32
ELF 7e138000-7e18d000   Deferred        gdiplus&lt;elf&gt;
  \-PE  7e150000-7e18d000   \               gdiplus
...
ELF 7e848000-7e8e2000   Deferred        winex11&lt;elf&gt;
\-PE    7e860000-7e8e2000   \               winex11
ELF 7ea63000-7eab8000   Deferred        advapi32&lt;elf&gt;
  \-PE  7ea70000-7eab8000   \               advapi32
ELF 7eab8000-7eb58000   Deferred        gdi32&lt;elf&gt;
  \-PE  7ead0000-7eb58000   \               gdi32
ELF 7eb58000-7ec9f000   Deferred        user32&lt;elf&gt;
  \-PE  7eb70000-7ec9f000   \               user32
ELF 7edac000-7edd9000   Export          dssi-vst-server&lt;elf&gt;
\-PE    7edb0000-7edd9000   \               dssi-vst-server
...
Threads:
process  tid      prio (all id:s are in hex)
    00000008 (D) Z:\usr\lib\dssi\dssi-vst\dssi-vst-server.exe
    00000009    0 &lt;==
0000000e 
    00000016    0
    00000015    0
    00000014    0
    00000010    0
    0000000f    0
00000011 
    00000018    0
    00000017    0
    00000013    0
    00000012    0
0000001b 
    0000001c    0
Backtrace:
Plugin server timed out on startup: No such device or address
vsthost: bailing out
</code></pre>

<p>Anyone ?</p>
]]>
			</content>
		</entry>
		<entry>
			<title>dssi-vst package for deb: which wine version?</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=19&amp;page=dssivst-package-for-deb-which-wine-version" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=19&amp;page=dssivst-package-for-deb-which-wine-version</id>
			<published>2010-06-28T20:10:47+00:00</published>
			<updated>2010-06-28T20:10:48+00:00</updated>
			<author>
				<name>Crypto1971</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=17</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi,at last it is there (well, actually, it has been there for quite a while now): a package to install dssi-vst via apt-get.Current version available online is 0.8-2+b1.I have had some trouble with ...
			</summary>
			<content type="html">
				<![CDATA[Hi,<br /><br />at last it is there (well, actually, it has been there for quite a while now): a package to install dssi-vst via apt-get.<br /><br />Current version available online is 0.8-2+b1.<br /><br />I have had some trouble with running a certain online registration tool for my B4II organ. To do this online registration correctly, I need the very latest vesion of wine to be installed, which on the wine-hq pages is wine_1.1.42~winehq1-1_i386.deb. The trouble with the registration tool is that it needs some VB runtime libs to be installed of which I neither know which version nor where to get it. So I have installed that latest wine version and - you name it - the registration tool works and I can do the online registration successfully.<br /><br />Unfortunately, when installing dssi-vst to run my B4II organ plugin I have to uninstall the wine-hq package and instead install the apt-get package in debian repositories. I cannot keep the latest wine version. I also cannot install experimental version or wine-unstable version.<br /><br />dssi-vst appears to be hooked to a particular version of wine and I have no idea how to circumvent that.<br /><br />Maybe it could be an idea for the maintainers of the package not to tie dssi-vst to a particular wine variant?<br /><br />Kind Regards,<br />Crypto.]]>
			</content>
		</entry>
		<entry>
			<title>Compiling fat binaries on OSX</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=18&amp;page=compiling-fat-binaries-on-osx" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=18&amp;page=compiling-fat-binaries-on-osx</id>
			<published>2010-05-20T13:14:07+00:00</published>
			<updated>2010-05-20T17:19:27+00:00</updated>
			<author>
				<name>0x80</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=23</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi, I'm trying to build the library for more than one architecture. It seems that the current makefile is not compatible, but I'm not sure what to change about it. I think the problem is with the ar ...
			</summary>
			<content type="html">
				<![CDATA[Hi, I'm trying to build the library for more than one architecture. It seems that the current makefile is not compatible, but I'm not sure what to change about it. <br /><br />I think the problem is with the ar program, since on OSX you should be using lipo or libtool instead I think. This seems to be the offending bit:<br /><br />$(STATIC_TARGET):	$(LIBRARY_OBJECTS)<br />	$(AR) rsc $@ $^<br /><br /><br />Below is the error I get.<br /> <br /><br />ar rsc lib/librubberband.a src/rubberband-c.o src/RubberBandStretcher.o src/StretcherProcess.o src/StretchCalculator.o src/base/Profiler.o src/dsp/AudioCurveCalculator.o src/dsp/CompoundAudioCurve.o src/dsp/SpectralDifferenceAudioCurve.o src/dsp/HighFrequencyAudioCurve.o src/dsp/SilentAudioCurve.o src/dsp/ConstantAudioCurve.o src/dsp/PercussiveAudioCurve.o src/dsp/Resampler.o src/dsp/FFT.o src/system/Allocators.o src/system/sysutils.o src/system/Thread.o src/StretcherChannelData.o src/StretcherImpl.o<br />ar: lib/librubberband.a is a fat file (use libtool(1) or lipo(1) and ar(1) on it)<br />ar: lib/librubberband.a: Inappropriate file type or format<br />make: *** [lib/librubberband.a] Error 1]]>
			</content>
		</entry>
		<entry>
			<title>Compiling on OS X 10.6.2 -- need pkg-config</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=16&amp;page=compiling-on-os-x-1062-need-pkgconfig" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=16&amp;page=compiling-on-os-x-1062-need-pkgconfig</id>
			<published>2010-05-04T04:13:14+00:00</published>
			<updated>2010-05-15T22:51:36+00:00</updated>
			<author>
				<name>soundcyst</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=22</uri>
			</author>
			<summary type="text" xml:lang="en">
				Heads up to Mac users, autoconf started bitching at me about pkg-config not being up to date or in the right place.  Not too big of a deal.. just download from ...
			</summary>
			<content type="html">
				<![CDATA[Heads up to Mac users, autoconf started bitching at me about pkg-config not being up to date or in the right place.  Not too big of a deal.. just download from http://pkg-config.freedesktop.org/wiki/, then ./configure &amp;&amp; make &amp;&amp; make install the pkg-config stuff and you should be good to go, it's just another dependency that's not listed in the readme.<br /><br /><br />best,<br />soundcyst]]>
			</content>
		</entry>
		<entry>
			<title>Stretch ratio and RubberBand abilities</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=15&amp;page=stretch-ratio-and-rubberband-abilities" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=15&amp;page=stretch-ratio-and-rubberband-abilities</id>
			<published>2010-01-30T00:53:15+00:00</published>
			<updated>2010-02-07T20:34:35+00:00</updated>
			<author>
				<name>Sancho</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=20</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi BreakfastQuay team,I started a new project using your amAZing library but I experience some difficult to clearly understand few things.I usually get a &amp;quot;*** WARNING: increment -21 ...
			</summary>
			<content type="html">
				<![CDATA[Hi BreakfastQuay team,<br /><br />I started a new project using your amAZing library but I experience some difficult to clearly understand few things.<br /><br />I usually get a &quot;*** WARNING: increment -21 &lt;= 0, rounding to zero&quot;, what does it mean ?<br />Example given at 44100 sample rate with a stretch ratio 0,38 and working offline (with all other default options).<br /><br />My second question is, with a ratio strictly equal to 1.0 (double value, like in your API) when I 'study' next 'process' a buffer of 22050 samples, I get an output response length around 22160.<br />Is it 'normal' ? (I suppose yes because timestretching is not an exact 'science' ;)<br />But, does this error range approximation grows with stretch ratio ?<br />Sometime I received lot of &quot;Buffer overrun on output&quot; I can't handle, and 'vice et versa' lot of missing precious frames comparing to my output length forecasts (buffer underrun for me).<br /><br />Thank's a lot for your great great job with this (vital to me) lib :)<br /><br />Regards,<br /><br />Christophe]]>
			</content>
		</entry>
		<entry>
			<title>VSTHost launches Jack with bad parameters</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=14&amp;page=vsthost-launches-jack-with-bad-parameters" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=14&amp;page=vsthost-launches-jack-with-bad-parameters</id>
			<published>2010-01-05T21:19:29+00:00</published>
			<updated>2010-01-06T20:48:47+00:00</updated>
			<author>
				<name>stanlea</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=18</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi thereAfter installation, dssi-vst works fine, but &amp;quot;vsthost any.dll&amp;quot; (for instance) launches jack with basic parameters that are not those from -jackd, so I can't use it for ...
			</summary>
			<content type="html">
				<![CDATA[Hi there<br /><br />After installation, dssi-vst works fine, but &quot;vsthost any.dll&quot; (for instance) launches jack with basic parameters that are not those from -jackd, so I can't use it for playing. Where can I find configuration files for vsthost ?]]>
			</content>
		</entry>
		<entry>
			<title>Compilation woes on debian</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=13&amp;page=compilation-woes-on-debian" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=13&amp;page=compilation-woes-on-debian</id>
			<published>2009-12-29T21:00:31+00:00</published>
			<updated>2010-01-03T14:50:17+00:00</updated>
			<author>
				<name>Crypto1971</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=17</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi,I'm trying to compile dssi-vst 0.8 on my sidux (debian sid) notebook. It's a 32bit version of debian.After I enter the source file directory and enter &amp;quot;make&amp;quot; from command line I ...
			</summary>
			<content type="html">
				<![CDATA[Hi,<br />I'm trying to compile dssi-vst 0.8 on my sidux (debian sid) notebook. It's a 32bit version of debian.<br /><br />After I enter the source file directory and enter &quot;make&quot; from command line I keep getting:<br /><br />lutz@pucki:/home/data/pcsetup/dssi-vst-0.8$ make<br />wineg++ -m32 -Ivestige -Wall -fPIC remotepluginclient.cpp -c -o remotepluginclient.w32.o<br />remotepluginclient.cpp: In constructor ‘RemotePluginClient::RemotePluginClient()’:<br />remotepluginclient.cpp:41: error: ‘sprintf’ was not declared in this scope<br />remotepluginclient.cpp:50: error: ‘perror’ was not declared in this scope<br />remotepluginclient.cpp:64: error: ‘perror’ was not declared in this scope<br />remotepluginclient.cpp:78: error: ‘perror’ was not declared in this scope<br />winegcc: g++ failed<br />make: *** [remotepluginclient.w32.o] Fehler 2<br /><br />Note that I have installed wine-unstable because the &quot;Service Center&quot; application that I need to online register my B4II does not run with the standard version of wine. I have liblo0 installed and all dev packages mentioned in the README file of dssi-vst.<br /><br />I had to de-install standard wine and that is why the *.deb package of dssi-vst v. 0.7 was deinstalled as well, as it requires libwine and wine (without &quot;unstable&quot;) to be installed. Because I cannot use the *.deb package of dssi-vst that I already have I wanted to compile the latest version of dssi-vst myself, but without success, obviously. This dssi-vst deb package used to work well until I tried to register my B4II.<br /><br />I have read quite a bit about adding new &lt;include...&gt; lines to the source files, but I have not found what to do there exactly.<br /><br />Can you help me here?<br /><br />Thankyou in advance,<br />Crypto.]]>
			</content>
		</entry>
		<entry>
			<title>Problems compiling dssi-vst in ubuntustudio 9.10 (solved)</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=12&amp;page=problems-compiling-dssivst-in-ubuntustudio-910-solved" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=12&amp;page=problems-compiling-dssivst-in-ubuntustudio-910-solved</id>
			<published>2009-11-27T15:55:25+00:00</published>
			<updated>2009-11-27T15:55:25+00:00</updated>
			<author>
				<name>Pablo</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=15</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi!I succesfully compiled dsi-vst after a clean install of ubuntustudio 9.10.but I encountered some problems, luckily solved in the end. dssi plugins were installed during US installation. wine is ...
			</summary>
			<content type="html">
				<![CDATA[Hi!<br />I succesfully compiled dsi-vst after a clean install of ubuntustudio 9.10.<br />but I encountered some problems, luckily solved in the end. <br /><br />dssi plugins were installed during US installation. <br />wine is installed by default but I had to run winecfg (emulate Windows XP and choose alsa in the audio tab).<br /><br />I installed the following packages from US:<br /><br />build-essential<br />wine-dev<br />liblo0-dev<br />dssi-dev (this one installed libjack-dev and libjack0100.0-dev)<br />libasound2-dev<br /><br />I checked the paths of dssi and ladspa, then I edited the makefile and now DSSDIR and LADSPADIR are /usr/lib/dssi and /usr/lib/ladspa, respectively.<br />I also changed the BINDIR to /usr/bin/ but I think this is irrelevant and it is  more correct leaving it alone (usr/local/bin), as this is a local installation (I am not sure about this)<br /><br />Then, it didn't compile! It seems that some C++ functions (sprintf and one or two more) need 'cstdio'.<br />gcc version is 4.4.1 (Ubuntu 4.4.1-4ubuntu8) .<br /><br />To solve it, in these files:<br /><br />remotepluginclient.cpp <br />remotepluginserver.cpp<br />rdwrops.cpp<br />remotevstclient.cpp<br /><br />I needed to add:<br /><br />#include &lt;cstdio&gt;<br /><br />Thanks a lot for this great piece of software!]]>
			</content>
		</entry>
		<entry>
			<title>Error installing Rubberband from source (but solved it)</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=11&amp;page=error-installing-rubberband-from-source-but-solved-it" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=11&amp;page=error-installing-rubberband-from-source-but-solved-it</id>
			<published>2009-10-13T07:29:49+00:00</published>
			<updated>2009-10-13T07:29:49+00:00</updated>
			<author>
				<name>luctor</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=14</uri>
			</author>
			<summary type="text" xml:lang="en">
				I tried to install from source but the &amp;quot;make install&amp;quot; gave me an error about not finding &amp;quot;src/vamp/vamp-rubberband.cat&amp;quot; .After going into the src directory and ...
			</summary>
			<content type="html">
				<![CDATA[I tried to install from source but the &quot;make install&quot; gave me an error about not finding &quot;src/vamp/vamp-rubberband.cat&quot; .<br />After going into the src directory and doing  &quot;ln -s ../vamp ./&quot; and &quot;ln -s ../ladspa ./&quot; I got a successful install (so it seems)<br /><br />Now compiling sonic-visualiser]]>
			</content>
		</entry>
		<entry>
			<title>Rubber Band Library</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=4&amp;page=rubber-band-library" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=4&amp;page=rubber-band-library</id>
			<published>2009-03-13T22:11:50+00:00</published>
			<updated>2009-10-02T09:18:05+00:00</updated>
			<author>
				<name>bq</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=1</uri>
			</author>
			<summary type="text" xml:lang="en">
				This discussion forum is open to any questions, feedback, or debate about the Rubber Band Library. If you're working with the open source edition or considering any work with the commercial edition, ...
			</summary>
			<content type="html">
				<![CDATA[This discussion forum is open to any questions, feedback, or debate about the Rubber Band Library. If you're working with the open source edition or considering any work with the commercial edition, feel free to discuss it here. (If you'd prefer to talk privately, just use the Contact link above.)<br /><br />-bq]]>
			</content>
		</entry>
		<entry>
			<title>Compiling RBL for Windows</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=10&amp;page=compiling-rbl-for-windows" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=10&amp;page=compiling-rbl-for-windows</id>
			<published>2009-09-11T15:42:32+00:00</published>
			<updated>2009-09-17T20:40:44+00:00</updated>
			<author>
				<name>psas</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=12</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hello,I'd be very appreciative of any help I can get with compiling Rubber Band Library on Windows. I'm a noob.I first started off with trying to get it to compile using Visual Studio. I felt I was ...
			</summary>
			<content type="html">
				<![CDATA[Hello,<br /><br />I'd be very appreciative of any help I can get with compiling Rubber Band Library on Windows. I'm a noob.<br /><br />I first started off with trying to get it to compile using Visual Studio. I felt I was going nowhere, so I scrapped that effort. I was able to compile libsamplerate (SRC) this way, so I initially went with the same approach.<br /><br />Then, I went to cygwin. Right now, I'm stuck during ./configure at:<br /><br />&quot;checking for SRC... configure: error: Package requirements (samplerate) were not met: No package 'samplerate' found&quot;<br /><br />Looking at config.log, it appears that pkg-config is looking for samplerate.pc. I know nothing about linux, but isn't this something that only exists on linux platforms? I mean, I have the libsamplerate.dll ready, but it seems like I need to provide the source plus the C++ and linker flags.<br /><br />Will I run into similar problems with FFTW3, Vamp, LADSPA, etc..? With my limited knowledge, this seems like a nightmare.<br /><br />So, my questions are: is there a better way to do this? The windows executables are already being provided; can you share build instructions / hints? <br />or better yet, can you provide a Windows DLL? I'm really only interested in using the library, so if I could abstract away all this other stuff, it would make life easier. Plus, RBL may see more adoption if Windows users had easier access to it :)<br /><br />Thanks!]]>
			</content>
		</entry>
		<entry>
			<title>install error</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=9&amp;page=install-error" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=9&amp;page=install-error</id>
			<published>2009-09-07T12:02:09+00:00</published>
			<updated>2009-09-10T15:46:37+00:00</updated>
			<author>
				<name>antonvdh</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=11</uri>
			</author>
			<summary type="text" xml:lang="en">
				cd dssi-vst-0.8/makedssi-vst.cpp:444: error: ‘DSSI_Descriptor’ was not declared in this scopedssi-vst.cpp:444: error: ‘descriptor’ was not declared in this scopemake: *** [dssi-vst.so] Fout ...
			</summary>
			<content type="html">
				<![CDATA[cd dssi-vst-0.8/<br />make<br /><br /><br />dssi-vst.cpp:444: error: ‘DSSI_Descriptor’ was not declared in this scope<br />dssi-vst.cpp:444: error: ‘descriptor’ was not declared in this scope<br />make: *** [dssi-vst.so] Fout 1<br /><br />what is going wrong<br /><br />greetings<br />Anton]]>
			</content>
		</entry>
		<entry>
			<title>dssi-vst</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=2&amp;page=dssivst" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=2&amp;page=dssivst</id>
			<published>2009-03-13T22:08:54+00:00</published>
			<updated>2009-07-09T16:13:07+00:00</updated>
			<author>
				<name>bq</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=1</uri>
			</author>
			<summary type="text" xml:lang="en">
				This discussion forum is open to any of your thoughts about the dssi-vst plugin adapter.-bq
			</summary>
			<content type="html">
				<![CDATA[This discussion forum is open to any of your thoughts about the dssi-vst plugin adapter.<br /><br />-bq]]>
			</content>
		</entry>
		<entry>
			<title>Performance</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=8&amp;page=performance" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=8&amp;page=performance</id>
			<published>2009-05-29T21:23:44+00:00</published>
			<updated>2009-06-04T12:47:19+00:00</updated>
			<author>
				<name>suamor</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=8</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi,For the first time I tested the rubber band rubberband pitch shifter Ladspa plugin together with jackd (qjacktl) and jack-rack. I tried both the mono and stereo plugin, but I did leave those two ...
			</summary>
			<content type="html">
				<![CDATA[Hi,<br /><br />For the first time I tested the rubber band rubberband pitch shifter Ladspa plugin together with jackd (qjacktl) and jack-rack. I tried both the mono and stereo plugin, but I did leave those two options (first one &quot;Faster&quot;) untouched.<br />I used my Electric five-string violin Alien Reiter (from Czechia) for some live test. I had some minimal latency problems (compared to other plugins, but as said &quot;Faster&quot; is untested) else it worked really great! I tested one octave low and high.<br />I have no problems on my AMD Sempron 3600+ based problem but this machine is no good for mobile use (too big mainly).<br /><br />I also have a MSI wind U100 where I tested tonight some plugins and they needed max. about 20% CPU power without signal stream (this is already somewhat strange). I found out though that the rubberband plugin quickly steps up to 80% and in the next few seconds to 100% and then the qjackctl &quot;RT&quot; shows e+02 or something like that. At this moment the machine is nearly to slow to even move the mouse with touchpad. Any idea why without stream the performance is already this high ?<br /><br />Is there anything I can do to make this plugin usable on such a machine ? CPU frequency itself is not that slow. I use an external USB soundcard by Roland (Cakewalk UA-1G) and I can usually at least use one plugin with my electric violin without performance problem (5ms latency with that card).<br /><br />Thanks for all tips and kind regards,<br /><br />Reinhard]]>
			</content>
		</entry>
		<entry>
			<title>Rubber Band Audio Processor notes and links</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=7&amp;page=rubber-band-audio-processor-notes-and-links" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=7&amp;page=rubber-band-audio-processor-notes-and-links</id>
			<published>2009-03-20T22:15:31+00:00</published>
			<updated>2009-03-20T22:15:31+00:00</updated>
			<author>
				<name>bq</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=1</uri>
			</author>
			<summary type="text" xml:lang="en">
				Collecting some links and notes about the Rubber Band Audio Processor application, from around the web.- The demo version of Rubber Band Audio Processor is a &amp;quot;staff pick&amp;quot; at the ...
			</summary>
			<content type="html">
				<![CDATA[Collecting some links and notes about the Rubber Band Audio Processor application, from around the web.<br /><br />- The demo version of Rubber Band Audio Processor is a &quot;staff pick&quot; at the Apple downloads site: http://www.apple.com/downloads/macosx/audio/rubberbandaudioprocessor.html<br /><br />- Mac OS/X Audio (formerly the Big Blue Lounge) has an item about it, and discussion is invited in their forums: http://www.macosxaudio.com/front/?p=136<br /><br />- MacUpdate link: http://www.macupdate.com/info.php/id/30764/rubber-band-audio-processor<br /><br />-bq]]>
			</content>
		</entry>
		<entry>
			<title>Welcome! Discuss the Rubber Band Audio Processor here...</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=5&amp;page=welcome-discuss-the-rubber-band-audio-processor-here" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=5&amp;page=welcome-discuss-the-rubber-band-audio-processor-here</id>
			<published>2009-03-13T22:12:54+00:00</published>
			<updated>2009-03-20T22:05:54+00:00</updated>
			<author>
				<name>bq</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=1</uri>
			</author>
			<summary type="text" xml:lang="en">
				This discussion forum welcomes your queries, thoughts, feedback, reports of troubles, or any other commentary about the Rubber Band Audio Processor (http://rubberbandaudio.com/) from Breakfast ...
			</summary>
			<content type="html">
				<![CDATA[This discussion forum welcomes your queries, thoughts, feedback, reports of troubles, or any other commentary about the Rubber Band Audio Processor (http://rubberbandaudio.com/) from Breakfast Quay.<br /><br />-bq]]>
			</content>
		</entry>
		<entry>
			<title>VST plugin compatibility information</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=6&amp;page=vst-plugin-compatibility-information" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=6&amp;page=vst-plugin-compatibility-information</id>
			<published>2009-03-20T21:49:59+00:00</published>
			<updated>2009-03-20T21:49:59+00:00</updated>
			<author>
				<name>bq</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=1</uri>
			</author>
			<summary type="text" xml:lang="en">
				Users of dssi-vst should be aware that there is a compatibility list for VST plugins on Linux available for reading and editing here:  http://ladspavst.linuxaudio.orgThe site lists reports about ...
			</summary>
			<content type="html">
				<![CDATA[Users of dssi-vst should be aware that there is a compatibility list for VST plugins on Linux available for reading and editing here:<br /><br />  http://ladspavst.linuxaudio.org<br /><br />The site lists reports about native Linux VSTs (which are fewer in number, but... well... native) with reports about running Windows VSTs using dssi-vst and fst (a standalone Window VST cross-hosting application).  Look for references to dssi-vst and/or Wine to identify reports that may be relevant to dssi-vst users.<br /><br />-bq]]>
			</content>
		</entry>
		
			</feed>