If you have a problem or need to report a bug please email : support@dsprobotics.com
There are 3 sections to this support area:
DOWNLOADS: access to product manuals, support files and drivers
HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects
USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here
NEW REGISTRATIONS - please contact us if you wish to register on the forum
Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright
DSPplug tick100
Re: DSPplug tick100
pshannon wrote:If the tick is so flawed, isn't everything built around the timing in FS and should our designs be flawed too?
There are at least three separate timing sources in FlowStone, and each of these runs in its own CPU thread. Generally, the three only swap data with each other during the spaces in between filling the ASIO/DS/VST audio buffers.
Audio is synced to the refreshing of the audio buffers, and always has the highest CPU priority. Whenever the host/driver requests a buffer refresh, FS drops everything else and gets the buffer filled as quickly as possible. So long as the buffer gets filled before the next request comes along, audio will flow smoothly, and samples will be timed as accurately as the crystal clock of the soundcard hardware allows.
Green is purely event driven. When a MIDI event or keyboard/mouse interaction creates a green trigger, it just executes as soon as possible. However, green has a low CPU priority - it will take a back-seat to everything else if the CPU is busy. So "as soon as possible" may not always be very soon! (NB: MIDI events are treated as something of a "special case" involving triggers processed in a higher-priority CPU thread).
Ruby is also event driven, but its events are scheduled rather than just executed ASAP - in other words, events can be given specific times at which to happen. The timing of the event scheduling is synchronised with the audio buffer refreshes when audio is running, otherwise it runs at 100Hz. Ruby has a priority somewhere between audio and "green" - it uses a more accurate timing system than green, but still won't be allowed to interrupt audio processing unnecessarily (if it's processing MIDI or Frames, it will be necessary).
What's important to note is that code never truly executes with "sample accurate timing". Audio threads execute in spurts whenever a new buffer is requested and are completely dormant in between. Some clever buffering is used so that Ruby can insert values into the host's MIDI and audio buffers at the correct indexes to line up with samples - but the Ruby code isn't actually executing at that precise moment. Green triggers are only processed in between buffer refreshes, so audio streams only see green values change once per ASIO buffer, no matter how fast you send triggers. When the ASIO buffers arrive is totally beyond our control, and may be subject to all kinds of software and/or hardware latency and jitter - the only thing which can be said for sure is that each one represents a "slice" of time of a certain duration.
Green tickers and timers make use of a timing service provided by Windows - Windows is asked to "call back later" after an approximate amount of time has elapsed. This service has very low CPU priority, so the amount of time is very approximate, and easily gets stretched out if the CPU is busy. When the "call back" happens, a new green event is triggered - and this event is subject to all of the caveats noted previously.
Hence, green triggers manipulating audio with sample-accurate timing is simply impossible. The best you could do would be to change the value at a specific inter-buffer boundary, but most people use such small ASIO buffer sizes these days that even that would be quite unlikely given the extremely loose timing of the Windows timers. Ruby can time things more accurately, but there's quite a high cost for this, as it requires additional buffering and/or special ways of synchronising value changes across the different CPU threads. As Chris pointed out earlier in the thread, if you need sample-accurate timing with relatively low CPU load, you have to do it completely in blue/white stream code.
And I have no doubt that MyCo would point out that even the above is a massive over-simplification!
All schematics/modules I post are free for all to use - but a credit is always polite!
Don't stagnate, mutate to create!
Don't stagnate, mutate to create!
-
trogluddite - Posts: 1730
- Joined: Fri Oct 22, 2010 12:46 am
- Location: Yorkshire, UK
Re: DSPplug tick100
Trog,
Wow, nice summary. I really get it now, thanks for that.
Wow, nice summary. I really get it now, thanks for that.
-
pshannon - Posts: 144
- Joined: Fri Jan 02, 2015 3:08 am
Re: DSPplug tick100
@trog
What you wrote is exactly what's in my mind. And I experience this often. Be it mono-stream, Ruby or this topic, you describe most clearly what's in my mind. However, when I my read my own answers after some time has passed, they read clumsy and incomplete. It really bugs me, because it feels like I can't pull them from my brain to my tongue (or hand in this case).
I really consider anwering in future with "wait for Trog's response, those are my thoughts anyway"
What you wrote is exactly what's in my mind. And I experience this often. Be it mono-stream, Ruby or this topic, you describe most clearly what's in my mind. However, when I my read my own answers after some time has passed, they read clumsy and incomplete. It really bugs me, because it feels like I can't pull them from my brain to my tongue (or hand in this case).
I really consider anwering in future with "wait for Trog's response, those are my thoughts anyway"
"There lies the dog buried" (German saying translated literally)
- tulamide
- Posts: 2714
- Joined: Sat Jun 21, 2014 2:48 pm
- Location: Germany
Re: DSPplug tick100
Hmm, this is relevant thanks for posting that. It makes Me wonder how relevant the new primitives with their new controls can be. Those blue selects open up a lot of game so to speak.
It's hard to say how it all could be used, but I'm glad things like LU timing will be easier. But track averaging for actual control and not just visual display can obviously not happen on a green level.
It's hard to say how it all could be used, but I'm glad things like LU timing will be easier. But track averaging for actual control and not just visual display can obviously not happen on a green level.
-
wlangfor@uoguelph.ca - Posts: 912
- Joined: Tue Apr 03, 2018 5:50 pm
- Location: North Bay, Ontario, Canada
Re: DSPplug tick100
Thank-you TROG.
Your explanations of these technical matters really help my understanding.
These should go straight into the FS Manual. [hint hint FS]
Your explanations of these technical matters really help my understanding.
These should go straight into the FS Manual. [hint hint FS]
- RJHollins
- Posts: 1571
- Joined: Thu Mar 08, 2012 7:58 pm
Re: DSPplug tick100
.
Last edited by MichaelBenjamin on Mon Sep 21, 2020 10:52 am, edited 1 time in total.
- MichaelBenjamin
- Posts: 275
- Joined: Tue Jul 13, 2010 1:32 pm
Re: DSPplug tick100
Thanks for the kind words about my words!
I won't add my own opinions about the quantity and quality of the FS documentation - I might have to ban myself if I did!
I won't add my own opinions about the quantity and quality of the FS documentation - I might have to ban myself if I did!
All schematics/modules I post are free for all to use - but a credit is always polite!
Don't stagnate, mutate to create!
Don't stagnate, mutate to create!
-
trogluddite - Posts: 1730
- Joined: Fri Oct 22, 2010 12:46 am
- Location: Yorkshire, UK
Re: DSPplug tick100
It's the original electrogear here (dunno who has stolen my username!) Long time since I checked out Flowstone! I was one of the early adopters of Synthmaker but eventually green timing and tickers became too much of an issue for the type of Synth I wanted to make and then (I think) when flowstone took over they dropped the VST export and that was the nail in the coffin for me. It looks like VST exports are back in business but it's frustrating to see we're still in the same place we were >10 years ago with green timing!
- electrogear2
- Posts: 6
- Joined: Tue Jun 23, 2020 9:26 pm
Re: DSPplug tick100
What's an example of what this issue prevents you from doing?
Website for the plugins : http://kbrownsynthplugins.weebly.com/
- k brown
- Posts: 1198
- Joined: Tue Aug 16, 2016 7:10 pm
- Location: San Francisco, CA USA
Re: DSPplug tick100
k brown wrote:What's an example of what this issue prevents you from doing?
I can't remember specifics now, but it was to do with green timing relating to sequencing and GUI, where on-the-fly green math was being used to influence a sequencer's audio output AND GUI (hence had to use a green ticker).
But 10 years, 3 house moves, 2 changes of career and 2 kids have somewhat blighted my memory!
- electrogear2
- Posts: 6
- Joined: Tue Jun 23, 2020 9:26 pm
Who is online
Users browsing this forum: Google [Bot] and 85 guests