<?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>2012-05-18T04:40:15+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>compile rubberband library for x86_64 on MacOSX</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=36&amp;page=compile-rubberband-library-for-x8664-on-macosx" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=36&amp;page=compile-rubberband-library-for-x8664-on-macosx</id>
			<published>2012-04-03T11:13:44+00:00</published>
			<updated>2012-05-04T06:13:11+00:00</updated>
			<author>
				<name>cerkut</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=46</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi,

Rubber Band Library sounds very promising, thanks for your development efforts and releasing it with GPL.

I have problems compiling rubberband-1.7.0 on a 64 bit machine running MacOSX 10.6.8, ...
			</summary>
			<content type="html">
				<![CDATA[<p>Hi,</p>

<p>Rubber Band Library sounds very promising, thanks for your development efforts and releasing it with GPL.</p>

<p>I have problems compiling rubberband-1.7.0 on a 64 bit machine running MacOSX 10.6.8, by issuing make -f build/Makefile.osx</p>

<p>I have first fetched fftw-3.3.1 and libsamplerate-0.1.8_0.darwin_10.x86_64 from MacPorts, than changed the makefile for x86_64, and added the include and library paths /opt/local/ (a more useful idea for MacPorts users would be to read env).</p>

<p>Then issuing &lt;code>make -f build/Makefile.osx&lt;/code>
gives</p>

<p>&lt;code>
g++ -DHAVE_FFTW3 -DFFTW_DOUBLE_ONLY -DNO_THREAD_CHECKS -DNO_TIMING -DNDEBUG -O3 -arch x86_64 -msse -msse2 -ffast-math -ftree-vectorize -I../include -I/usr/local/include -I/opt/local/include -Irubberband -I. -Isrc   -c -o src/dsp/Resampler.o src/dsp/Resampler.cpp
src/dsp/Resampler.cpp:37:2: error: #error No resampler implementation selected!
make: *** [src/dsp/Resampler.o] Error 1
&lt;/code></p>

<p>Inspection the code, It looks like libresample is a dependency, but not enlisted as such. Is it absolutely necessary? Since I am separately struggling for installing libresample by fetching it from Audacity svn and trying to compile for x86_64 (default ./configure detects i386, there is a bug in the audio_out.c since it includes Carbon.h instead of Carbon/Carbon.h, and even then it uses deprecated functions etc)</p>

<p>Or put otherwise, did anybody manage to compile rubberband library for x86_64 on MacOSX recently?</p>

<p>Thanks.</p>
]]>
			</content>
		</entry>
		<entry>
			<title>Determining sync between input and output</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=35&amp;page=determining-sync-between-input-and-output" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=35&amp;page=determining-sync-between-input-and-output</id>
			<published>2012-03-28T09:34:54+00:00</published>
			<updated>2012-03-28T09:34:54+00:00</updated>
			<author>
				<name>marcan</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=45</uri>
			</author>
			<summary type="text" xml:lang="en">
				I'm using the RubberBand library in realtime mode. In my application, I'd like to know the relationship between the input samples and the output samples as closely as possible (i.e. how the timing of ...
			</summary>
			<content type="html">
				<![CDATA[I'm using the RubberBand library in realtime mode. In my application, I'd like to know the relationship between the input samples and the output samples as closely as possible (i.e. how the timing of the input and output map). I don't care about offsets of a few hundred samples, but I do care that it doesn't accumulate.<br /><br />For a fixed stretch ratio, this should be simple; I understand that just counting samples, multiplying by the stretch ratio, and subtracting the library latency (getLatency()) should do it. However, what happens if I change the stretch or pitch ratio in real time (several times)? Since the library is block-based, I understand that it won't take effect &quot;immediately&quot; but rather be snapped to a block boundary or similar. Is there a way I can know when the stretch ratio change actually happens, so I know when to start counting samples using the new stretch rate in the output? Or, more accurately, when librubberband *thinks* it should happen (what point will it compensate towards in the future) since all I care about is long-term accuracy. Also, how does this interact with getLatency (which I understand can give a new value if I change the stretch ratio)?<br /><br />What's the right way to go about doing this? I have a few thoughts in mind but they all depend on internal implementation details. For example, would this be any easier if I always feed librubberband exactly when needed (i.e. ask for output, consume it eventually if there is any, feed it input when there is no output available, and then only feed it exactly as much as requested with getSamplesRequired()) and only change the stretch ratio right before feeding input - would this guarantee that the stretch change happens precisely for the next block of input samples and shows up at the output at getLatency() samples later? (getLatency() before or after the stretch change?)<br /><br />It would be nice if librubberband had a function to query the absolute input sample number that (roughly) corresponds to the first sample just returned or about to be returned by retrieve() - that would pretty much solve all my problems :)]]>
			</content>
		</entry>
		<entry>
			<title>How to suppress extra terminal windows?</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=34&amp;page=how-to-suppress-extra-terminal-windows" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=34&amp;page=how-to-suppress-extra-terminal-windows</id>
			<published>2012-02-15T18:19:01+00:00</published>
			<updated>2012-02-26T17:47:59+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 have been using the commandvsthost /path/to/my/vsti.dllso far for launching my favourite B4II.dll plugin.The plugin works well and I am happy with it.Unfortunately, i have to run the command ...
			</summary>
			<content type="html">
				<![CDATA[Hi,<br /><br />I have been using the command<br /><br />vsthost /path/to/my/vsti.dll<br /><br />so far for launching my favourite B4II.dll plugin.<br /><br />The plugin works well and I am happy with it.<br /><br />Unfortunately, i have to run the command from a command line, and while the GUI of the vst is working and playing  the terminal window is kept open until I close the vst GUI.<br /><br />What can I do to suppress the terminal window altogether, so  that at least after running the required command the terminal window can be closed without losing the vst GUI?<br /><br />It is running on a debian style aptosid linux.<br /><br />Thanks for all  helpful hints here.<br /><br />Crypto.]]>
			</content>
		</entry>
		<entry>
			<title>retrieved frames from RubberBandStretcher don't fit to the expected frames</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=33&amp;page=retrieved-frames-from-rubberbandstretcher-dont-fit-to-the-expected-frames" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=33&amp;page=retrieved-frames-from-rubberbandstretcher-dont-fit-to-the-expected-frames</id>
			<published>2011-10-24T22:35:39+00:00</published>
			<updated>2011-10-28T00:05:05+00:00</updated>
			<author>
				<name>wolke</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=43</uri>
			</author>
			<summary type="text" xml:lang="en">
				hi,we try to implement the use of lib rubberband in hydrogen(hydrogen-music.org).the task is that we need exact results of frames which will fit to our expected frames size in dependent of the ...
			</summary>
			<content type="html">
				<![CDATA[hi,<br />we try to implement the use of lib rubberband in hydrogen(hydrogen-music.org).<br />the task is that we need exact results of frames which will fit to our expected frames size in dependent of the current bpm rate.<br /><br />for example:<br />if you will stretch a loop into a 4/4 beat on 120 bpm and 48000hz framerate you expect an sample after processing which contains exactly 96000 frames.<br /><br />our problem is that the RubberBandStretcher::retrieved call returns not the expected amount of frames.<br />mostly we get lower values. also this results follow not reproducible rules. its variate a bit in dependent of sample content. samples with lot of silence produce bigger variations as samples without so many silence.<br /><br />in my tests the stretcher options are set to OptionProcessOffline and also i call setExpectedInputDuration (size_t samples).<br /><br />beside this problem, mentionable is, that we already have an working rubberband implementation in hydrogen which calls rubberband-cli into an external process. and here the results are total frame accurate.<br />so, it must be possible to solve this problem:).<br /><br />here is my unpublished code(not in our svn). maybe i left something.<br /><br />thx in advanced<br />wolke <br /><br />edit 10/25/2011:<br />here you get the current implementation with contains all other code around my example method here. in svn void Sample::apply_rubberband( const Rubberband&amp; rb ) is different than the example here, but produce the same problem. also not in svn is that i use OptionProcessOffline.<br />http://trac.assembla.com/hydrogen/browser/trunk/src/core/src/basics/sample.cpp<br /><br />edit 10/26/2011:<br />i remove the code block her because i don't get it formatted<br />instead, here a link to our current ticked with the same part of code.<br />http://www.assembla.com/spaces/hydrogen/tickets/197]]>
			</content>
		</entry>
		<entry>
			<title>Rubber Band Audio Processor v1.2.1 out; App Store version delayed</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=31&amp;page=rubber-band-audio-processor-v121-out-app-store-version-delayed" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=31&amp;page=rubber-band-audio-processor-v121-out-app-store-version-delayed</id>
			<published>2011-09-09T22:00:55+00:00</published>
			<updated>2011-10-06T18:48:50+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">
				Version 1.2.1 of Rubber Band Audio Processor is available from our site at http://rubberbandaudio.com/.  This is a bug-fix release.

Although this release has been available from this site for a ...
			</summary>
			<content type="html">
				<![CDATA[<p>Version 1.2.1 of Rubber Band Audio Processor is available from our site at http://rubberbandaudio.com/.  This is a bug-fix release.</p>

<p>Although this release has been available from this site for a couple of weeks now, I'm afraid it is not yet available from the Mac App Store because Apple rather weirdly rejected the fixed version on unrelated grounds.  We're working on this and will let you know when we have something to report.</p>

<p>In the mean time, please accept our apologies and if you believe you have been inconvenienced in any way please do get in touch with us.</p>

<p>-bq</p>
]]>
			</content>
		</entry>
		<entry>
			<title>rubberband segfaults</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=32&amp;page=rubberband-segfaults" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=32&amp;page=rubberband-segfaults</id>
			<published>2011-09-30T13:28:21+00:00</published>
			<updated>2011-10-03T20:55:34+00:00</updated>
			<author>
				<name>schivmeister</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=42</uri>
			</author>
			<summary type="text" xml:lang="en">
				I don't know when exactly this began, particularly because I've never used rubberband like this before, but upon further investigation, on Arch Linux the following occurs with 1.6.0, 1.5.0 and ...
			</summary>
			<content type="html">
				<![CDATA[I don't know when exactly this began, particularly because I've never used rubberband like this before, but upon further investigation, on Arch Linux the following occurs with 1.6.0, 1.5.0 and possibly all other versions _if_ I _rebuild_ them (the older binaries still work and I've confirmed our 1.5.0 binary to be working) [1]:<br /><br />$ rubberband --time 2 -d 3 in.wav out.wav<br />Using crispness level: 5 (Crisp monophonic instrumental)<br />Using time ratio 2 and frequency ratio 1<br />RubberBandStretcher::Impl::Impl: rate = 44100, options = 16<br />Going multithreaded...<br />configure: effective ratio = 2<br />configure: analysis window size = 2048, synthesis window size = 2048, fft size = 2048, increment = 170 (approx output increment = 340)<br />configure: outbuf size = 131072<br />Window area: 0.5; synthesis window area: 0.5<br />FFT::FFT(2048): using FFTW3 implementation<br />configure: effective ratio = 2<br />configure: analysis window size = 2048, synthesis window size = 2048, fft size = 2048, increment = 170 (approx output increment = 340)<br />configure: outbuf size = 131072<br />configure: effective ratio = 2<br />configure: analysis window size = 2048, synthesis window size = 2048, fft size = 2048, increment = 170 (approx output increment = 340)<br />configure: outbuf size = 131072<br />Pass 1: Studying...<br />0% Segmentation fault<br /><br />Audacity also crashes if any of the rubberband ladspa plugins is used, and most likely qtractor is also affected.<br /><br />I have confirmation that it's working on Ubuntu, but with rubberband 1.3. I'm not able to build 1.3 on Arch Linux due to buildtime issues that I haven't managed to look into.<br /><br />The following are packages and their versions, because I believe the problem is somewhere there:<br /><br />libsamplerate 0.1.7<br />fftw 3.3<br />vamp-plugin-sdk 2.2<br />libsndfile 1.0.25<br />gcc-libs 4.6.1<br />glibc 2.14<br /><br />[1] https://bugs.archlinux.org/task/26140]]>
			</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>2011-09-11T17:56:06+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>Rubber Band Audio Processor gets latest Rubber Band Library core, now on Mac App Store</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=30&amp;page=rubber-band-audio-processor-gets-latest-rubber-band-library-core-now-on-mac-app-store" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=30&amp;page=rubber-band-audio-processor-gets-latest-rubber-band-library-core-now-on-mac-app-store</id>
			<published>2011-03-19T11:57:26+00:00</published>
			<updated>2011-03-19T11:57:26+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">
				Rubber Band Audio Processor, our small but clever and handy application for time and pitch adjustment with tempo matching, has now been updated to version 1.2.

This release uses the latest Rubber ...
			</summary>
			<content type="html">
				<![CDATA[<p><a href="http://rubberbandaudio.com">Rubber Band Audio Processor</a>, our small but clever and handy application for time and pitch adjustment with tempo matching, has now been updated to version 1.2.</p>

<p>This release uses the latest Rubber Band Library 1.6 core, which is also due for release to developers very shortly.  It's also at a new, cheaper price and is available through the Mac App Store as well as from Breakfast Quay directly.</p>

<p>-bq</p>
]]>
			</content>
		</entry>
		<entry>
			<title>Pitch Question and Java Question</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=29&amp;page=pitch-question-and-java-question" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=29&amp;page=pitch-question-and-java-question</id>
			<published>2011-02-22T18:25:29+00:00</published>
			<updated>2011-02-23T20:00:08+00:00</updated>
			<author>
				<name>dmainmon</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=38</uri>
			</author>
			<summary type="text" xml:lang="en">
				Does the library allow pitch shifts in cents rather than semitones? I want to change the pitch of an audio sample by x number of cents. Or for example, if the sample is in A440, I want to resample ...
			</summary>
			<content type="html">
				<![CDATA[Does the library allow pitch shifts in cents rather than semitones? I want to change the pitch of an audio sample by x number of cents. Or for example, if the sample is in A440, I want to resample with a shift of x number of Hz. So I might want to resample in A339.<br /><br />Also, how easy is it to use this library in Java or C#?]]>
			</content>
		</entry>
		<entry>
			<title>DSSI-VST and Rosegarden</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=28&amp;page=dssivst-and-rosegarden" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=28&amp;page=dssivst-and-rosegarden</id>
			<published>2011-01-21T08:05:54+00:00</published>
			<updated>2011-01-22T01:45:48+00:00</updated>
			<author>
				<name>tpreitzel</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=36</uri>
			</author>
			<summary type="text" xml:lang="en">
				I decided to post this observation here instead of Rosegarden because I have your dssi-vst program installed on Slackware64... nice, BTW.  On the Rosegarden website, it's mentioned that plugins ...
			</summary>
			<content type="html">
				<![CDATA[I decided to post this observation here instead of Rosegarden because I have your dssi-vst program installed on Slackware64... nice, BTW.  On the Rosegarden website, it's mentioned that plugins increase the instability of Rosegarden and can likely crash it. Well, I'm experiencing this problem with nearly ALL VSTs for Windows. I've noticed when selecting a VST within Rosegarden via the &quot;Manage Plugins&quot; dialog, a significant delay occurs which I assume relates to Rosegarden automatically running WINE to run the VST plugin. Normally, the plugin will load alright, but the crashing starts when trying to change the &quot;Instrument Parameters&quot; of the plugin. I have some difficulty understanding the magnitude of the crashing when attempting to use 32 bit Windows plugins with a 64 bit copy of Rosegarden. Am I operating Rosegarden 10.10 improperly or is Rosegarden still immature when using VST plugins?<br /><br />TIA and dssi-vst runs VST plugins fairly reliably when invoked from the command-line via jack-dssi-host. I'm mainly seeking clarification on the proper use of dssi-vst within Rosegarden.]]>
			</content>
		</entry>
		<entry>
			<title>dss-vst_gui</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=27&amp;page=dssvstgui" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=27&amp;page=dssvstgui</id>
			<published>2011-01-12T10:24:30+00:00</published>
			<updated>2011-01-12T10:24:30+00:00</updated>
			<author>
				<name>BambooMusic</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=35</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi all, I tried to load &amp;quot;Native Instruments Battery 3&amp;quot; VST with dssi-vst, and it worked quite well.Unfortunatly it seems that the UI of Battery3 is very cpu-hungry, so I try to hide ...
			</summary>
			<content type="html">
				<![CDATA[Hi all, I tried to load &quot;Native Instruments Battery 3&quot; VST with dssi-vst, and it worked quite well.<br />Unfortunatly it seems that the UI of Battery3 is very cpu-hungry, so I try to hide it:<br /><br />$ jack-dssi-host -v dssi-vst.so:Battery*3.dll # To load and show Battery3<br />$ dssi_osc_send -h osc.udp://localhost:17176/dssi # To hide it<br /><br />After sending the hide command, the UI disappears correctly, but I see lots of messages &quot;dssi-vst_gui: something to read from plugin&quot; that cause my CPU to go to 50% (25% gnome terminal and 25% dssi-vst_gui).<br />If I send the &quot;show&quot; command, the UI appears and all return to normality.<br /><br />I also tried with ghostess, with the same results.<br /><br />I use Ubuntu 10.04 with FalkTX repositories: dssi-utils 1.1.0, gdssi-vst 0.9.2, hostess 20100923, wine 1.3.8<br /><br />    thanks<br /><br />    Nicola]]>
			</content>
		</entry>
		<entry>
			<title>dssi-vst Debian Min Install</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=26&amp;page=dssivst-debian-min-install" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=26&amp;page=dssivst-debian-min-install</id>
			<published>2011-01-11T19:26:46+00:00</published>
			<updated>2011-01-11T19:26:47+00:00</updated>
			<author>
				<name>Mike</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=34</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi there,First up I only discovered Linux a year ago and unfortunately my knowledge in the area is extremely limited. I was planning on using dssi-vst for a project, but am struggling to set it up ...
			</summary>
			<content type="html">
				<![CDATA[Hi there,<br /><br />First up I only discovered Linux a year ago and unfortunately my knowledge in the area is extremely limited. I was planning on using dssi-vst for a project, but am struggling to set it up properly. <br /><br />I am running a minimal install of Debian, the first thing I did was to add the untested repo to sources.list and get the 0.9.2 package of dssi-vst (I do not feel confident enough to build from source). All the dependencies (from what I can tell) were also installed. I placed a sample VST DLL in the dssi-vst folder (where it defaults if no paths have been set up). When executing vsthost GGrain.dll I get: line 36: exec: wine: not found<br />Plugin server timed out on startup: No such device or address.<br /><br />The only other package I have installed on top of the minimal install is alsa-base.<br /><br /><br />I must apologise if I am missing something glaringly obvious, I am probably above my head here.<br /><br />Regards,<br />Mike]]>
			</content>
		</entry>
		<entry>
			<title>why isn't there a time streching ladspa plugin?</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=25&amp;page=why-isnt-there-a-time-streching-ladspa-plugin" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=25&amp;page=why-isnt-there-a-time-streching-ladspa-plugin</id>
			<published>2010-12-18T12:14:49+00:00</published>
			<updated>2010-12-19T11:38:22+00:00</updated>
			<author>
				<name>revast</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=33</uri>
			</author>
			<summary type="text" xml:lang="en">
				I used your pitch shifting ladspa, and its great. I am really sad that there is NO time stretching ladspa plugin AT ALL under linux. Your library, and others, are built into numerous programs, there ...
			</summary>
			<content type="html">
				<![CDATA[I used your pitch shifting ladspa, and its great. I am really sad that there is NO time stretching ladspa plugin AT ALL under linux. Your library, and others, are built into numerous programs, there are some standalone programs for this, stretchplayer, paulstretch, play it slowly. <br /><br />But NO LADSPA -- I would really need that, as I used to use it a lot with NI Traktor. Now I could use traktor 2.6.2 with wine, but I just want the functionality in LADSPA. Are all these libraries (yours, soundtouch, scale tempo, libsbsms....) not capable of doing time stretching in realtime? I doubt that, as the standalone players do well. <br /><br />So I would really like to have a LADSPA based time stretch plugin<br />As I have no clue how much effort that is, I just wanted to ask.<br />I am not really a coder, though the idea of generating ladspas with faust sounds fun. If there IS such a plugin, and I miss it, could you please point me to it?<br /><br />greets, revast]]>
			</content>
		</entry>
		<entry>
			<title>StretchPlayer</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=24&amp;page=stretchplayer" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=24&amp;page=stretchplayer</id>
			<published>2010-11-28T14:11:24+00:00</published>
			<updated>2010-11-28T14:18:43+00:00</updated>
			<author>
				<name>raboof</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=31</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi,It'd be nice to link to StretchPlayer from the RubberBand page: another app that uses rubberband in real time: http://www.teuton.org/~gabriel/stretchplayer/Kind regards,Arnout
			</summary>
			<content type="html">
				<![CDATA[Hi,<br /><br />It'd be nice to link to StretchPlayer from the RubberBand page: another app that uses rubberband in real time: http://www.teuton.org/~gabriel/stretchplayer/<br /><br />Kind regards,<br /><br />Arnout]]>
			</content>
		</entry>
		<entry>
			<title>running Ivory II as a VST plugins with dssi-vst</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=23&amp;page=running-ivory-ii-as-a-vst-plugins-with-dssivst" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=23&amp;page=running-ivory-ii-as-a-vst-plugins-with-dssivst</id>
			<published>2010-10-28T10:16:48+00:00</published>
			<updated>2010-10-28T10:16:48+00:00</updated>
			<author>
				<name>csillag</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=30</uri>
			</author>
			<summary type="text" xml:lang="en">
				Hi all,I would like to run Ivory II under Linux.What do you think, is this possible with dssi-vst?Thank you for your help:    Csillag
			</summary>
			<content type="html">
				<![CDATA[Hi all,<br /><br />I would like to run Ivory II under Linux.<br /><br />What do you think, is this possible with dssi-vst?<br /><br />Thank you for your help:<br /><br />    Csillag]]>
			</content>
		</entry>
		<entry>
			<title>Installation Error (Software Center)</title>
			<link rel="alternate" href="http://www.breakfastquay.com/forum/comments.php?DiscussionID=22&amp;page=installation-error-software-center" type="application/xhtml+xml" hreflang="en"/>
			<id>http://www.breakfastquay.com/forum/comments.php?DiscussionID=22&amp;page=installation-error-software-center</id>
			<published>2010-09-11T14:55:12+00:00</published>
			<updated>2010-09-13T23:52:34+00:00</updated>
			<author>
				<name>massergio</name>
				<uri>http://www.breakfastquay.com/forum/account.php?u=29</uri>
			</author>
			<summary type="text" xml:lang="en">
				I already have the latest WINE version installed but I get this error when ever I click install.&amp;quot;Package Dependences cannot be resolvedThis error could be caused by required additional ...
			</summary>
			<content type="html">
				<![CDATA[I already have the latest WINE version installed but I get this error when ever I click install.<br /><br /><br />&quot;Package Dependences cannot be resolved<br />This error could be caused by required additional software packages which are missing or not installable. Futhermore there could be a conflict between software packages which are not allowed to be installed at the same time.&quot;<br /> <br />What should I do? I was really gun-hoe about this package now it won't install. I'm dieing to use some killer Windows VST's in linux please help. :(]]>
			</content>
		</entry>
		<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>
		
			</feed>
