From 375ed8bed412f559420e32ef2bf20dffee74ea04 Mon Sep 17 00:00:00 2001 From: kevin Date: Sat, 14 Dec 2024 09:58:54 -0500 Subject: [PATCH] cwAudioTransforms.h : Added comments. --- cwAudioTransforms.h | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/cwAudioTransforms.h b/cwAudioTransforms.h index 62fb4d9..0f76fcd 100644 --- a/cwAudioTransforms.h +++ b/cwAudioTransforms.h @@ -1023,7 +1023,9 @@ namespace cw //--------------------------------------------------------------------------------------------------------------------------------- // Data Recorder // - + // Record frames of data and write them to a CSV file. + // A frame consists of 'sigN' values of type T. + // namespace data_recorder { @@ -1042,11 +1044,11 @@ namespace cw struct block_str* head; // first block struct block_str* tail; // last block and the one being currrently filled - unsigned frameIdx; // index into tail of frame to fill - char* fn; - char** colLabelA; - unsigned colLabelN; - bool enableFl; + unsigned frameIdx; // index into tail of frame to fill + char* fn; // output CSV filename + char** colLabelA; // output CSV column labels + unsigned colLabelN; // count of CSV column labels + bool enableFl; }; typedef struct obj_str fobj_t; @@ -1071,7 +1073,13 @@ namespace cw } template< typename T > - rc_t create( struct obj_str*& p, unsigned sigN, unsigned frameCacheN, const char* fn, const char** colLabelA, unsigned colLabelN, bool enableFl ) + rc_t create( struct obj_str*& p, + unsigned sigN, + unsigned frameCacheN, + const char* fn, + const char** colLabelA, + unsigned colLabelN, + bool enableFl ) { rc_t rc = kOkRC; @@ -1152,6 +1160,11 @@ namespace cw return kOkRC; } + // Pass a partial (or full) frame of data to the object. + // xV[xN] is the data to record. + // chIdx is the first channel to write to. + // (xN + chIdx must be less than p->sigN) + // Set advance_fl to true to advance to the next frame. template< typename T> rc_t exec( struct obj_str* p, const T* xV, unsigned xN, unsigned chIdx=0, bool advance_fl = true ) {