cwDspTransforms.h : Fix formatting - no functional changes.

This commit is contained in:
kevin 2024-12-02 14:48:34 -05:00
parent 7eacb5e005
commit f102928a9f

View File

@ -105,19 +105,19 @@ namespace cw
{ {
typedef struct typedef struct
{ {
unsigned maxWndMs; unsigned maxWndMs;
unsigned maxWndSmpN; unsigned maxWndSmpN;
unsigned wndSmpN; unsigned wndSmpN;
sample_t* wndV; sample_t* wndV;
srate_t srate; srate_t srate;
coeff_t peakThreshDb; coeff_t peakThreshDb;
coeff_t outLin; coeff_t outLin;
coeff_t outDb; coeff_t outDb;
bool peakFl; bool peakFl;
bool clipFl; bool clipFl;
unsigned peakCnt; unsigned peakCnt;
unsigned clipCnt; unsigned clipCnt;
unsigned wi; unsigned wi;
} obj_t; } obj_t;
rc_t create( obj_t*& p, srate_t srate, ftime_t maxWndMs, ftime_t wndMs, coeff_t peakThreshDb ); rc_t create( obj_t*& p, srate_t srate, ftime_t maxWndMs, ftime_t wndMs, coeff_t peakThreshDb );