Robin Gareus
Robin Gareus
> get a build failure if we use any C++17 or greater features. That is what the `--cxx11` config option is for.
Rebased and merged as 9.0-pre0-274 7b74faaf57 Thanks, again!
That looks like a super noisy signal which also is very quiet (-47.64dBFS). I managed to decode it after adding 40dB gain and a 2nd order Low Pass filter at...
Could it be that you directly connected BNC from a hardware generator to a soundcard's low impedance input? There definitely are issues, both signal level and impedance, and perhaps also...
The issue already happened when recording the signal. You need to fix the hardware. Get a proper cable [1], and then set the input level so that the AD receives...
I've written a simple script to convert all signals: ``` #!/bin/bash for file in `ag -l 'PBD::Signal0' libs gtk2_ardour` ; do sed -i'' 's/PBD::Signal0]*\)>/PBD::Signal/' $file done patch -p1
Rebased and merged as 9.0-pre0-243-g0ade0b2212 I also ran the script to convert the codebase to use new `Signal` API, and removed the old one.
Not directly. libltc parses raw audio data for LTC data. You have to use some other library or tool (e.g. ffmpeg/libavcodec) to decode the video and extract the audio.
DPF handles this just fine. DistrhoPluginVST3.cpp `process` uses `fDummyAudioBuffer` for disabled ports. (NB use different buffers for input and output: silence for inputs, scratch buffers for outputs. Currently writing to...
The 2nd patch is also not critical. IIUC VST3 host needs to provide a valid buffers if a bus is enabled, regardless of the speaker arrangement.