| *** wolftune has quit IRC | 01:21 | |
| *** wolftune has joined #kxstudio | 01:22 | |
| *** unicornjedi has joined #kxstudio | 03:13 | |
| *** YuriW has joined #kxstudio | 03:18 | |
| *** YuriW has quit IRC | 03:47 | |
| *** falktx has joined #kxstudio | 03:50 | |
| *** falktx` has quit IRC | 03:54 | |
| *** unicornjedi has quit IRC | 04:09 | |
| *** unicornjedi has joined #kxstudio | 04:15 | |
| *** wolftune has quit IRC | 04:36 | |
| *** bill-auger has quit IRC | 04:46 | |
| *** ArturShaik has joined #kxstudio | 05:33 | |
| *** unicornjedi has quit IRC | 07:18 | |
| *** unicornjedi_ has joined #kxstudio | 07:18 | |
| *** stuartcnz has quit IRC | 07:33 | |
| *** DoverMo has joined #kxstudio | 07:59 | |
| *** olinuxx has joined #kxstudio | 08:06 | |
| *** unicornjedi_ has quit IRC | 08:12 | |
| *** tjingboem has joined #kxstudio | 08:14 | |
| *** falktx|work has joined #kxstudio | 08:35 | |
| *** tjingboem has quit IRC | 08:43 | |
| *** DoverMo has quit IRC | 09:08 | |
| *** youki has quit IRC | 10:24 | |
| *** rncbc has joined #kxstudio | 10:26 | |
| *** Route88 has joined #kxstudio | 10:55 | |
| *** Route88 has quit IRC | 10:57 | |
| *** bill-auger has joined #kxstudio | 11:04 | |
| *** Animtim_ has joined #kxstudio | 11:40 | |
| *** Animtim has quit IRC | 11:42 | |
| *** wolftune has joined #kxstudio | 12:11 | |
| *** Yruama_Lairba has joined #kxstudio | 12:23 | |
| *** wolftune has quit IRC | 12:38 | |
| *** wolftune has joined #kxstudio | 13:22 | |
| *** falktx|work has quit IRC | 13:26 | |
| *** falktx|work has joined #kxstudio | 13:29 | |
| *** FaTony has joined #kxstudio | 13:46 | |
| FaTony | falktx, does DSSI support pitch bend? I can't make in work in DSSI but can in LV2 | 13:47 |
|---|---|---|
| FaTony | VST also works | 13:49 |
| *** Animtim_ is now known as Animtim | 13:50 | |
| falktx|work | maybe my dssi code is broken.. | 13:56 |
| falktx|work | ah! https://github.com/DISTRHO/DPF/blob/master/distrho/src/DistrhoPluginLADSPA%2BDSSI.cpp#L253 | 13:56 |
| falktx|work | FaTony: that's your chance for a DPF pull request ;) | 14:02 |
| FaTony | hmmm I never worked with DSSI, let's see | 14:03 |
| falktx|work | fill data[1] and data[2] with MSB and LSB | 14:03 |
| falktx|work | I think I have the code for it somewhere else... | 14:04 |
| falktx|work | lsb = data[1], msb = data[2] | 14:05 |
| falktx|work | I know the reverse... | 14:05 |
| falktx|work | value = ((msb << 7) | lsb) - 8192; | 14:05 |
| FaTony | ufff delete[], why now just use std::vector? | 14:07 |
| falktx|work | cause it's a const pointer | 14:11 |
| falktx|work | it's either an array or null. no need for fancy classes for this | 14:15 |
| FaTony | ok I got the struct layout, let me try | 14:16 |
| FaTony | oh they use the different range, MIDI specifies 0 - 16k | 14:22 |
| FaTony | well you could also use std::unique_ptr | 14:30 |
| FaTony | I haven't written delete in like 4 years | 14:31 |
| falktx|work | I don't know if std::unique_ptr works in gcc4.2 | 14:36 |
| falktx|work | and yes, some dpf users do use gcc4.2, because apple... | 14:36 |
| FaTony | https://github.com/DISTRHO/DPF/pull/13/commits/bf8f1ff54bed608326c38d660776274db18b68db | 14:38 |
| FaTony | doesn't apple use clang now? | 14:38 |
| FaTony | falktx|work, PR done | 14:38 |
| *** bill-auger has quit IRC | 14:39 | |
| falktx|work | FaTony: you mixed tabs and spaces ;) | 14:40 |
| FaTony | oh I always use tabs, lemme fix | 14:41 |
| falktx|work | you also defined a new variable during a switch case | 14:41 |
| falktx|work | lucky it's the last one, but still | 14:41 |
| FaTony | what's the problem? | 14:41 |
| FaTony | why don't you wrap cases in {}? | 14:42 |
| falktx|work | when I need to define new vars in them yes | 14:42 |
| falktx|work | it was not the case for that one until now | 14:42 |
| FaTony | why don't just use {} everywhere? | 14:43 |
| falktx|work | kinda ugly... | 14:43 |
| falktx|work | unnecessary on 95% of cases | 14:43 |
| falktx|work | if using if (x) { single_call(); } | 14:43 |
| FaTony | I do that too | 14:43 |
| falktx|work | the {} is not needed for single calls, so errm | 14:43 |
| falktx|work | different styles | 14:44 |
| FaTony | I always put {} for clarity | 14:44 |
| *** YuriW has joined #kxstudio | 14:44 | |
| *** bill-auger has joined #kxstudio | 14:51 | |
| *** jablo has joined #kxstudio | 16:09 | |
| *** ArturShaik has quit IRC | 17:25 | |
| *** jablo has quit IRC | 18:00 | |
| *** jablo has joined #kxstudio | 18:08 | |
| *** youki has joined #kxstudio | 18:13 | |
| *** unicornjedi has joined #kxstudio | 18:16 | |
| *** falktx|work has quit IRC | 18:23 | |
| *** youki has quit IRC | 18:32 | |
| *** wolftune has quit IRC | 19:05 | |
| *** rncbc has quit IRC | 19:06 | |
| *** rncbc has joined #kxstudio | 19:11 | |
| *** unicornjedi has quit IRC | 19:24 | |
| *** unicornjedi has joined #kxstudio | 19:24 | |
| *** unicornjedi has quit IRC | 19:25 | |
| *** unicornjedi has joined #kxstudio | 19:40 | |
| *** tjingboem has joined #kxstudio | 19:55 | |
| *** milk has joined #kxstudio | 19:57 | |
| *** sekisushai_ has joined #kxstudio | 20:08 | |
| sekisushai_ | Hello, I've read somewhere on the forum that the custom inputs/outputs for rooms in Claudia is not available as it is a limitation of ladish itself. However this post dated from a while | 20:11 |
| sekisushai_ | Is it possible now to set custom inputs outputs for rooms ? | 20:11 |
| falktx | no | 20:11 |
| falktx | and ladish | 20:11 |
| falktx | is dead | 20:11 |
| sekisushai_ | ah.. so is there any alternative at the moment ? | 20:12 |
| falktx | nsm | 20:12 |
| falktx | non session manager | 20:12 |
| falktx | it's different, perhaps not as nice | 20:12 |
| sekisushai_ | does it implies that as ladish is dead, Claudia will follow ? | 20:13 |
| falktx | well, yeah | 20:13 |
| sekisushai_ | ... oh no, I was very pleased with Claudia and the rooms concepts.. f*** !! | 20:14 |
| *** sekisushai_ has quit IRC | 20:16 | |
| *** sekisushai has joined #kxstudio | 20:17 | |
| falktx | well, you can keep using it | 20:17 |
| falktx | nothing stops you from doing that | 20:18 |
| falktx | but don't expect any new features | 20:18 |
| *** tjingboem has quit IRC | 20:28 | |
| sekisushai | ok. ok.. So if I would like to save a project with like 50 inputs 50 outputs, the only way at the moment is to do a dedicated session in Claudia and restart jack each time I change my project ? | 20:31 |
| FaTony | interesting watch: https://www.youtube.com/watch?v=boPEO2auJj4 | 20:51 |
| *** sekisushai has quit IRC | 21:16 | |
| *** lfzawacki has joined #kxstudio | 21:22 | |
| *** jablo has quit IRC | 21:30 | |
| *** DoverMo has joined #kxstudio | 21:34 | |
| *** youki has joined #kxstudio | 21:38 | |
| *** lfzawacki has quit IRC | 21:43 | |
| *** rncbc has quit IRC | 22:04 | |
| *** Or1on has joined #kxstudio | 22:21 | |
| *** Or1on has quit IRC | 22:26 | |
| *** Or1on has joined #kxstudio | 22:31 | |
| *** YuriW has quit IRC | 22:46 | |
| *** lfzawacki has joined #kxstudio | 22:57 | |
| *** unicornjedi has quit IRC | 23:16 | |
| *** wolftune has joined #kxstudio | 23:25 | |
| *** DoverMo has quit IRC | 23:54 | |
Generated by irclog2html.py 2.13.0 by Marius Gedminas - find it at mg.pov.lt!