From fb1524ee97c2529a3200277634794a5180def57d Mon Sep 17 00:00:00 2001 From: kevin Date: Mon, 10 Jun 2024 16:38:42 -0400 Subject: [PATCH] cwFlowTypes.h : Added 'non_real_time_fl' field to flow_t. --- cwFlowTypes.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cwFlowTypes.h b/cwFlowTypes.h index 5b13b7d..9894f54 100644 --- a/cwFlowTypes.h +++ b/cwFlowTypes.h @@ -329,8 +329,9 @@ namespace cw typedef struct flow_str { - const object_t* flowCfg; // complete cfg used to create this flow - + const object_t* flowCfg; // complete cfg used to create this flow + + bool non_real_time_fl; // set if this is a non-real-time program unsigned framesPerCycle; // sample frames per cycle (64) srate_t sample_rate; // default sample rate (48000.0) unsigned maxCycleCount; // count of cycles to run on flow::exec() or 0 if there is no limit.