Search found 2348 matches

by tramp
Sat Aug 24, 2013 4:26 am
Forum: Recorders & Sequencers
Topic: Ardour 3 plugins' GUI problem?
Replies: 17
Views: 6830

Re: Ardour 3 plugins' GUI problem?

Aleks wrote:Only if I could sort out this thing with interface colors.
for example the oxygen-gtk theme is known to be buggy when it comes to gtk2 styles. So experiment with different themes could help to determinate the culprit.
by tramp
Fri Aug 23, 2013 4:05 pm
Forum: Recorders & Sequencers
Topic: Ardour 3 plugins' GUI problem?
Replies: 17
Views: 6830

Re: Ardour 3 plugins' GUI problem?

It's interesting that it only happens with this specific plugin. As far I know there is no other plug which use gtk-rc style files. Hm, so I have to rebuild it? Can it be done in terminal somehow without rebuilding? Yes, you need to re-build it, or you remove the ladspa plugs by hand (not recommend...
by tramp
Fri Aug 23, 2013 3:57 pm
Forum: Recorders & Sequencers
Topic: Ardour 3 plugins' GUI problem?
Replies: 17
Views: 6830

Re: Ardour 3 plugins' GUI problem?

So, screenshots, the problem was that I was getting this: This is the guitarix LADSPA plugin. I'd like to remove those double entries, As you build guitarix from source, you just need to build it without ladspa plugins to get rid of the double entry, cause the first entry contains the ladspa plugin...
by tramp
Fri Aug 23, 2013 3:44 pm
Forum: Recorders & Sequencers
Topic: Ardour 3 plugins' GUI problem?
Replies: 17
Views: 6830

Re: Ardour 3 plugins' GUI problem?

The bug with guitarix triggering theme changes in ardour may be something worth reporting to guitarix devs. I've just build ardour3.3 from git and there are no problems with the Gx-plugs. So it is more likely a problem/bug in unity or the chosen theme-engine. http://img20.imageshack.us/img20/5765/f...
by tramp
Fri Aug 23, 2013 6:21 am
Forum: Developer's Section
Topic: Stereo Mode in Calf Stereo Tools: LR > L+R (Mono Sum L+R)
Replies: 2
Views: 2813

Re: Stereo Mode in Calf Stereo Tools: LR > L+R (Mono Sum L+R

GraysonPeddie wrote:Which file holds the source code when I select LR > L+R (Mono Sum L+R) in the Stereo Mode drop down list?
calf/src/modules.cpp line 618
by tramp
Thu Aug 22, 2013 1:40 pm
Forum: Developer's Section
Topic: ImpulseResponse file creator
Replies: 0
Views: 2136

ImpulseResponse file creator

Hi The guitarix project have done some research work on the ImpulseResponse creation (convolution) field and comes up with a first experimental source aimed to create IR-files by compare a source (you play it) and a goal (that's what you want to let it sound like). Those how interested in this speci...
by tramp
Thu Aug 15, 2013 7:21 pm
Forum: KXStudio Discussion
Topic: Guitarix LV2 plugs
Replies: 10
Views: 3590

Re: Guitarix LV2 plugs

I disagree. Creating a host I've seen plugins crash for the most stupid reasons. Yes, I've seen as well a couple of plugs which crash hosts for several reasons, but I talk about the guitarix plugins here. The guitarix developers provide a host by themselves (yes, guitarix is a plugin host), so they...
by tramp
Thu Aug 15, 2013 5:12 pm
Forum: KXStudio Discussion
Topic: Guitarix LV2 plugs
Replies: 10
Views: 3590

Re: Guitarix LV2 plugs

That's a perfect "hen and egg" situation. Plugins expose the required features in the meta-data. Carla scans those and if it founds a plugin which says worker-required (like some guitarix plugins do), then it won't allow to load such plugins. Plugins scan the LV2_Feature features in the in...
by tramp
Thu Aug 15, 2013 3:12 pm
Forum: Developer's Section
Topic: Sneak Preview: LV2 Create
Replies: 67
Views: 35259

Re: Sneak Preview: LV2 Create

The Idea to have a easy to use ttl file generator tool, is a good one. So I've checked what your tool provide, unfortunately I must say that it isn't what I've suspected. From my experience the most time-consumption part when create the ttl file is to find the correct hints to use, to let the host k...
by tramp
Thu Aug 15, 2013 2:12 pm
Forum: KXStudio Discussion
Topic: Guitarix LV2 plugs
Replies: 10
Views: 3590

Re: Guitarix LV2 plugs

Some plugins will work, others will not. Those that require the new lv2-worker extension won't work. The guitarix plugins all do sanity checks for the required extensions. When a host didn't support a (needed) extension, for example the lv2-worker extension, they just disable the related calls. In ...
by tramp
Thu Aug 15, 2013 4:46 am
Forum: Developer's Section
Topic: Questions for filipe
Replies: 4
Views: 3200

Re: Questions for filipe

the LV2 worker extension is mean to do work for the dsp part, which didn't needs (or can't) be done in realtime. Loading a sample, for example. The tread to do it is provided by the host. You can asses it from the dsp part, send data and pointers to receive the results. From the UI you can send a me...
by tramp
Thu Aug 01, 2013 5:16 am
Forum: Developer's Section
Topic: Why software crashes
Replies: 24
Views: 11061

Re: Why software crashes

I've avoided to enable cgroups in my kernels for now, but yes, reading the documentation it looks like it could be a solution for this special issue.
Please let us know if you do some tests with it.
by tramp
Fri Jul 26, 2013 7:26 am
Forum: Developer's Section
Topic: Why software crashes
Replies: 24
Views: 11061

Re: Why software crashes

Fortunately those leaking processes be rare this day's. :) I don't think they are rarer than previously, it's just that we have so much RAM these days that it's hard to run out of it, so we don't notice memory leaks so much as before. You'll notice it when you control your mem usage (which you do c...
by tramp
Fri Jul 26, 2013 7:19 am
Forum: Linux Distributions & Other Software
Topic: Guitarix and Android?!
Replies: 6
Views: 4727

Re: Guitarix and Android?!

AutoStatic wrote:Java != JavaScript ;)
:D right, a point for you, :lol:

But for the context here it is unrelated.
It's a web-application, running in the browser.
It run on the device which host the browser, that could be a Android or any other device, even a windows or apple one.
by tramp
Fri Jul 26, 2013 5:50 am
Forum: Developer's Section
Topic: Why software crashes
Replies: 24
Views: 11061

Re: Why software crashes

But then again, my question was about what can be done to improve the situation on Linux and your answer does not provide any useful hint but tries to tell me that I should instead fix a random leaking app. Not useful at all, eh? :D You can use mmap() and mlock() to ensure your critical data is in ...