COCKOS
CONFEDERATED FORUMS
Cockos : REAPER : NINJAM : Forums
Forum Home : Register : FAQ : Members List : Search :
Old 11-27-2016, 05:53 AM   #601
MLVST
Human being with feelings
 
Join Date: Mar 2014
Posts: 37
Default

Quote:
Originally Posted by Tale View Post
It sure is!


I can't really help you there, because I have no idea what exactly "Set Point Value" is...
Hi Tale.

In reaper you can edit the automation envelops in several ways, for instance dragging a point with the mouse, or via the menu point "set point value". When I drag a point with the mouse, everything works as expected, but when I use the "set point value" option from the menu, the value does not change. It seems as if the plugin is immediately sending back the old value, overriding the new one.

I have no clue what is happening. It does not happen with other plugins, so it must be something in my code, but I have no clue where to even start looking, as I don't know what exactly reaper is doing differently by either editing with the mouse, or use that menu option.

I hope somebody from the reaper gurus can enlighten me here.

Thanks,
Martin
MLVST is offline   Reply With Quote
Old 11-27-2016, 11:18 AM   #602
stw
Human being with feelings
 
stw's Avatar
 
Join Date: Apr 2012
Posts: 279
Default

Just for curiosity i tried it with my current project and everything works fine (as you already mentioned for other plugs). It's hard to say anything useful without knowing your code. In fact i can't think of any reason why these two operations should do different things...
Did you already trace different behaviours when changing a param with these two automation edits (breakpoint at OnParamChange() and step through the code)?
stw is offline   Reply With Quote
Old 12-26-2016, 07:11 AM   #603
debian
Human being with feelings
 
debian's Avatar
 
Join Date: Nov 2008
Posts: 35
Default reselse linker errors

Hi!

I'm having some trouble building the AU configuration with xcode 7.3.1 release mode
(product->build for...-> profiling)

Does anyone recognise these errors and what to do about them?

"___bzero", referenced from:
staticPngReadFunc(png_struct_def*, unsigned char*, unsigned long) in lice.a(lice_png.o)
LICE_CachedFont::LICE_CachedFont() in lice.a(lice_textnew.o)
LICE_CachedFont::LICE_CachedFont() in lice.a(lice_textnew.o)
LICE_CachedFont::SetFromHFont(HGDIOBJ__*, int) in lice.a(lice_textnew.o)
_png_create_png_struct in lice.a(png.o)
_png_create_info_struct in lice.a(png.o)
_png_destroy_info_struct in lice.a(png.o)
...
"_fopen$UNIX2003", referenced from:
LICE_LoadPNG(char const*, LICE_IBitmap*) in lice.a(lice_png.o)
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

EDIT:
I changed Base SDK to latest (10.11) for relesebuld and the errors disappeared... :-)
__________________
ojoj...

Last edited by debian; 12-26-2016 at 08:49 AM.
debian is offline   Reply With Quote
Old 03-02-2017, 02:47 PM   #604
Matthieu Brucher
Human being with feelings
 
Join Date: Jun 2014
Location: Oxford UK
Posts: 27
Default

I currently have issues making AU work on OS X, with different SDKs (10.8 or 10.11), even for the examples. Is there something that I missed in one of the latest builds?
__________________
My blog: http://blog.audio-tk.com/
Github: https://github.com/mbrucher
Matthieu Brucher is offline   Reply With Quote
Old 08-16-2017, 06:49 AM   #605
GuitarLord
Human being with feelings
 
Join Date: Jul 2017
Posts: 3
Default wdl-ol

I have tried this wdl-olm and can not get it to work on vs C++2010, 2015 or 2017. I have used RackaFX, Csounds, Juce, Synthedit, Synthmaker and Native Instruments with great success. Why is it so hard to compile and run this program "IEffects". I looks simple but it turns out to be a headache. Is there anyone here that can help me get the program running on any one of the APIs.
GuitarLord is offline   Reply With Quote
Old 12-06-2017, 01:01 PM   #606
Vyedmic
Human being with feelings
 
Join Date: Jul 2007
Posts: 5
Default

Sorry for a basic question. I am new to Xcode and big IDEs and SDKs in general, so please excuse me if it is something straightforward that I am missing.

I can't get the examples to compile at all in Xcode 9.2, macOS 10.12.6. I followed all the readmes and when I try to build an App target of IPlugEffect, without modyfing anything apart from setting the BASE_SDK = macosx10.6 and DEPLOYMENT_TARGET= 10.6, I get this for target lice_32&64_intel:

Code:
error: There is no SDK with the name or path '/Volumes/Projects/Coding/plugin-development/wdl-ol/WDL/lice/macosx10.6'
I have the MacOSX10.6.sdk in
Code:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer
Can you please help?
Vyedmic is offline   Reply With Quote
Old 12-06-2017, 01:29 PM   #607
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default

set BASE_SDK = macosx10.13

in common.xcconfig
__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook
olilarkin is offline   Reply With Quote
Old 12-07-2017, 11:05 AM   #608
Vyedmic
Human being with feelings
 
Join Date: Jul 2007
Posts: 5
Default

Thank you very much. The SDK not found error in lice is solved. I am now facing a few issues(20 to be exact) with what seems like the SDK itself?? Few examples are:

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/c++/4.2.1/bits/stl_algobase.h:292:12: Too many template arguments for class template '__copy'

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/c++/4.2.1/bits/stl_algobase.h:182:9: Expected unqualified-id

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/c++/4.2.1/bits/stl_algobase.h:274:12: Explicit specialization of non-template struct '__copy'

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/c++/4.2.1/limits:290:21: Expected ';' at end of declaration list

Does this have to do with the chosen compiler?
Vyedmic is offline   Reply With Quote
Old 12-07-2017, 11:11 AM   #609
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default

hmm,

try

CLANG_CXX_LANGUAGE_STANDARD = c++11
CLANG_CXX_LIBRARY = libc++
__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook
olilarkin is offline   Reply With Quote
Old 12-07-2017, 11:32 AM   #610
Vyedmic
Human being with feelings
 
Join Date: Jul 2007
Posts: 5
Default

That's done it. Along with

DEPLOYMENT_TARGET = 10.7

Thanks a lot for your help.
Vyedmic is offline   Reply With Quote
Old 12-31-2017, 06:34 AM   #611
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default Patreon

Dear all,

I was hoping to have this ready for the new year but it's not quite there yet. I've made a lot of progress with a new version of WDL-OL which has some killer new features. Those of you who follow me on github can see where this is going on the "IPlugquake" branch.

In order to help me justify my OCD efforts on this, I have created a patreon, where you can support my work, and I'm hoping to reach 25 patrons.

Here is a post about it, including details of new features:

https://www.patreon.com/posts/launch-16142537

happy new year!

oli
__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook
olilarkin is offline   Reply With Quote
Old 12-31-2017, 08:16 AM   #612
lalo
Human being with feelings
 
Join Date: Jun 2006
Posts: 187
Default

Thanks Oli!
all the best for this project and for 2018!
lalo is offline   Reply With Quote
Old 12-31-2017, 08:56 AM   #613
bozmillar
Human being with feelings
 
bozmillar's Avatar
 
Join Date: Sep 2009
Posts: 623
Default

Yes. Count me in
__________________
http://www.bozdigitallabs.com
bozmillar is offline   Reply With Quote
Old 12-31-2017, 05:56 PM   #614
stw
Human being with feelings
 
stw's Avatar
 
Join Date: Apr 2012
Posts: 279
Default

dito!
stw is offline   Reply With Quote
Old 12-31-2017, 09:50 PM   #615
bozmillar
Human being with feelings
 
bozmillar's Avatar
 
Join Date: Sep 2009
Posts: 623
Default

boo. I tried signing up for patreon but it wouldn't let me pay through paypal. I'll try again in the morning. Must by a y2k bug or something.
__________________
http://www.bozdigitallabs.com
bozmillar is offline   Reply With Quote
Old 01-03-2018, 03:57 AM   #616
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default

wooohoo, IGraphicsNanoVG working :-)

60 FPS vector graphics backed by Metal on OSX here we come!
__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook

Last edited by olilarkin; 01-03-2018 at 04:25 AM.
olilarkin is offline   Reply With Quote
Old 01-08-2018, 03:46 PM   #617
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default

if anyone feels inspired to help me document like this let me know...

https://github.com/olilarkin/wdl-ol/...bc5874a87d20a8

hopefully will have proper API docs for IPlug soon

http://olilarkin.co.uk/doxygen/annotated.html
__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook

Last edited by olilarkin; 01-08-2018 at 05:41 PM.
olilarkin is offline   Reply With Quote
Old 01-10-2018, 01:07 PM   #618
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default

https://www.patreon.com/posts/documentation-16333628

>>http://olilarkin.co.uk/doxygen/
__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook
olilarkin is offline   Reply With Quote
Old 01-25-2018, 10:59 AM   #619
stw
Human being with feelings
 
stw's Avatar
 
Join Date: Apr 2012
Posts: 279
Default

Quote:
Originally Posted by olilarkin View Post
...

I'm hoping to reach 25 patrons.

Here is a post about it, including details of new features:

https://www.patreon.com/posts/launch-16142537

oli
BUMP

Come on folks. That patron thing starts at just 1$!
How many of us benefit from Olis work? He's still stuck at 14!
11 to go...
stw is offline   Reply With Quote
Old 01-25-2018, 11:57 AM   #620
bozmillar
Human being with feelings
 
bozmillar's Avatar
 
Join Date: Sep 2009
Posts: 623
Default

Thanks for the reminder. Paypal wasn't working for me, but credit card payment is. So that's one closer at least. I thought that 25 would have been met in about 10 minutes from launch.
__________________
http://www.bozdigitallabs.com
bozmillar is offline   Reply With Quote
Old 01-25-2018, 12:21 PM   #621
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default

donations for geek stuff == getting blood from a stone

thanks for your support! much appreciated
__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook
olilarkin is offline   Reply With Quote
Old 01-25-2018, 01:23 PM   #622
clepsydrae
Human being with feelings
 
clepsydrae's Avatar
 
Join Date: Nov 2011
Posts: 3,409
Default

Subscribed! (Er, "Patronized!")

I have fantasized about developing a couple ideas in VST form and haven't actually even used this, but I believe in the mission. Wish I had more $ to offer.

Quote:
Originally Posted by olilarkin View Post
donations for geek stuff == getting blood from a stone
I develop a couple simple mozilla extensions (well, maintained, it's looking like, what with the extenionocalypse) used by a few thousand people. Over almost 10 years I think I've pulled in like $50 in donations. :-)
clepsydrae is offline   Reply With Quote
Old 02-01-2018, 05:41 PM   #623
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default

6 more patrons needed! Please spread the word, and join us on slack!

https://www.patreon.com/posts/february-update-16749608

__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook
olilarkin is offline   Reply With Quote
Old 02-05-2018, 05:05 PM   #624
Opcode 7
Human being with feelings
 
Join Date: Mar 2017
Posts: 79
Default

+1

Oli (and everyone else!) is very generous around here -- I'm honored to beable to help! We should all help do our part
Opcode 7 is offline   Reply With Quote
Old 02-05-2018, 05:38 PM   #625
bozmillar
Human being with feelings
 
bozmillar's Avatar
 
Join Date: Sep 2009
Posts: 623
Default

Hey, we're up to 22. Getting closer.
__________________
http://www.bozdigitallabs.com
bozmillar is offline   Reply With Quote
Old 02-17-2018, 02:13 PM   #626
1eqinfinity
Human being with feelings
 
Join Date: Apr 2014
Posts: 84
Default

Quote:
Originally Posted by clepsydrae View Post
...used by a few thousand people. Over almost 10 years I think I've pulled in like $50 in donations. :-)
wuh...
__________________
soundcloud.com/crimsonbrain
1eqinfinity is offline   Reply With Quote
Old 03-20-2018, 10:52 AM   #627
mrlimbic
Human being with feelings
 
mrlimbic's Avatar
 
Join Date: Nov 2009
Location: UK
Posts: 669
Default

Quote:
Originally Posted by Vyedmic View Post
That's done it. Along with

DEPLOYMENT_TARGET = 10.7

Thanks a lot for your help.
I had same issue trying to compile examples.

Those tips seems to have sorted it out for VST2 but VST3 doesn't compile.

I get lots of errors related to VST3 sources (using latest download).

Any idea why?
__________________
Vordio - Post Production Toolkit
http://vordio.net
mrlimbic is offline   Reply With Quote
Old 03-20-2018, 10:55 AM   #628
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default

steinberg update the sdk and move things. for wdl-ol master branch you'll need an older vst3 sdk 3.6.5 like it says in the readme
__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook
olilarkin is offline   Reply With Quote
Old 03-20-2018, 10:57 AM   #629
mrlimbic
Human being with feelings
 
mrlimbic's Avatar
 
Join Date: Nov 2009
Location: UK
Posts: 669
Default

Quote:
Originally Posted by olilarkin View Post
steinberg update the sdk and move things. for wdl-ol master branch you'll need an older vst3 sdk 3.6.5 like it says in the readme
OK thanks. I must have missed that.
__________________
Vordio - Post Production Toolkit
http://vordio.net
mrlimbic is offline   Reply With Quote
Old 03-20-2018, 11:05 AM   #630
mrlimbic
Human being with feelings
 
mrlimbic's Avatar
 
Join Date: Nov 2009
Location: UK
Posts: 669
Default

Quote:
Originally Posted by mrlimbic View Post
OK thanks. I must have missed that.
Oh damn. It seems Steinberg has deleted archived versions and is no longer putting up links to download them.

I tried to see if their git hub had 3.6.5 tag but it doesn't. They only recently started tagging releases from 3.6.7.

Can someone zip 3.6.5 up for me please?
__________________
Vordio - Post Production Toolkit
http://vordio.net
mrlimbic is offline   Reply With Quote
Old 06-20-2018, 08:08 AM   #631
debian
Human being with feelings
 
debian's Avatar
 
Join Date: Nov 2008
Posts: 35
Default

Has anyone else here had any problems with VST2 and Studio One 3.6
I dont own studio One but a user has an issue with my plugin that volume is to low when using it in studio one....
__________________
ojoj...
debian is offline   Reply With Quote
Old 06-20-2018, 08:19 AM   #632
mrlimbic
Human being with feelings
 
mrlimbic's Avatar
 
Join Date: Nov 2009
Location: UK
Posts: 669
Default

Quote:
Originally Posted by debian View Post
Has anyone else here had any problems with VST2 and Studio One 3.6
I dont own studio One but a user has an issue with my plugin that volume is to low when using it in studio one....
There is a free version of StudioOne that allows less tracks and various other limits. But it should be fine for testing FX.
__________________
Vordio - Post Production Toolkit
http://vordio.net
mrlimbic is offline   Reply With Quote
Old 06-20-2018, 06:15 PM   #633
earlevel
Human being with feelings
 
Join Date: Dec 2015
Posts: 331
Default

Quote:
Originally Posted by debian View Post
Has anyone else here had any problems with VST2 and Studio One 3.6
I dont own studio One but a user has an issue with my plugin that volume is to low when using it in studio one....
It's the only DAW that I had to explicitly not support with Echo Farm. The AU works fine, but VST2/3 have issues. I worked with an S1 developer, even built a barebones, protection-free project for him to debug with—he was stumped. In general, it's obvious that S1 has issues with VST—many plugins I own from various manufacturer fail validation (and you can't always tell which are the cause of resulting crashes on validation).

My plugin passed validation. But if I instantiate my plugin, then remove it, S1 v3 crashes when I close the project. It was something to do with a popup menu in my plugin—and only that menu (not an attached parameter, not processing of audio, or anything else). It seems related to Cocoa.

I hope Studio One 4 is better.
earlevel is offline   Reply With Quote
Old 06-20-2018, 10:54 PM   #634
debian
Human being with feelings
 
debian's Avatar
 
Join Date: Nov 2008
Posts: 35
Default

It seem to work in Studio One 4, I installed the free demo version of Studio One 4 on my Windows 7 machine and experienced no problem with my plugin...
__________________
ojoj...
debian is offline   Reply With Quote
Old 06-28-2018, 02:44 PM   #635
earlevel
Human being with feelings
 
Join Date: Dec 2015
Posts: 331
Default

Not only does Studio One 4 appear to play fine with my VST and VST3 IPlug plugin, but following the installation Studio One 3 no longer has a problem with them. Someone at Line 6 checked it out with the same results—S1v3 failed before installing v4, works now with both.
earlevel is offline   Reply With Quote
Old 06-28-2018, 03:13 PM   #636
sstillwell
Human being with feelings
 
Join Date: Jul 2006
Location: Cowtown
Posts: 1,562
Default

Quote:
Originally Posted by earlevel View Post
Not only does Studio One 4 appear to play fine with my VST and VST3 IPlug plugin, but following the installation Studio One 3 no longer has a problem with them. Someone at Line 6 checked it out with the same results—S1v3 failed before installing v4, works now with both.
Well isn't that special...maybe they'll backport the fix into S1v3.

*not holding my breath...*
__________________
https://www.stillwellaudio.com/
sstillwell is offline   Reply With Quote
Old 01-06-2019, 04:00 AM   #637
freeminder
Human being with feelings
 
Join Date: Jan 2019
Posts: 2
Default Help with old sdk 3.6.5

Dear all,

Can somebody please share with me the old version of Steinberg SDK (3.6.5).

I really want to dive into audio programming with WDL-OL. I know there is V2 from Oli Larkin but I think it's better to start with the old version because lots of guides and information are available.

Thank you!
freeminder is offline   Reply With Quote
Old 01-06-2019, 05:02 AM   #638
Admiral Quality
Human being with feelings
 
Admiral Quality's Avatar
 
Join Date: Jun 2008
Location: Toronto, Canada
Posts: 132
Default

Quote:
Originally Posted by freeminder View Post
Dear all,

Can somebody please share with me the old version of Steinberg SDK (3.6.5).

I really want to dive into audio programming with WDL-OL. I know there is V2 from Oli Larkin but I think it's better to start with the old version because lots of guides and information are available.

Thank you!
As much as I hate Steinberg (I mean Yamaha), sorry, that's illegal.
__________________
"Matter, doesn't."
Admiral Quality is offline   Reply With Quote
Old 01-06-2019, 06:14 AM   #639
freeminder
Human being with feelings
 
Join Date: Jan 2019
Posts: 2
Default

Quote:
Originally Posted by Admiral Quality View Post
As much as I hate Steinberg (I mean Yamaha), sorry, that's illegal.
Ok, thank you! Maybe someone can suggest another (legal) workaround.

Updated. Maybe new fork of WDL-OL can work with last SKD from YamaSteinberg ^)
Will give it a try

https://github.com/Youlean/IPlug-Youlean

Last edited by freeminder; 01-06-2019 at 08:56 AM.
freeminder is offline   Reply With Quote
Old 01-07-2019, 10:18 AM   #640
olilarkin
Human being with feelings
 
Join Date: Apr 2009
Location: Berlin, Germany
Posts: 1,248
Default

WDL-OL should be able to work with the latest vst3 sdk, but iplug2 is where it's at :-)
__________________
VirtualCZ | Endless Series | iPlug2 | Linkedin | Facebook
olilarkin is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 01:43 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.